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 |
|---|---|---|---|---|---|
created: 20150513150033273
tags: picture
title: Dev Thumbnail.jpg
type: image/jpeg
| Unity3D Asset | 0 | 8d1h/TiddlyWiki5 | editions/de-AT/tiddlers/bilder/Dev_Thumbnail.jpg.meta | [
"BSD-3-Clause"
] |
$titlebar-height: 30px;
:host {
flex: 0 0 $titlebar-height;
display: flex;
.title {
flex: auto;
padding-left: 15px;
line-height: $titlebar-height;
-webkit-app-region: drag;
}
&.inset {
flex-basis: 36px;
.title {
padding-left: 80px;
line-height: 36px;
}
window-controls {
display: none;
}
}
}
| SCSS | 4 | Rinfair-CSP-A016/tabby | tabby-core/src/components/titleBar.component.scss | [
"MIT"
] |
{{ get_doctype() }}
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>single-service-provider</title>
<meta content="Phalcon Framework Team" name="author">
<meta content="Phalcon Developer Tools" name="generator">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
{% block head_custom %}{% endblock %}
</head>
<body class="hold-transition skin-blue sidebar-mini">
<div class="wrapper">
{% block header %}{% endblock %}
{% block sidebar %}{% endblock %}
{% block content %}
<div class="container-fluid">
{% include "partials/content.volt" %}
</div>
{% endblock %}
{% block footer %}{% endblock %}
</div>
{% block footer_js %}
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
{% endblock %}
</body>
</html>
| Volt | 3 | derryberni/mvc | single-service-provider/resources/views/index.volt | [
"BSD-3-Clause"
] |
; Agents will to store clauses
breed [clauses clause]
; We will store the literals by numbers, negation makes them negatove,
; and a clause es simply an ordered list of values
clauses-own [
content ; Clause
involved? ; If the clause is involved or not to reach the empty clause
]
globals [
variables ; Propositional variables in alphanumeric
numCl ; Number of clauses in the previous step
examples ; List of examples
]
; Report to decide if a resolution is able betwen the clauses
to-report resolubles? [c1 c2]
foreach c1 [ l ->
if member? (neg l) c2 [report true]
]
report false
end
; Returns the literlas that allow to make resolution (only with one sign)
to-report lit-resolvents [c1 c2]
let res []
foreach c1 [ l ->
if member? (neg l) c2 [set res lput l res]
]
report res
end
; Clean and sort a clause
to-report clean [c1]
report sort-by [ [l1 l2] -> (abs l1 < abs l2) or ((abs l1 = abs l2) and l1 > l2) ] remove-duplicates c1
end
; Decide if is a tautology (to remove it)
to-report tautology? [c1]
foreach c1 [ l ->
if member? (neg l) c1 [report true]
]
report false
end
; Negation of a literal
to-report neg [lit]
report -1 * lit
end
; Compute the resolvent of c1 and c2 using lit
to-report resolvent [c1 c2 lit]
let c11 remove lit (remove (neg lit) c1)
let c22 remove lit (remove (neg lit) c2)
report clean (sentence c11 c22)
end
; Start the global variables
to startup
set variables "_PQRSTUVW"
set examples [
[[1 2] [-1 2]]
[[1 2] [-1 2] [-2]]
[[1 2] [-1 2] [1 -2] [-1 -2]]
[[1 -2 3 -4 -5] [1 3 4 5] [1 -3 4] [1 3 -4 5] [1 -3 -4] [-1 -2] [-2 3 4 -5] [4 -5]]
[[1 2 3] [-1 2] [-2 3] [-3] [1 3]]
[[-1 -2 3] [-4 5] [-5 1] [4] [-4 6] [-6 2] [-3]]
[[1 2] [2 3] [3 8] [-3 -1] [-8 -2] [-2 -3]]
[[-1 -2 3] [-1 -7 8] [-1 -8 6] [-7 2] [7] [1] [-6]]
]
end
; Create the clause agents for a set of clauses
to load-set [cls]
ask clauses [die]
foreach cls [
c ->
create-clauses 1 [
set content clean c
set shape "square"
set label print-clause content
set color blue
set size 2
set involved? true
]
]
layout-circle clauses 10
set numCl count clauses
end
; Returns the clause representation of a set
to-report print-set [c]
report (word "{ { "
(reduce [ [c1 c2] -> word c1 (word " }, { " c2) ] (map print-clause c))
" } }")
end
; Returns the clause representation of a clause
to-report print-clause [c]
ifelse c = []
[report ""]
[report reduce [ [l1 l2] -> word l1 (word " v " l2) ] (map [ l -> literal l ] c)]
end
; Returns the Propositional Variable associated to a number
to-report literal [i]
let lit (item (abs i) variables)
if i < 0 [set lit word "-" lit]
report lit
end
; One Step Procedure
to process
; Fix the current clauses
let current-clauses clauses with [content != []]
; Compare all the clauses
ask current-clauses [
let c1 content
let nc1 self
; with all the other suitable clauses
ask other current-clauses with [resolubles? c1 content] [
foreach lit-resolvents c1 content [ ?1 ->
let newClause clean (resolvent c1 content ?1)
; if it is not yet, and is not tautology, we add it
if not any? clauses with [content = newClause] and not tautology? newClause[
hatch-clauses 1 [
set content newClause
create-link-from myself
create-link-from nc1
set label print-clause content
set color (rgb 0 155 0)
set involved? false
setxy ([xcor] of myself + [xcor] of nc1) / 2 ([ycor] of myself + [ycor] of nc1) / 2
]
]
]
]
]
; Erase Tautologies
ask clauses [
set content clean content
if tautology? content [die]
]
end
; Main procedure
to go
; process new clauses
process
; If we reach the empty clause
ifelse any? clauses with [content = []]
[ let empty one-of clauses with [content = []]
; we mark it
ask empty [set color red set shape "square 2"]
; and leave only hte clauses involved in the way to get it
comeback empty
ask clauses with [not involved? ]
[
ht
ask my-out-links [hide-link]
ask my-in-links [hide-link]
]
layout-radial (clauses with [not hidden?]) links empty
repeat 100 [layout-spring clauses links 0 2 .1]
stop]
[
; If there is no new clauses, it is satisfiable
;layout-circle clauses 10
if count clauses = numCL [
user-message "The clause set is satisfiable"
stop]
set numCL count clauses
]
end
; Recursive process to mark all the clauses that points to c (it will be used from the
; empty clause)
to comeback [c]
ask c [
set involved? true
ask in-link-neighbors [ comeback self]
]
end
@#$#@#$#@
GRAPHICS-WINDOW
107
10
544
448
-1
-1
13.0
1
15
1
1
1
0
0
0
1
-16
16
-16
16
0
0
1
ticks
30.0
MONITOR
14
10
107
55
Num Clauses
count clauses
17
1
11
BUTTON
14
55
107
88
NIL
go
T
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
SLIDER
211
515
303
548
Clause-Set
Clause-Set
0
10
6.0
1
1
NIL
HORIZONTAL
BUTTON
346
515
437
548
Select
load-set (item Clause-Set examples)
NIL
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
MONITOR
5
470
675
515
Clauses Sets
print-set (item Clause-Set examples)
17
1
11
@#$#@#$#@
@#$#@#$#@
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.4
@#$#@#$#@
@#$#@#$#@
@#$#@#$#@
@#$#@#$#@
@#$#@#$#@
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
@#$#@#$#@
0
@#$#@#$#@
| NetLogo | 5 | fsancho/IA | 06. Logic/ResolutionPropositionalLogic.nlogo | [
"MIT"
] |
=pod
=head1 NAME
PKCS7_get_octet_string - return octet string from a PKCS#7 envelopedData structure
=head1 SYNOPSIS
#include <openssl/pkcs7.h>
ASN1_OCTET_STRING *PKCS7_get_octet_string(PKCS7 *p7);
=head1 DESCRIPTION
PKCS7_get_octet_string() returns a pointer to an ASN1 octet string from a
PKCS#7 envelopedData structure or B<NULL> if the structure cannot be parsed.
=head1 NOTES
As the B<0> implies, PKCS7_get_octet_string() returns internal pointers which
should not be freed by the caller.
=head1 RETURN VALUES
PKCS7_get_octet_string() returns an ASN1_OCTET_STRING pointer.
=head1 SEE ALSO
L<PKCS7_type_is_data(3)>
=head1 COPYRIGHT
Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved.
Licensed under the Apache License 2.0 (the "License"). You may not use
this file except in compliance with the License. You can obtain a copy
in the file LICENSE in the source distribution or at
L<https://www.openssl.org/source/license.html>.
=cut
| Pod | 4 | pmesnier/openssl | doc/man3/PKCS7_get_octet_string.pod | [
"Apache-2.0"
] |
use Datascope ;
use Getopt::Std ;
use strict ;
our ($opt_i, $opt_n, $opt_v, $Cnt) ;
our ($dbname, @db, @dlsite, $name) ;
if ( ! getopts('inv') || @ARGV != 1) {
my $pgm = $0 ;
$pgm =~ s".*/"" ;
die ( "Usage: $pgm [-inv] database \n" ) ;
}
# see if dlsite table exists
$dbname = $ARGV[0];
@db = dbopen($dbname, "r");
@dlsite = dblookup(@db, "", "dlsite" , "" , "");
# die ( "No records in dlsite table for $dbname \n") if (!dbquery(@dlsite, "dbRECORD_COUNT") ) ;
$name = dbquery(@dlsite, "dbTABLE_FILENAME") ;
# check to see if dlsite table is old format or new
if ( -f $name) {
open ( FILE, $name ) ;
$_ = <FILE> ;
if ( length($_) == 230 ) {
if ( ! $opt_i || askyn("Confirm conversion of $name ? ") ) {
convert($name) ;
}
} elsif ( length($_) == 245 ) {
print STDERR "Looks like $name has already been converted.\n" ;
} else {
print STDERR "Can't convert $name\n";
}
} else {
die ("name does not exist\n");
}
#
# Subs under here. Stolen liberally from DanQ's convert_calibration
#
sub convert {
my ($name) = @_ ;
if ( $opt_n ) {
print STDERR "$name needs to be converted\n" ;
} else {
print STDERR "converting $name\n" if $opt_v ;
open ( OLD, $name ) ;
my $new = "$name.$$" ;
my $old = $name ;
my $retain = "$name-" ;
my $result = open ( NEW, ">$new" ) ;
if ( $result ) {
$db[3] = 0 ;
while ( <OLD> ) {
my ($n) ;
my($model, $ssident, $time, $endtime, $dlname, $idtag, $lat, $lon, $elev, $commtype, $provider, $lddate);
($model, $ssident, $time, $endtime, $dlname, $idtag, $lat, $lon, $elev, $commtype, $provider, $lddate) = unpack_dlsite($_);
$a = &pack_Dlsite($model, $ssident, $time, $endtime, $dlname, $idtag, $lat, $lon, $elev, $commtype, $provider, $lddate);
if ( length($a) == 245 ) {
print NEW $a ;
} else {
printf STDERR "problem with pack_Dlsite: new line is %d chars\n'$a'\n", length($a) ;
}
}
close NEW || elog_complain ( "Couldn't close new table: $!" ) ;
rename $old, $retain ;
rename $new, $old ;
} else {
elog_complain ( "Couldn't open $new to write new table: $!" ) ;
}
}
}
sub unpack_dlsite{
my ($line) = @_;
my $dlsite_unpack = "A15 x A16 x A17 x A17 x A32 x A12 x A9 x A9 x A9 x A50 x A15 x A17" ;
my ( $model, $ssident, $time, $endtime, $dlname, $idtag, $lat, $lon, $elev, $commtype, $provider, $lddate) = unpack ( $dlsite_unpack, $line );
$time =~ s/^\s+// ;
$endtime =~ s/^\s+// ;
$commtype=~ s/^\s+// ;
$provider=~ s/^\s+// ;
$lddate =~ s/^\s+// ;
return ( $model, $ssident, $time, $endtime, $dlname, $idtag, $lat, $lon, $elev, $commtype, $provider, $lddate) ;
}
sub pack_Dlsite {
my ($model, $ssident, $time, $endtime, $dlname, $idtag, $lat, $lon, $elev, $commtype, $provider, $lddate) = @_ ;
my $dlsite_wcs = "%-15.15s %-16.16s %17.5f %17.5f %-32.32s %-12.12s %9.4f %9.4f %9.4f %-50.50s %-30.30s %17.5f\n" ;
return sprintf ($dlsite_wcs, $model, $ssident, $time, $endtime, $dlname, $idtag, $lat, $lon, $elev, $commtype, $provider, $lddate) ;
}
| XProc | 4 | jreyes1108/antelope_contrib | bin/usarray/mk_dbops/convert_dlsite.xpl | [
"BSD-2-Clause",
"MIT"
] |
HEADERS += \
$$PWD/adbprocess.h
SOURCES += \
$$PWD/adbprocess.cpp
| QMake | 0 | jiadxin/QtScrcpy | QtScrcpy/adb/adb.pri | [
"Apache-2.0"
] |
<!--
~ Copyright 2016 Red Hat, Inc. and/or its affiliates
~ and other contributors as indicated by the @author tags.
~
~ 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.
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xalan="http://xml.apache.org/xalan"
version="2.0"
exclude-result-prefixes="xalan">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" xalan:indent-amount="4" standalone="no"/>
<xsl:strip-space elements="*"/>
<xsl:param name="local.site" />
<xsl:param name="remote.site" />
<xsl:param name="transactions.enabled" />
<!-- Configuration of infinispan caches -->
<xsl:template match="//*[local-name()='infinispan']/*[local-name()='cache-container' and @name='default']">
<xsl:copy copy-namespaces="no">
<xsl:apply-templates select="@* | node()" />
<jmx enabled="true" />
<!--<replicated-cache-configuration name="sessions-cfg" mode="SYNC" start="EAGER" batching="false">-->
<replicated-cache-configuration name="sessions-cfg" mode="SYNC" start="EAGER" statistics="true" >
<xsl:if test="$transactions.enabled='true'">
<transaction mode="NON_DURABLE_XA" locking="PESSIMISTIC"/>
</xsl:if>
<locking acquire-timeout="0" />
<backups>
<backup site="{$remote.site}" failure-policy="FAIL" strategy="SYNC" enabled="true">
<take-offline min-wait="60000" after-failures="3" />
</backup>
</backups>
</replicated-cache-configuration>
<replicated-cache name="sessions" configuration="sessions-cfg" />
<replicated-cache name="offlineSessions" configuration="sessions-cfg" />
<replicated-cache name="clientSessions" configuration="sessions-cfg" />
<replicated-cache name="offlineClientSessions" configuration="sessions-cfg" />
<replicated-cache name="loginFailures" configuration="sessions-cfg" />
<replicated-cache name="actionTokens" configuration="sessions-cfg" />
<replicated-cache name="work" configuration="sessions-cfg" />
<replicated-cache name="employee-distributable-cache.ssoCache" configuration="sessions-cfg" />
<replicated-cache name="employee-distributable-cache" configuration="sessions-cfg" />
</xsl:copy>
</xsl:template>
<!-- Configure `xsite` stack. -->
<xsl:template match="//*[local-name()='infinispan']/*[local-name()='jgroups']
/*[local-name()='stack' and @name='xsite']">
<stack name="xsite" extends="udp">
<relay.RELAY2 xmlns="urn:org:jgroups" site="{$local.site}"/>
<remote-sites default-stack="tcp">
<remote-site name="{$local.site}"/>
<remote-site name="{$remote.site}"/>
</remote-sites>
</stack>
</xsl:template>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
</xsl:stylesheet> | XSLT | 4 | evtr/keycloak | testsuite/integration-arquillian/servers/cache-server/infinispan/common/add-keycloak-caches.xsl | [
"Apache-2.0"
] |
' Licensed to the .NET Foundation under one or more agreements.
' The .NET Foundation licenses this file to you under the MIT license.
' See the LICENSE file in the project root for more information.
Imports VerifyVB = Microsoft.CodeAnalysis.Editor.UnitTests.CodeActions.VisualBasicCodeRefactoringVerifier(Of
Microsoft.CodeAnalysis.VisualBasic.ConvertConversionOperators.VisualBasicConvertTryCastToDirectCastCodeRefactoringProvider)
Namespace Microsoft.CodeAnalysis.Editor.VisualBasic.UnitTests.ConvertCast
<Trait(Traits.Feature, Traits.Features.ConvertCast)>
Public Class ConvertTryCastToDirectCastTests
<Fact>
Public Async Function ConvertFromTryCastToDirectCast() As Task
Dim markup =
"
Module Program
Sub M()
Dim x = TryCast(1[||], Object)
End Sub
End Module
"
Dim expected =
"
Module Program
Sub M()
Dim x = DirectCast(1, Object)
End Sub
End Module
"
Await New VerifyVB.Test With
{
.TestCode = markup,
.FixedCode = expected
}.RunAsync()
End Function
<Theory>
<InlineData("TryCast(TryCast(1, [||]object), C)",
"TryCast(DirectCast(1, object), C)")>
<InlineData("TryCast(TryCast(1, object), [||]C)",
"DirectCast(TryCast(1, object), C)")>
Public Async Function ConvertFromTryCastNested(DirectCastExpression As String, converted As String) As Task
Dim markup =
"
Public Class C
End Class
Module Program
Sub M()
Dim x = " + DirectCastExpression + "
End Sub
End Module
"
Dim fixed =
"
Public Class C
End Class
Module Program
Sub M()
Dim x = " + converted + "
End Sub
End Module
"
Await New VerifyVB.Test With
{
.TestCode = markup,
.FixedCode = fixed
}.RunAsync()
End Function
End Class
End Namespace
| Visual Basic | 4 | ffMathy/roslyn | src/EditorFeatures/VisualBasicTest/ConvertCast/ConvertTryCastToDirectCastTests.vb | [
"MIT"
] |
# A generic, single database configuration.
[alembic]
# template used to generate migration files
# file_template = %%(rev)s_%%(slug)s
# set to 'true' to run the environment during
# the 'revision' command, regardless of autogenerate
# revision_environment = false
# Logging configuration
[loggers]
keys = sqlalchemy,alembic
#keys = root,sqlalchemy,alembic
#[handlers]
#keys = console
#[formatters]
#keys = generic
#[logger_root]
#level = WARN
#handlers = console
#qualname =
[logger_sqlalchemy]
level = WARN
handlers =
qualname = sqlalchemy.engine
[logger_alembic]
level = INFO
handlers =
qualname = alembic
#[handler_console]
#class = StreamHandler
#args = (sys.stderr,)
#level = NOTSET
#formatter = generic
#[formatter_generic]
#format = %(levelname)-5.5s [%(name)s] %(message)s
#datefmt = %H:%M:%S
| Mako | 4 | IsmaelJS/test-github-actions | tasks/app/db_templates/flask/alembic.ini.mako | [
"MIT"
] |
package EqualFunc;
// 参数:两个相同类型的变量
// 返回:它们是否相等
function Bool equal( td i, td j )
provisos( Eq#(td) ); // 派生要求:要求 td 派生自 Eq 。 provisos 本身构成了函数定义的一部分,不能省略
return (i == j);
endfunction
// 参数:两个变量(类型相同或不同,但位宽必须相同)
// 返回:它们在位编码层面是否相同
function Bool bit_equal( td1 i, td2 j )
provisos(
Bits#(td1, sz1), // 要求 td1 派生自 Bits 类型类,获取其位宽为 sz1
Bits#(td2, sz2), // 要求 td2 派生自 Bits 类型类,获取其位宽为 sz2
Add#(sz1, 0, sz2) // 要求 sz1+0=sz2 ,即 sz1==sz2
);
return pack(i) == pack(j);
endfunction
// 参数:两个变量(类型相同或不同,位宽相同或不同)
// 返回:它们在位编码层面(进行位扩展后)是否相同
function Bool bit_ext_equal( td1 i, td2 j )
provisos(
Bits#(td1, sz1), // 要求 td1 派生自 Bits 类型类,获取其位宽为 sz1
Bits#(td2, sz2) // 要求 td2 派生自 Bits 类型类,获取其位宽为 sz2
);
Bit#(TMax#(sz1,sz2)) bi = extend(pack(i));
Bit#(TMax#(sz1,sz2)) bj = extend(pack(j));
return bi == bj;
endfunction
// 参数:两个变量(类型相同或不同,位宽相同或不同)
// 返回:它们在位编码层面(进行位扩展后)是否相同
function Bool bit_ext_equal_v2( td1 i, td2 j )
provisos(
Bits#(td1, sz1), // 要求 td1 派生自 Bits 类型类,获取其位宽为 sz1
Bits#(td2, sz2) // 要求 td2 派生自 Bits 类型类,获取其位宽为 sz2
);
Bit#(TMax#(SizeOf#(td1), SizeOf#(td2))) bi = extend(pack(i));
Bit#(TMax#(SizeOf#(td1), SizeOf#(td2))) bj = extend(pack(j));
return bi == bj;
endfunction
module mkTb ();
rule test;
UInt#(20) a = 'h0ffff;
Int#(16) b = -1;
Bool eq = bit_ext_equal_v2(a, b);
$display("%b", eq);
$finish;
endrule
endmodule
endpackage
| Bluespec | 5 | Xiefengshang/BSV_Tutorial_cn | src/21.PolyFunc/EqualFunc.bsv | [
"MIT"
] |
Hello <%= @user.name -%>,
Follow this link to activate the change to your email address:
<%= @url %>
| RHTML | 3 | andypohl/kent | src/hg/encode/hgEncodeSubmit/app/views/user_notifier/change_email.rhtml | [
"MIT"
] |
package tools.fastlane.screengrab.locale;
import android.annotation.SuppressLint;
import android.content.res.Configuration;
import android.os.Build;
import android.os.LocaleList;
import android.util.Log;
import androidx.test.platform.app.InstrumentationRegistry;
import java.lang.reflect.Method;
import java.util.Locale;
public final class LocaleUtil {
private static final String TAG = LocaleUtil.class.getSimpleName();
@SuppressWarnings({"JavaReflectionMemberAccess", "deprecation", "RedundantSuppression"})
@SuppressLint("PrivateApi")
public static LocaleListCompat changeDeviceLocaleTo(LocaleListCompat locale) {
if (locale == null) {
Log.w(TAG, "Skipping setting device locale to null");
return null;
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N)
LocaleList.setDefault(locale.getLocaleList());
else
Locale.setDefault(locale.getLocale());
try {
Class<?> amnClass = Class.forName("android.app.ActivityManagerNative");
Method methodGetDefault = amnClass.getMethod("getDefault");
methodGetDefault.setAccessible(true);
Object activityManagerNative = methodGetDefault.invoke(amnClass);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
// getConfiguration moved from ActivityManagerNative to ActivityManagerProxy
amnClass = Class.forName(activityManagerNative.getClass().getName());
}
Method methodGetConfiguration = amnClass.getMethod("getConfiguration");
methodGetConfiguration.setAccessible(true);
Configuration config = (Configuration) methodGetConfiguration.invoke(activityManagerNative);
config.getClass().getField("userSetLocale").setBoolean(config, true);
LocaleListCompat ret;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
ret = new LocaleListCompat(config.getLocales());
} else {
ret = new LocaleListCompat(config.locale);
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N)
config.setLocales(locale.getLocaleList());
else
config.locale = locale.getLocale();
config.setLayoutDirection(locale.getPreferredLocale());
Method updateConfigurationMethod = amnClass.getMethod("updateConfiguration", Configuration.class);
updateConfigurationMethod.setAccessible(true);
updateConfigurationMethod.invoke(activityManagerNative, config);
Log.d(TAG, "Locale changed to " + locale);
return ret;
} catch (Exception e) {
Log.e(TAG, "Failed to change device locale to " + locale, e);
// ignore the error, it happens for example if run from Android Studio rather than Fastlane
return null;
}
}
@Deprecated
public static void changeDeviceLocaleTo(Locale locale) {
changeDeviceLocaleTo(new LocaleListCompat(locale));
}
public static String[] localePartsFrom(String localeString) {
if (localeString == null) {
return null;
}
String[] localeParts = localeString.split("[_\\-]");
if (localeParts.length < 1 || localeParts.length > 3) {
return null;
}
return localeParts;
}
public static Locale localeFromParts(String[] localeParts) {
if (localeParts == null || localeParts.length == 0) {
return null;
} else if (localeParts.length == 1) {
return new Locale(localeParts[0]);
} else if (localeParts.length == 2) {
return new Locale(localeParts[0], localeParts[1]);
} else {
return new Locale(localeParts[0], localeParts[1], localeParts[2]);
}
}
public static Locale localeFromString(String locale) {
return localeFromParts(localePartsFrom(locale));
}
public static String getTestLocale() {
return InstrumentationRegistry.getArguments().getString("testLocale");
}
private LocaleUtil() {}
}
| Java | 5 | flufff42/fastlane | screengrab/screengrab-lib/src/main/java/tools.fastlane.screengrab/locale/LocaleUtil.java | [
"MIT"
] |
--TEST--
Test token_get_all() function : usage variations - with different arithmetic operators
--EXTENSIONS--
tokenizer
--FILE--
<?php
/*
* Passing 'source' argument with different arithmetic operators to test them for token
* Arithmetic operators: +, -, *, /, % are not listed as specific operator tokens,
* so they are expected to return string - T_STRING
*/
echo "*** Testing token_get_all() : 'source' string with different arithmetic operators ***\n";
// arithmetic operators - '+', '-', '*', '/', '%'
$source = array (
'<?php $a = 1 + 2; ?>',
'<?php $b = $b - 2; ?>',
'<?php $c = $a * $b; ?>',
'<?php $a = $b % 2; ?>'
);
for($count = 0; $count < count($source); $count++) {
echo "-- Iteration ".($count + 1)." --\n";
var_dump( token_get_all($source[$count]));
}
echo "Done"
?>
--EXPECTF--
*** Testing token_get_all() : 'source' string with different arithmetic operators ***
-- Iteration 1 --
array(13) {
[0]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(6) "<?php "
[2]=>
int(1)
}
[1]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(2) "$a"
[2]=>
int(1)
}
[2]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[3]=>
string(1) "="
[4]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[5]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) "1"
[2]=>
int(1)
}
[6]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[7]=>
string(1) "+"
[8]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[9]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) "2"
[2]=>
int(1)
}
[10]=>
string(1) ";"
[11]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[12]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(2) "?>"
[2]=>
int(1)
}
}
-- Iteration 2 --
array(13) {
[0]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(6) "<?php "
[2]=>
int(1)
}
[1]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(2) "$b"
[2]=>
int(1)
}
[2]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[3]=>
string(1) "="
[4]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[5]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(2) "$b"
[2]=>
int(1)
}
[6]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[7]=>
string(1) "-"
[8]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[9]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) "2"
[2]=>
int(1)
}
[10]=>
string(1) ";"
[11]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[12]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(2) "?>"
[2]=>
int(1)
}
}
-- Iteration 3 --
array(13) {
[0]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(6) "<?php "
[2]=>
int(1)
}
[1]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(2) "$c"
[2]=>
int(1)
}
[2]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[3]=>
string(1) "="
[4]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[5]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(2) "$a"
[2]=>
int(1)
}
[6]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[7]=>
string(1) "*"
[8]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[9]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(2) "$b"
[2]=>
int(1)
}
[10]=>
string(1) ";"
[11]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[12]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(2) "?>"
[2]=>
int(1)
}
}
-- Iteration 4 --
array(13) {
[0]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(6) "<?php "
[2]=>
int(1)
}
[1]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(2) "$a"
[2]=>
int(1)
}
[2]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[3]=>
string(1) "="
[4]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[5]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(2) "$b"
[2]=>
int(1)
}
[6]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[7]=>
string(1) "%"
[8]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[9]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) "2"
[2]=>
int(1)
}
[10]=>
string(1) ";"
[11]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(1)
}
[12]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(2) "?>"
[2]=>
int(1)
}
}
Done
| PHP | 4 | NathanFreeman/php-src | ext/tokenizer/tests/token_get_all_variation2.phpt | [
"PHP-3.01"
] |
--TEST--
Test get_html_translation_table() function : basic functionality - table as HTML_SPECIALCHARS
--FILE--
<?php
/* test get_html_translation_table() when $table argument is specified as HTML_SPECIALCHARS */
echo "*** Testing get_html_translation_table() : basic functionality ***\n";
// $table as HTML_SEPCIALCHARS and different quote style
echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_COMPAT --\n";
$table = HTML_SPECIALCHARS;
$quote_style = ENT_COMPAT;
$tt = get_html_translation_table($table, $quote_style, "UTF-8");
asort( $tt );
var_dump( $tt );
echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_QUOTES --\n";
$quote_style = ENT_QUOTES;
$tt = get_html_translation_table($table, $quote_style, "UTF-8");
asort( $tt );
var_dump( $tt );
echo "-- with table = HTML_SPECIALCHARS & quote_style = ENT_NOQUOTES --\n";
$quote_style = ENT_NOQUOTES;
$tt = get_html_translation_table($table, $quote_style, "UTF-8");
asort( $tt );
var_dump( $tt );
echo "Done\n";
?>
--EXPECT--
*** Testing get_html_translation_table() : basic functionality ***
-- with table = HTML_SPECIALCHARS & quote_style = ENT_COMPAT --
array(4) {
["&"]=>
string(5) "&"
[">"]=>
string(4) ">"
["<"]=>
string(4) "<"
["""]=>
string(6) """
}
-- with table = HTML_SPECIALCHARS & quote_style = ENT_QUOTES --
array(5) {
["'"]=>
string(6) "'"
["&"]=>
string(5) "&"
[">"]=>
string(4) ">"
["<"]=>
string(4) "<"
["""]=>
string(6) """
}
-- with table = HTML_SPECIALCHARS & quote_style = ENT_NOQUOTES --
array(3) {
["&"]=>
string(5) "&"
[">"]=>
string(4) ">"
["<"]=>
string(4) "<"
}
Done
| PHP | 4 | NathanFreeman/php-src | ext/standard/tests/strings/get_html_translation_table_basic3.phpt | [
"PHP-3.01"
] |
//This file is part of "GZE - GroundZero Engine"
//The permisive licence allow to use GZE for free or commercial project (Apache License, Version 2.0).
//For conditions of distribution and use, see copyright notice in Licence.txt, this license must be included with any distribution of the code.
package {
import GZ.Base.Math.Math;
import GZ.Base.Vec3;
/**
* @author Maeiky
*/
public vector Point {
public var nX : Number;
public var nY : Number;
public var nZ : Number;
public function Point(_nX : Number = 0, _nY : Number = 0, _nZ : Number = 0):Void {
}
}
}
| Redcode | 4 | VLiance/GZE | src/Lib_GZ/Base/Pod/Point.cw | [
"Apache-2.0"
] |
<%@ page contentType="text/html; charset=utf-8"%>
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
<%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%>
<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
<c:set var="basePath" value="${pageContext.request.contextPath}"/>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title><spring:message code="500"/></title>
</head>
<body>
<center style="margin:50px auto">
<p>错误代码:500<%//=request.getAttribute("javax.servlet.error.status_code")%></p>
<p>您访问的页面有错误!</p>
<p>错误原因:${error.message}</p>
<p>错误内容:${error}</p>
<p><!--页面将在<span id="stime">5</span>秒后-->跳转到<a href="${pageContext.request.contextPath}/">首页</a>!</p>
</center>
<%
/**
监控出错人的IP
String ip = request.getHeader(" x-forwarded-for");
if (ip == null || ip.length() == 0 || " unknown".equalsIgnoreCase(ip)) {
ip = request.getHeader(" Proxy-Client-IP"); // 获取代理ip
}
if (ip == null || ip.length() == 0 || " unknown".equalsIgnoreCase(ip)) {
ip = request.getHeader(" WL-Proxy-Client-IP"); // 获取代理ip
}
if (ip == null || ip.length() == 0 || " unknown".equalsIgnoreCase(ip)) {
ip = request.getRemoteAddr(); // 获取真实ip
}
//out.println(ip+"<br/><br/>你的地址是:<br/><br/>");
Document doc = Jsoup.connect("http://ip.chinaz.com/?IP="+ip).timeout(9000).get();
Element e = doc.select("#status").first();
//out.println(e);
*/
%>
</body>
</html> | Java Server Pages | 4 | IamTenKing/zheng | zheng-wechat/zheng-wechat-mp/zheng-wechat-mp-admin/src/main/webapp/WEB-INF/jsp/500.jsp | [
"MIT"
] |
fileFormatVersion: 2
guid: 52155b8c452647ec8b84033519269054
timeCreated: 1507865387 | Unity3D Asset | 0 | shunfy/ET | Unity/Assets/Editor/BuildEditor/BuildEditor.cs.meta | [
"MIT"
] |
package com.taobao.arthas.core.shell.term.impl;
import com.alibaba.arthas.deps.org.slf4j.Logger;
import com.alibaba.arthas.deps.org.slf4j.LoggerFactory;
import com.taobao.arthas.core.shell.cli.CliToken;
import com.taobao.arthas.core.shell.cli.CliTokens;
import com.taobao.arthas.core.shell.handlers.Handler;
import com.taobao.arthas.core.shell.session.Session;
import io.termd.core.function.Consumer;
import io.termd.core.readline.Completion;
import java.util.Collections;
import java.util.List;
/**
* @author beiwei30 on 23/11/2016.
*/
class CompletionHandler implements Consumer<Completion> {
private static final Logger logger = LoggerFactory.getLogger(CompletionHandler.class);
private final Handler<com.taobao.arthas.core.shell.cli.Completion> completionHandler;
private final Session session;
public CompletionHandler(Handler<com.taobao.arthas.core.shell.cli.Completion> completionHandler, Session session) {
this.completionHandler = completionHandler;
this.session = session;
}
@Override
public void accept(final Completion completion) {
try {
final String line = io.termd.core.util.Helper.fromCodePoints(completion.line());
final List<CliToken> tokens = Collections.unmodifiableList(CliTokens.tokenize(line));
com.taobao.arthas.core.shell.cli.Completion comp = new CompletionAdaptor(line, tokens, completion, session);
completionHandler.handle(comp);
} catch (Throwable t) {
// t.printStackTrace();
logger.error("completion error", t);
}
}
}
| Java | 4 | weihubeats/arthas | core/src/main/java/com/taobao/arthas/core/shell/term/impl/CompletionHandler.java | [
"Apache-2.0"
] |
package {
import GzOpenGL.OpenGL;
import GzOpenGL.OpGpuInfo;
import GZ.Gpu.ShaderBase.Vbo;
import GZ.Gpu.Base.Texture;
import GZ.Gpu.ShaderBase.ProgramShader;
public class OpTexture overplace Texture {
public function OpTexture(_oProgram : ProgramShader, _sName : String):Void {
}
override public function fLoad():Void {
// GZ_printf("%s" , (gzInt8*)(_sName.sStr->array + 1));
// GL_fUniform1i(GL_fGetUniformLocation(nId, _sName.fcStr() ), _nSlot);
nId = OpenGL.fGetUniformLocation(oProgram.nId, "Texture[" + nSlot + "]" );
nSizeId = OpenGL.fGetUniformLocation(oProgram.nId, "TexSize[" + nSlot + "]" );
nNumId = OpenGL.fGetUniformLocation(oProgram.nId, sName );
bValid = true;
<cpp>
if(nNumId == gzVal(-1) ){
</cpp>
Debug.fWarning("OpenGL: Unabled to find Uniform (or optimised out): " + sName );
bValid = false;
<cpp>
}
</cpp>
<cpp>
if(nSizeId == gzVal(-1) ){
</cpp>
Debug.fWarning("OpenGL: Unabled to size array Texture Uniform (or optimised out): TexSize" );
bValid = false;
<cpp>
}
</cpp>
OpenGL.fUniform1i(nId, nSlot);
OpenGL.fUniform1i(nNumId, nSlot);
//fSend(nSlot);
//var _nID : Int = nId;
//Debug.fPass("--- Texture Created!:--- " + _nID);
// _nSlot + GL_TEXTURE0;
}
override public function fSend(_nSlot : UInt):Void {
//nSlot = _nSlot;
//OpenGL.fUniform1i(nId, _nSlot);
}
override function fSendSize(_nWidth : Float, _nHeight : Float):Void {
OpenGL.fUniform2f(nSizeId, _nWidth, _nHeight);
}
}
} | Redcode | 3 | VLiance/GZE | src/SubLib_GPU/OpenGL/Lib_GzOpenGL/Base/OpTexture.cw | [
"Apache-2.0"
] |
#!/bin/tcsh
#set echo
#
# this is a test script for notepadcrypt. It encrypts every file in cwd and compares
# the decrypted result with the original. If all goes well it cleans up after itself,
# leaving the original files untouched.
#
foreach file (*)
if(-f "$file") then
echo $file
# plain file
notepadcrypt ef "$file" "$file.enc" "$file"
notepadcrypt df "$file.enc" "$file.out" "$file"
diff "$file" "$file.out"
if($status) then
echo "decode file"
break;
endif
rm "$file.out" "$file.enc"
# master file decrypt with file key
notepadcrypt em "$file" "$file.enc" "$file key" "master $file"
notepadcrypt df "$file.enc" "$file.out" "$file key"
diff "$file" "$file.out"
if($status) then
echo "decode master using file"
break;
endif
rm "$file.out" "$file.enc"
# master file decrypt with master key
notepadcrypt em "$file" "$file.enc" "$file key" "master $file"
notepadcrypt dm "$file.enc" "$file.out" "master $file"
diff "$file" "$file.out"
if($status) then
echo "decode master using master"
break;
endif
rm "$file.out" "$file.enc"
endif
end
| Tcsh | 4 | X-EcutiOnner/Notepad3 | src/crypto/testcrypt.tcsh | [
"BSD-3-Clause"
] |
export default {
html: '<div class=""></div>'
};
| JavaScript | 0 | Theo-Steiner/svelte | test/runtime/samples/attribute-empty/_config.js | [
"MIT"
] |
{"connections":[{"from":"shape","from_port":0,"to":"pxflib_2","to_port":0},{"from":"pxflib_3","from_port":0,"to":"rotate","to_port":0},{"from":"pxflib","from_port":0,"to":"pxflib_2","to_port":1},{"from":"rotate","from_port":0,"to":"translate","to_port":0},{"from":"translate","from_port":0,"to":"pxflib","to_port":0},{"from":"pxflib_2","from_port":0,"to":"pxflib_4","to_port":0}],"nodes":[{"name":"pxflib_3","node_position":{"x":-205.714279,"y":-106.642853},"parameters":{},"seed_value":-18261,"shader_model":{"code":"","global":"","inputs":[],"instance":"","longdesc":"Type - V4->V4 Generator\nCode - PauloFalcao\n\nInput Coordinates","name":"Axis","outputs":[{"rgba":"vec4($uv,0.0,1.0)","shortdesc":"RGBA Output","type":"rgba"}],"parameters":[],"shortdesc":"Axis"},"type":"shader"},{"name":"pxflib","node_position":{"x":-195.714279,"y":168.357147},"parameters":{"mode":0,"smooth":0.00007},"shader_model":{"code":"","global":"","inputs":[{"default":"vec4(0.0,0.0,0.0,1.0)","label":"","name":"in","shortdesc":"RGBA Input","type":"rgba"}],"instance":"","longdesc":"Type - RGBA Operator\nCode - PauloFalcao\n\nTransforms a RGBA making a mirror smooth symmetry using the chosen axis","name":"Smooth Axis Symmetry","outputs":[{"rgba":"$in($mode)","shortdesc":"RGBA output","type":"rgba"}],"parameters":[{"default":2,"label":"Axis","longdesc":"Axis","name":"mode","type":"enum","values":[{"name":"XY","value":"vec2(sqrt(($uv.xy-0.5)*($uv.xy-0.5)+$smooth))+0.5"},{"name":"X","value":"vec2(sqrt($uv.x*$uv.x+$smooth),$uv.y)+0.5"},{"name":"Y","value":"vec2($uv.x,sqrt($uv.y*$uv.y+$smooth))+0.5"}]},{"control":"None","default":0,"label":"Smooth","max":0.02,"min":0,"name":"smooth","step":0.00001,"type":"float"}],"shortdesc":"Smooth Axis Symmetry"},"type":"shader"},{"name":"translate","node_position":{"x":-216.714279,"y":73.357147},"parameters":{"translate_x":0.19,"translate_y":0.09},"type":"translate"},{"name":"rotate","node_position":{"x":-208.714279,"y":-43.642853},"parameters":{"cx":0.155,"cy":-0.52,"rotate":9.791},"type":"rotate"},{"name":"shape","node_position":{"x":-208.714279,"y":-237.642853},"parameters":{"edge":1,"radius":1,"shape":4,"sides":16},"type":"shape"},{"name":"pxflib_4","node_position":{"x":178.285721,"y":6.357147},"parameters":{"scale":1.681355},"shader_model":{"code":"","global":"vec2 scale(vec2 uv, vec2 center, vec2 scale) {\n\tuv -= center;\n\tuv /= scale;\n\tuv += center;\n return uv;\n}","inputs":[{"default":"vec4($uv, 0.0, 1.0)","label":"","longdesc":"The input image","name":"i","shortdesc":"Input","type":"rgba"}],"instance":"","longdesc":"Scales its input","name":"Simple Scale","outputs":[{"longdesc":"Shows the scaled image","rgba":"$i((($uv-vec2(0.5))*$scale)+vec2(0.5))","shortdesc":"Output","type":"rgba"}],"parameters":[{"control":"Scale1.x","default":1,"label":"Scale","longdesc":"The scale amount","max":1,"min":0,"name":"scale","step":0.001,"type":"float"}],"shortdesc":"Simple Scale"},"type":"shader"},{"name":"pxflib_2","node_position":{"x":132.285721,"y":-148.642853},"parameters":{"blend_type":0,"iterations":18,"mode":2,"opacity":1},"shader_model":{"code":"","global":"vec3 blendf_normal(vec3 c1, vec3 c2, float opacity) {\n\treturn opacity*c1 + (1.0-opacity)*c2;\n}\n\nvec3 blendf_multiply(vec3 c1, vec3 c2, float opacity) {\n\treturn opacity*c1*c2 + (1.0-opacity)*c2;\n}\n\nvec3 blendf_screen( vec3 c1, vec3 c2, float opacity) {\n\treturn opacity*(1.0-(1.0-c1)*(1.0-c2)) + (1.0-opacity)*c2;\n}\n\nfloat blendf_overlay_f(float c1, float c2) {\n\treturn (c1 < 0.5) ? (2.0*c1*c2) : (1.0-2.0*(1.0-c1)*(1.0-c2));\n}\n\nvec3 blendf_overlay(vec3 c1, vec3 c2, float opacity) {\n\treturn opacity*vec3(blendf_overlay_f(c1.x, c2.x), blendf_overlay_f(c1.y, c2.y), blendf_overlay_f(c1.z, c2.z)) + (1.0-opacity)*c2;\n}\n\nvec3 blendf_hard_light(vec3 c1, vec3 c2, float opacity) {\n\treturn opacity*0.5*(c1*c2+blendf_overlay(c1, c2, 1.0)) + (1.0-opacity)*c2;\n}\n\nfloat blendf_soft_light_f(float c1, float c2) {\n\treturn (c2 < 0.5) ? (2.0*c1*c2+c1*c1*(1.0-2.0*c2)) : 2.0*c1*(1.0-c2)+sqrt(c1)*(2.0*c2-1.0);\n}\n\nvec3 blendf_soft_light( vec3 c1, vec3 c2, float opacity) {\n\treturn opacity*vec3(blendf_soft_light_f(c1.x, c2.x), blendf_soft_light_f(c1.y, c2.y), blendf_soft_light_f(c1.z, c2.z)) + (1.0-opacity)*c2;\n}\n\nfloat blendf_burn_f(float c1, float c2) {\n\treturn (c1==0.0)?c1:max((1.0-((1.0-c2)/c1)),0.0);\n}\n\nvec3 blendf_burn(vec3 c1, vec3 c2, float opacity) {\n\treturn opacity*vec3(blendf_burn_f(c1.x, c2.x), blendf_burn_f(c1.y, c2.y), blendf_burn_f(c1.z, c2.z)) + (1.0-opacity)*c2;\n}\n\nfloat blendf_dodge_f(float c1, float c2) {\n\treturn (c1==1.0)?c1:min(c2/(1.0-c1),1.0);\n}\n\nvec3 blendf_dodge(vec3 c1, vec3 c2, float opacity) {\n\treturn opacity*vec3(blendf_dodge_f(c1.x, c2.x), blendf_dodge_f(c1.y, c2.y), blendf_dodge_f(c1.z, c2.z)) + (1.0-opacity)*c2;\n}\n\nvec3 blendf_lighten(vec3 c1, vec3 c2, float opacity) {\n\treturn opacity*max(c1, c2) + (1.0-opacity)*c2;\n}\n\nvec3 blendf_darken(vec3 c1, vec3 c2, float opacity) {\n\treturn opacity*min(c1, c2) + (1.0-opacity)*c2;\n}\n\nvec3 blendf_difference(vec3 c1, vec3 c2, float opacity) {\n\treturn opacity*clamp(c2-c1, vec3(0.0), vec3(1.0)) + (1.0-opacity)*c2;\n}\n","inputs":[{"default":"0.0","function":true,"label":"Image","longdesc":"The image that will be repeated","name":"img","shortdesc":"RGBA Image","type":"rgba"},{"default":"vec4($uv,0.0,0.0)","function":true,"label":"2D Transformation","longdesc":"The transformation that will be applied each iteration, only transformations nodes can be used, like translate, scale, etc","name":"trans2d","shortdesc":"Image Transformaton","type":"rgba"}],"instance":"vec4 for_blend_$name(vec2 p) {\n vec2 t=p;\n vec4 o=$img(t);\n for(int i=0;i<$iterations;i++){\n t=$trans2d(t).xy;\n\tvec4 no=$img(t);\n\to=vec4(blendf_$blend_type(o.xyz,no.xyz,$opacity),mix(o.w,no.w,$opacity));\n }\n return o;\n}\n\nvec4 for_avg_$name(vec2 p) {\n vec2 t=p;\n vec4 no=$img(t);\n vec4 o=vec4(no.xyz*$opacity,no.w);\n for(int i=0;i<$iterations;i++){\n t=$trans2d(t).xy;\n\tno=$img(t);\n\to+=vec4(no.xyz*$opacity,no.w);\n }\n return vec4(o/($iterations.0+1.0));\n}\n\nvec4 for_fold_$name(vec2 p) {\n vec2 t=p;\n for(int i=0;i<$iterations;i++){\n t=$trans2d(t).xy;\n }\n vec4 no=$img(t);\n vec4 o=vec4(no.xyz*$opacity,no.w);\n return o;\n}\n","longdesc":"Type - RGBA Generator\nCode - PauloFalcao, RodZilla (Bending modes)\n\nRepeats a shape x Iterations times, and for each iteration uses the transformation in 2D Transformation Node.\n\n2D Transformation nodes should start with the Image \"Axis\" node, operations should not use buffer, only coordinates transformations should be used, nodes that transform colors here will transform space.\n\nThere are 3 modes available:\n - Average\n Transforms space each iteration.\n The input image is evaluated for each iteration, and at the end the average of all evaluations is returned.\n Using operators like Mirror is possible to repeat space.\n - Blend\n Transforms space each iteration.\n The input image is evaluated for each iteration.\n Each iteration the previous image is combined with the current only using the specified blending mode.\n Using operators like Mirror is possible to repeat space.\n - Fold\n Transforms space each iteration.\n The input image is evaluated only at the end.\n Using operators like Mirror is possible to repeat space.","name":"Fractal","outputs":[{"rgba":"$mode","shortdesc":"SDF3D Output","type":"rgba"}],"parameters":[{"default":24,"label":"Iterations","longdesc":"Number of Iterations","name":"iterations","type":"enum","values":[{"name":"0","value":"0"},{"name":"1","value":"1"},{"name":"2","value":"2"},{"name":"3","value":"3"},{"name":"4","value":"4"},{"name":"5","value":"5"},{"name":"6","value":"6"},{"name":"7","value":"7"},{"name":"8","value":"8"},{"name":"9","value":"9"},{"name":"10","value":"10"},{"name":"11","value":"11"},{"name":"12","value":"12"},{"name":"13","value":"13"},{"name":"14","value":"14"},{"name":"15","value":"15"},{"name":"16","value":"16"},{"name":"17","value":"17"},{"name":"18","value":"18"},{"name":"19","value":"19"},{"name":"20","value":"20"},{"name":"21","value":"21"},{"name":"22","value":"22"},{"name":"23","value":"23"},{"name":"24","value":"24"}]},{"default":2,"label":"Mode","longdesc":" - Average\n Transforms space each iteration.\n The input image is evaluated for each iteration, and at the end the average of all evaluations is returned.\n Using operators like Mirror is possible to repeat space.\n - Blend\n Transforms space each iteration.\n The input image is evaluated for each iteration.\n Each iteration the previous image is combined with the current only using the specified blending mode.\n Using operators like Mirror is possible to repeat space.\n - Fold\n Transforms space each iteration.\n The input image is evaluated only at the end.\n Using operators like Mirror is possible to repeat space.","name":"mode","type":"enum","values":[{"name":"Average","value":"for_avg_$name($uv)"},{"name":"Blend","value":"for_blend_$name($uv)"},{"name":"Fold","value":"for_fold_$name($uv)"}]},{"default":0,"label":"Blend Mode","longdesc":"The algorithm used to blend the result of each iteration","name":"blend_type","shortdesc":"Blend mode","type":"enum","values":[{"name":"Normal","value":"normal"},{"name":"Multiply","value":"multiply"},{"name":"Screen","value":"screen"},{"name":"Overlay","value":"overlay"},{"name":"Hard Light","value":"hard_light"},{"name":"Soft Light","value":"soft_light"},{"name":"Burn","value":"burn"},{"name":"Dodge","value":"dodge"},{"name":"Lighten","value":"lighten"},{"name":"Darken","value":"darken"},{"name":"Difference","value":"difference"}]},{"control":"None","default":0.5,"label":"Opacity","longdesc":"The opacity of the blend operation","max":1,"min":0,"name":"opacity","step":0.001,"type":"float"}],"shortdesc":"Fractal"},"type":"shader"}]} | Module Management System | 4 | paulofalcao/MaterialMakerRayMarching | Examples/pxf006.mms | [
"MIT"
] |
<p>
<b>Status for project: <%= @project.name -%></b>
</p>
Upload error:</br>
<pre>
<font size=-1>
<%= @errText -%>
</font>
</pre>
| RHTML | 3 | andypohl/kent | src/hg/encode/hgEncodeSubmit/app/views/pipeline/upload_status.rhtml | [
"MIT"
] |
div.svelte-xyz{@apply --funky-div;} | CSS | 1 | Theo-Steiner/svelte | test/css/samples/unknown-at-rule/expected.css | [
"MIT"
] |
{} <!-- first -->
<div></div>
{}{$bar}{}
<div></div>
<!-- second --> {} | Latte | 0 | arusinha/incubator-netbeans | php/php.latte/test/unit/data/testfiles/completion/testCompletion_08.latte | [
"Apache-2.0"
] |
scriptname _Frost_WeatherMeterInterfaceHandler extends CommonMeterInterfaceHandler
import CampUtil
function RegisterForEvents()
if !GetSKSELoaded()
return
endif
RegisterForModEvent("Frostfall_ForceWeathersenseMeterDisplay", "ForceMeterDisplay")
RegisterForModEvent("Frostfall_RemoveWeathersenseMeter", "RemoveMeter")
RegisterForModEvent("Frostfall_UpdateWeathersenseMeter", "UpdateMeterDelegate")
RegisterForModEvent("Frostfall_CheckMeterRequirements", "CheckMeterRequirements")
endFunction | Papyrus | 4 | chesko256/Campfire | Scripts/Source/_Frost_WeatherMeterInterfaceHandler.psc | [
"MIT"
] |
# This file is distributed under the same license as the Django package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
"PO-Revision-Date: 2017-10-06 11:49+0000\n"
"Last-Translator: Muḥend Belqasem <belkacem77@gmail.com>\n"
"Language-Team: Kabyle (http://www.transifex.com/django/django/language/"
"kab/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: kab\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
msgid "Sessions"
msgstr "Tiɣimiyin"
msgid "session key"
msgstr "tasarutt n tɣimit"
msgid "session data"
msgstr "isefka n tɣimit"
msgid "expire date"
msgstr "azemz n tgara"
msgid "session"
msgstr "tiɣimit"
msgid "sessions"
msgstr "tiɣimiyin"
| Gettext Catalog | 2 | jpmallarino/django | django/contrib/sessions/locale/kab/LC_MESSAGES/django.po | [
"BSD-3-Clause",
"0BSD"
] |
"""
This is an example of Pony's built-in backpressure. You'll note that if this
program was run with fair scheduling of all actors that the single `Receiver`
instance would be unable to keep up with all the `Sender` instances sending
messages to the `Receiver` instance. The result would be runaway memory
growth as the mailbox for `Receiver` grew larger and larger.
Thanks to Pony's built-in backpressure mechanism, this doesn't happen. As the
`Receiver` instance becomes overloaded, the Pony runtime responds by not
scheduling the various `Sender` instances until the overload on `Receiver` is
cleared.
"""
use "collections"
use "time"
actor Receiver
var _msgs: U64 = 0
let _out: OutStream
var _last: U64 = Time.nanos()
new create(out: OutStream) =>
_out = out
_out.print("Single receiver started.")
be receive() =>
_msgs = _msgs + 1
if ((_msgs % 50_000_000) == 0) then
let now = Time.nanos()
let nanos = now - _last
_last = now
_out.print(_msgs.string() + " messages received in " +
nanos.string() + " nanos.")
end
actor Sender
let _receiver: Receiver
new create(receiver: Receiver) =>
_receiver = receiver
be fire() =>
_receiver.receive()
fire()
actor Main
var _size: U32 = 10_000
new create(env: Env) =>
start_messaging(env.out)
loop()
be loop() => None
loop()
fun ref start_messaging(out: OutStream) =>
let r = Receiver(out)
out.print("Starting " + _size.string() + " senders.")
for i in Range[U32](0, _size) do
Sender(r).fire()
end
| Pony | 4 | presidentbeef/ponyc | examples/overload/main.pony | [
"BSD-2-Clause"
] |
/* -*- c -*- */
/* (c) Copyright 1998-2003 by Mark Mielke
*
* Freedom to use these sources for whatever you want, as long as credit
* is given where credit is due, is hereby granted. You may make modifications
* where you see fit but leave this copyright somewhere visible. As well try
* to initial any changes you make so that if i like the changes i can
* incorporate them into any later versions of mine.
*
* - Mark Mielke <mark@mielke.cc>
*/
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#define SOUNDEX_ACCURACY (4) /* The maximum code length... (should be>=2) */
#if !(PERL_REVISION >= 5 && PERL_VERSION >= 8)
# define utf8n_to_uvchr utf8_to_uv
#endif
static char sv_soundex_table[0x100];
static void sv_soundex_initialize (void)
{
memset(&sv_soundex_table[0], '\0', sizeof(sv_soundex_table));
sv_soundex_table['A'] = '0';
sv_soundex_table['a'] = '0';
sv_soundex_table['E'] = '0';
sv_soundex_table['e'] = '0';
sv_soundex_table['H'] = '0';
sv_soundex_table['h'] = '0';
sv_soundex_table['I'] = '0';
sv_soundex_table['i'] = '0';
sv_soundex_table['O'] = '0';
sv_soundex_table['o'] = '0';
sv_soundex_table['U'] = '0';
sv_soundex_table['u'] = '0';
sv_soundex_table['W'] = '0';
sv_soundex_table['w'] = '0';
sv_soundex_table['Y'] = '0';
sv_soundex_table['y'] = '0';
sv_soundex_table['B'] = '1';
sv_soundex_table['b'] = '1';
sv_soundex_table['F'] = '1';
sv_soundex_table['f'] = '1';
sv_soundex_table['P'] = '1';
sv_soundex_table['p'] = '1';
sv_soundex_table['V'] = '1';
sv_soundex_table['v'] = '1';
sv_soundex_table['C'] = '2';
sv_soundex_table['c'] = '2';
sv_soundex_table['G'] = '2';
sv_soundex_table['g'] = '2';
sv_soundex_table['J'] = '2';
sv_soundex_table['j'] = '2';
sv_soundex_table['K'] = '2';
sv_soundex_table['k'] = '2';
sv_soundex_table['Q'] = '2';
sv_soundex_table['q'] = '2';
sv_soundex_table['S'] = '2';
sv_soundex_table['s'] = '2';
sv_soundex_table['X'] = '2';
sv_soundex_table['x'] = '2';
sv_soundex_table['Z'] = '2';
sv_soundex_table['z'] = '2';
sv_soundex_table['D'] = '3';
sv_soundex_table['d'] = '3';
sv_soundex_table['T'] = '3';
sv_soundex_table['t'] = '3';
sv_soundex_table['L'] = '4';
sv_soundex_table['l'] = '4';
sv_soundex_table['M'] = '5';
sv_soundex_table['m'] = '5';
sv_soundex_table['N'] = '5';
sv_soundex_table['n'] = '5';
sv_soundex_table['R'] = '6';
sv_soundex_table['r'] = '6';
}
static SV *sv_soundex (SV *source)
{
char *source_p;
char *source_end;
{
STRLEN source_len;
source_p = SvPV(source, source_len);
source_end = &source_p[source_len];
}
while (source_p != source_end)
{
char codepart_last = sv_soundex_table[(unsigned char) *source_p];
if (codepart_last != '\0')
{
SV *code = newSV(SOUNDEX_ACCURACY);
char *code_p = SvPVX(code);
char *code_end = &code_p[SOUNDEX_ACCURACY];
SvCUR_set(code, SOUNDEX_ACCURACY);
SvPOK_only(code);
*code_p++ = toupper(*source_p++);
while (source_p != source_end && code_p != code_end)
{
char c = *source_p++;
char codepart = sv_soundex_table[(unsigned char) c];
if (codepart != '\0')
if (codepart != codepart_last && (codepart_last = codepart) != '0')
*code_p++ = codepart;
}
while (code_p != code_end)
*code_p++ = '0';
*code_end = '\0';
return code;
}
source_p++;
}
return SvREFCNT_inc(perl_get_sv("Text::Soundex::nocode", FALSE));
}
static SV *sv_soundex_utf8 (SV* source)
{
U8 *source_p;
U8 *source_end;
{
STRLEN source_len;
source_p = (U8 *) SvPV(source, source_len);
source_end = &source_p[source_len];
}
while (source_p < source_end)
{
STRLEN offset;
UV c = utf8n_to_uvchr(source_p, source_end-source_p, &offset, 0);
char codepart_last = (c <= 0xFF) ? sv_soundex_table[c] : '\0';
source_p = (offset >= 1) ? &source_p[offset] : source_end;
if (codepart_last != '\0')
{
SV *code = newSV(SOUNDEX_ACCURACY);
char *code_p = SvPVX(code);
char *code_end = &code_p[SOUNDEX_ACCURACY];
SvCUR_set(code, SOUNDEX_ACCURACY);
SvPOK_only(code);
*code_p++ = toupper(c);
while (source_p != source_end && code_p != code_end)
{
char codepart;
c = utf8n_to_uvchr(source_p, source_end-source_p, &offset, 0);
codepart = (c <= 0xFF) ? sv_soundex_table[c] : '\0';
source_p = (offset >= 1) ? &source_p[offset] : source_end;
if (codepart != '\0')
if (codepart != codepart_last && (codepart_last = codepart) != '0')
*code_p++ = codepart;
}
while (code_p != code_end)
*code_p++ = '0';
*code_end = '\0';
return code;
}
source_p++;
}
return SvREFCNT_inc(perl_get_sv("Text::Soundex::nocode", FALSE));
}
MODULE = Text::Soundex PACKAGE = Text::Soundex
PROTOTYPES: DISABLE
void
soundex_xs (...)
INIT:
{
sv_soundex_initialize();
}
PPCODE:
{
int i;
for (i = 0; i < items; i++)
{
SV *sv = ST(i);
if (DO_UTF8(sv))
sv = sv_soundex_utf8(sv);
else
sv = sv_soundex(sv);
PUSHs(sv_2mortal(sv));
}
}
| XS | 4 | vlinhd11/vlinhd11-android-scripting | perl/src/ext/Text-Soundex/Soundex.xs | [
"Apache-2.0"
] |
; STM
; Atoms
; Refs
; Agents
; Something else?
; Future
| Ioke | 0 | olabini/ioke | docs/concurrency.ik | [
"ICU",
"MIT"
] |
First paragraph.
Second paragraph.
= Section h1
== Section h2
=== Section h3
==== Section h4
===== Section h5
----
* item 1
** item 1.1
** item 1.2
* item 2
* item 3
*# item 3.1
*# item 3.2
# num 1
# num 2
Section bloc:
L1: line 1
L2: line 2
L3: line 3
Formatting
//emphasis//
**strong**
Line\\break
^^superscript^^
,,subscript,,
__underline__
[[A link]]
[[A link|title]]
{{link|Alt text}}
{{link|Alt text|center}}
{{{
//A// **pre**-formatted section
== [[Nowiki]]
}}}
| Creole | 3 | jquorning/ada-wiki | regtests/files/wiki/syntax.creole | [
"Apache-2.0"
] |
.section
.list-group-flush
div (:class "list-group-item border-0")
.title "Constructor Call"
.container-fluid
.row
.col
.lang Java
pre.code $ code (@insert ../../code/java/classes/classes-00.java) $ :class java
.col
.lang Kotlin
pre.code $ code (@insert ../../code/kotlin/classes/classes-00.kt) $ :class kotlin
div (:class "list-group-item border-0")
.title "Class"
.container-fluid
.row
.col
.lang Java
pre.code $ code (@insert ../../code/java/classes/classes-01.java) $ :class java
.col
.lang Kotlin
pre.code $ code (@insert ../../code/kotlin/classes/classes-01.kt) $ :class kotlin
div (:class "list-group-item border-0")
.title "Open Class"
.container-fluid
.row
.col
.lang Java
pre.code $ code (@insert ../../code/java/classes/classes-02.java) $ :class java
.col
.lang Kotlin
pre.code $ code (@insert ../../code/kotlin/classes/classes-02.kt) $ :class kotlin
div (:class "list-group-item border-0")
.title "Final Attributes"
.container-fluid
.row
.col
.lang Java
pre.code $ code (@insert ../../code/java/classes/classes-03.java) $ :class java
.col
.lang Kotlin
pre.code $ code (@insert ../../code/kotlin/classes/classes-03.kt) $ :class kotlin
div (:class "list-group-item border-0")
.title "Primary Constructor"
.container-fluid
.row
.col
.lang Java
pre.code $ code (@insert ../../code/java/classes/classes-04.java) $ :class java
.col
.lang Kotlin
pre.code $ code (@insert ../../code/kotlin/classes/classes-04.kt) $ :class kotlin
div (:class "list-group-item border-0")
.title "Optional Arguments in Constructors"
.container-fluid
.row
.col
.lang Java
pre.code $ code (@insert ../../code/java/classes/classes-05.java) $ :class java
.col
.lang Kotlin
pre.code $ code (@insert ../../code/kotlin/classes/classes-05.kt) $ :class kotlin
div (:class "list-group-item border-0")
.title "Properties"
.container-fluid
.row
.col
.lang Java
pre.code $ code (@insert ../../code/java/classes/classes-06.java) $ :class java
.col
.lang Kotlin
pre.code $ code (@insert ../../code/kotlin/classes/classes-06.kt) $ :class kotlin
.section
.list-group-flush
div (:class "list-group-item border-0")
.title "Abstract Class"
.container-fluid
.row
.col
.lang Java
pre.code $ code (@insert ../../code/java/classes/classes-07.java) $ :class java
.col
.lang Kotlin
pre.code $ code (@insert ../../code/kotlin/classes/classes-07.kt) $ :class kotlin
div (:class "list-group-item border-0")
.title "Singleton"
.container-fluid
.row
.col
.lang Java
pre.code $ code (@insert ../../code/java/classes/classes-08.java) $ :class java
.col
.lang Kotlin
pre.code $ code (@insert ../../code/kotlin/classes/classes-08.kt) $ :class kotlin
div (:class "list-group-item border-0")
.title "Extensions"
.container-fluid
.row
.col
.lang Java
pre.code $ code (@insert ../../code/java/classes/classes-09.java) $ :class java
.col
.lang Kotlin
pre.code $ code (@insert ../../code/kotlin/classes/classes-09.kt) $ :class kotlin
div (:class "list-group-item border-0")
.title "Inner Class"
.container-fluid
.row
.col
.lang Java
pre.code $ code (@insert ../../code/java/classes/classes-010.java) $ :class java
.col
.lang Kotlin
pre.code $ code (@insert ../../code/kotlin/classes/classes-010.kt) $ :class kotlin
div (:class "list-group-item border-0")
.title "Nested Class"
.container-fluid
.row
.col
.lang Java
pre.code $ code (@insert ../../code/java/classes/classes-011.java) $ :class java
.col
.lang Kotlin
pre.code $ code (@insert ../../code/kotlin/classes/classes-011.kt) $ :class kotlin
div (:class "list-group-item border-0")
.title "Interface"
.container-fluid
.row
.col
.lang Java
pre.code $ code (@insert ../../code/java/classes/classes-012.java) $ :class java
.col
.lang Kotlin
pre.code $ code (@insert ../../code/kotlin/classes/classes-012.kt) $ :class kotlin
| Cirru | 4 | driver733/kot | cirru/classes.cirru | [
"MIT"
] |
from manimlib.animation.animation import Animation
from manimlib.mobject.numbers import DecimalNumber
from manimlib.utils.bezier import interpolate
class ChangingDecimal(Animation):
CONFIG = {
"suspend_mobject_updating": False,
}
def __init__(self, decimal_mob, number_update_func, **kwargs):
assert(isinstance(decimal_mob, DecimalNumber))
self.number_update_func = number_update_func
super().__init__(decimal_mob, **kwargs)
def interpolate_mobject(self, alpha):
self.mobject.set_value(
self.number_update_func(alpha)
)
class ChangeDecimalToValue(ChangingDecimal):
def __init__(self, decimal_mob, target_number, **kwargs):
start_number = decimal_mob.number
super().__init__(
decimal_mob,
lambda a: interpolate(start_number, target_number, a),
**kwargs
)
class CountInFrom(ChangingDecimal):
def __init__(self, decimal_mob, source_number=0, **kwargs):
start_number = decimal_mob.number
super().__init__(
decimal_mob,
lambda a: interpolate(source_number, start_number, a),
**kwargs
)
| Python | 5 | OrKedar/geo-manimgl-app | manimlib/animation/numbers.py | [
"MIT"
] |
module A {
var x = 2;
var y = 3;
proc foo() {
writeln("A.foo");
}
}
module B {
var y = 4;
}
module C {
public import A.{x as y, foo as bar};
}
module Z {
use C, B;
proc main() {
writeln(y);
bar();
}
}
| Chapel | 4 | jhh67/chapel | test/visibility/import/public/rename/multipleDefRenameError.chpl | [
"ECL-2.0",
"Apache-2.0"
] |
proc foo(args ...) {
writeln(args);
}
foo(int, "blah");
| Chapel | 3 | jhh67/chapel | test/functions/lydia/variadic-mix-type-var.chpl | [
"ECL-2.0",
"Apache-2.0"
] |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="layout" content="main" />
<title>Edit TestDomain</title>
</head>
<body>
<div class="nav">
<span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
<span class="menuButton"><g:link class="list" action="list">TestDomain List</g:link></span>
<span class="menuButton"><g:link class="create" action="create">New TestDomain</g:link></span>
</div>
<div class="body">
<h1>Edit TestDomain</h1>
<g:if test="${flash.message}">
<div class="message">${flash.message}</div>
</g:if>
<g:hasErrors bean="${testDomainInstance}">
<div class="errors">
<g:renderErrors bean="${testDomainInstance}" as="list" />
</div>
</g:hasErrors>
<g:form method="post" >
<input type="hidden" name="id" value="${testDomainInstance?.id}" />
<input type="hidden" name="version" value="${testDomainInstance?.version}" />
<div class="dialog">
<table>
<tbody>
<tr class="prop">
<td valign="top" class="name">
<label for="age">Age:</label>
</td>
<td valign="top" class="value ${hasErrors(bean:testDomainInstance,field:'age','errors')}">
<input type="text" id="age" name="age" value="${fieldValue(bean:testDomainInstance,field:'age')}" />
</td>
</tr>
<tr class="prop">
<td valign="top" class="name">
<label for="name">Name:</label>
</td>
<td valign="top" class="value ${hasErrors(bean:testDomainInstance,field:'name','errors')}">
<input type="text" id="name" name="name" value="${fieldValue(bean:testDomainInstance,field:'name')}"/>
</td>
</tr>
</tbody>
</table>
</div>
<div class="buttons">
<span class="button"><g:actionSubmit class="save" value="Update" /></span>
<span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
</div>
</g:form>
</div>
</body>
</html>
| Groovy Server Pages | 3 | timfel/netbeans | contrib/groovy.grailsproject/test/unit/data/projects/completion/grails-app/views/testDomain/edit.gsp | [
"Apache-2.0"
] |
Brainfuck program printing 202 (ascii) and taking longer time to run (by mazonka)
>+>+>+>+>++<[>[<+++>-
>>>>>
>+>+>+>+>++<[>[<+++>-
>>>>>
>+>+>+>+>++<[>[<+++>-
>>>>>
>+>+>+>+>++<[>[<+++>-
>>>>>
+++[->+++++<]>[-]<
<<<<<
]<<]>[-]
<<<<<
]<<]>[-]
<<<<<
]<<]>[-]
<<<<<
]<<]>.
| Brainfuck | 1 | RubenNL/brainheck | examples/bench/long.bf | [
"Apache-2.0"
] |
<!---================= Room Booking System / https://github.com/neokoenig =======================--->
<!--- Resources --->
<cfparam name="resources">
<Cfoutput>
#panel(title="All Resources")#
#linkTo(Text="<i class='glyphicon glyphicon-plus'></i> Create New Resource", class="btn btn-primary", action="add")#
<cfif resources.recordcount>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Type</th>
<th>Restricted?</th>
<th>Unique?</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<cfloop query="resources">
<cfoutput>
<tr>
<td>#id#</td>
<td>#h(name)#<br /><small>#h(description)#</small></td>
<td><code>#h(type)#</code></td>
<td>#tickorcross(len(restrictlocations))#</td>
<td>#tickorcross(isunique)#</td>
<td>
<div class="btn-group">
#linkTo(text="<i class='glyphicon glyphicon-edit'></i> Edit", class="btn btn-xs btn-info", action="edit", key=id)#
#linkTo(text="<i class='glyphicon glyphicon-trash'></i> Delete", class="btn btn-xs btn-danger", action="delete", key=id, confirm='Are you Sure?')#
</div>
</td>
</tr>
</cfoutput>
</cfloop>
</tbody>
</table>
<cfelse>
<p>No Resources available yet</p>
</cfif>
#panelEnd()#
</Cfoutput> | ColdFusion | 4 | fintecheando/RoomBooking | views/resources/index.cfm | [
"Apache-1.1"
] |
a ← 3 2 ⍴ ⍳ 5
b ← ⍉ a
c ← a +.× b
×/ +/ c
⍝ 1 3 5
⍝ 2 4 1
⍝
⍝ 1 2 5 11 7 -+-> 23
⍝ 3 4 11 25 19 -+-> 55
⍝ 5 1 7 19 26 -+-> 52
⍝ 65780
| APL | 3 | mbudde/apltail | tests/test13.apl | [
"MIT"
] |
=== 1.0.3 / 2012-08-29
* Support multibyte keyword
=== 1.0.2 / 2009-07-27
* Defaulting Item#uri to unescapedUrl
=== 1.0.0 / 2009-07-24
* Initial release | RDoc | 0 | yagosys/AlfredWorkflow.com | Sources/Workflows/ruby-china/ruby-1.8/gems/google-search-1.0.3/History.rdoc | [
"MIT"
] |
-- Copyright 2017 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.
--------------------------------------------------------------------------------
module Network.Grpc.Lib.Version where
import Data.ByteString
import Data.ByteString.Unsafe
#include <grpc/grpc.h>
{#fun pure unsafe grpc_version_string as version
{} -> `ByteString' unsafePackCString* #}
| C2hs Haskell | 3 | LaudateCorpus1/grpc-haskell | src/Network/Grpc/Lib/Version.chs | [
"Apache-2.0"
] |
module Main
import Control.Monad.Identity
import Control.Monad.Trans
import Data.Nat
import Data.String.Parser
import Data.String.Parser.Expression
%default partial
table : OperatorTable Nat
table =
[ [ Infix (token "^" $> power ) AssocRight]
, [ Infix (token "*" $> (*) ) AssocLeft ]
, [ Infix (token "+" $> (+) ) AssocLeft ]
]
table' : OperatorTable Integer
table' =
[ [ Infix (token "*" $> (*) ) AssocLeft
, Infix (token "/" $> div ) AssocLeft
]
, [ Infix (token "+" $> (+) ) AssocLeft
, Infix (token "-" $> (-) ) AssocLeft
]
]
mutual
term : Parser Nat
term = lexeme (natural <|> expr)
<?> "simple expression"
expr : Parser Nat
expr = buildExpressionParser Nat table term
mutual
term' : Parser Integer
term' = lexeme (integer <|> expr')
<?> "simple expression"
expr' : Parser Integer
expr' = buildExpressionParser Integer table' term'
run : Show a => Parser a -> String -> IO ()
run p s = case parse (p <* eos) s of
Left err => putStrLn err
Right (xs, _) => printLn xs
main : IO ()
main = do run natural "5678"
run integer "-3"
run expr "1+4^3^2^1"
run expr' "4 + 2 * 3"
run expr' "13-3+1*2-10/2"
| Idris | 4 | Qqwy/Idris2-Erlang | idris2/tests/chez/chez028/ExpressionParser.idr | [
"BSD-3-Clause"
] |
/*
javascript
*/
// welcome to the G-frame
<!-- @import "main/gframe.js" -->
// all the followings hold required routines for the G-Frame to work.
<!-- @import "main/audio.js" -->
<!-- @import "main/boot.js" -->
<!-- @import "main/clock.js" -->
<!-- @imports "main/control.js" -->
<!-- @import "main/input.js" -->
<!-- @importd "main/leadersboard.js" -->
<!-- @import "main/memory.js" -->
<!-- @importd "main/network.js" -->
<!-- @importd "main/output.js" -->
<!-- @import "main/reels.js" -->
<!-- @importd "main/sensors.js" -->
<!-- @import "main/segment.js" -->
<!-- @importd "main/topper.js" -->
<!-- @import "main/vfx.js" -->
// contains variables necessary for the game to work.
<!-- @import "roms/rom-program.js" -->
<!-- @import "roms/rom-sound.js" -->
<!-- @import "roms/rom-reels.js" -->
<!-- @import "roms/rom-vfx.js" -->
/*
debug
*/
| Kit | 2 | mandeptrai123/jackpot_five | public/assets/src/javascript/javascript.kit | [
"MIT"
] |
ruleset io.picolabs.ds {
meta {
description <<
An inter-ruleset key-value datastore system that can be added to and changes listened for using events.
It can also be queried.
>>
shares __testing, getItem, allDomainData, viewStore
provides getItem, allDomainData
}
global {
__testing = { "queries":
[ { "name": "__testing" }
, { "name": "getItem", "args": [ "domain","key" ] }
, { "name": "allDomainData", "args": [ "domain" ] }
, { "name": "viewStore", "args": [] }
] , "events":
[ { "domain": "wrangler", "type": "ds_update", "attrs":["domain","key","value"] },
{ "domain": "wrangler", "type": "ds_clear_data", "attrs":["domain","key"] }
//, { "domain": "d2", "type": "t2", "attrs": [ "a1", "a2" ] }
]
}
getItem = function(domain, key) {
ent:ds{[domain, key]}
}
allDomainData = function(domain) {
ent:ds{domain}
}
viewStore = function() {
ent:ds
}
}
rule set_up {
select when wrangler ruleset_added where rids >< meta:rid
always {
ent:ds := {};
raise wrangler event "ds_ready" attributes event:attrs
}
}
rule validateUpdateDataParams {
select when wrangler ds_update or
wrangler ds_clear_data
pre {
domain = event:attr("domain")
key = event:attr("key")
keyIsString = key && key.typeof() == "String"
domainIsString = domain && domain.typeof() == "String"
}
if keyIsString && domainIsString then
noop()
notfired {
raise wrangler event "unable_to_update_ds" attributes event:attrs.put({
"domainGiven": domain.as("Boolean"),
"keyGiven": key.as("Boolean"),
"keyIsString": keyIsString,
"domainIsString": domainIsString
});
last;
}
}
rule updateData {
select when wrangler ds_update
pre {
domain = event:attr("domain")
key = event:attr("key")
value = event:attr("value")
keyIsString = key && key.typeof() == "String"
domainIsString = domain && domain.typeof() == "String"
}
if keyIsString && domainIsString then
noop()
fired {
ent:ds{[domain, key]} := value;
raise wrangler event "ds_updated" attributes event:attrs.put({
"domain":domain,
"key":key,
"value":value
})
}
}
/*For use with testing tab. Setting the value to null in updateData works as well*/
rule clearData {
select when wrangler ds_clear_data
pre {
domain = event:attr("domain")
key = event:attr("key")
value = event:attr("value")
}
always {
clear ent:ds{[domain, key]};
raise wrangler event "ds_updated" attributes event:attrs.put({
"domain":domain,
"key":key,
"value":null
})
}
}
rule updateDomain {
select when wrangler ds_assign_map_to_domain
pre {
domain = event:attr("domain")
newMap = event:attr("map")
domainIsString = domain.typeof() == "String"
newMapIsMap = newMap.typeof() == "Map"
}
if domain && newMap && domainIsString && newMapIsMap then
noop()
fired {
ent:ds{domain} := newMap;
raise wrangler event "ds_domain_updated" attributes event:attrs.put({
"domain": domain
})
}
}
}
| KRL | 5 | CambodianCoder/pico-engine | packages/pico-engine/legacy/krl/io.picolabs.ds.krl | [
"MIT"
] |
(ns promitto.lib.collections
(:require
[promitto.lib.utils :refer [promise?]]
[promitto.lib.deferred :refer [deferred resolved]]))
(defn ^:private counter
[length]
(let [count 0]
(fn []
(set! count (+ count 1))
(? (- length count) 0))))
(defn ^:private pusher
[results]
(fn [index data]
(set! (aget results index) data)))
(defn ^promise all
"Combines multiple promises into a single promise that is
resolved when all of the input promises are resolved"
[arr]
(if (.is-array Array arr)
(let [reason nil
results []
rejected false
defer (deferred)
pool (.slice arr)
push (pusher results)
count (counter (.-length pool))]
(.for-each pool
(fn [promise index]
(if (promise? promise)
(do
(.then promise
(fn [data]
(cond (not rejected)
(push index data)))
(fn [error]
(set! rejected true)
(set! reason error)))
(.finally promise
(fn []
(.notify defer index)
(cond (or (count) rejected)
(if rejected
(.reject defer reason)
(.resolve defer results))))))
(do
(count) (push index null)))))
(.-promise defer)) (resolved)))
| wisp | 5 | h2non/promitto | src/collections.wisp | [
"MIT"
] |
[38;2;255;255;255m%[0m[38;2;249;38;114mhtml[0m
[38;2;248;248;242m [0m[38;2;255;255;255m%[0m[38;2;249;38;114mhead[0m
[38;2;248;248;242m [0m[38;2;255;255;255m%[0m[38;2;249;38;114mtitle[0m[38;2;248;248;242m Test Title[0m
[38;2;248;248;242m [0m[38;2;255;255;255m%[0m[38;2;249;38;114mbody[0m
[38;2;248;248;242m [0m[38;2;255;255;255m%[0m[38;2;249;38;114mnavigation[0m
[38;2;248;248;242m [0m[38;2;248;248;242m=[0m[38;2;248;248;242m [0m[38;2;102;217;239mrender[0m[38;2;248;248;242m [0m[38;2;246;240;128m:[0m[38;2;246;240;128mpartial[0m[38;2;248;248;242m [0m[38;2;248;248;242m=>[0m[38;2;248;248;242m [0m[38;2;249;38;114m"[0m[38;2;230;219;116mnavigation_top[0m[38;2;249;38;114m"[0m
[38;2;248;248;242m [0m[38;2;255;255;255m%[0m[38;2;249;38;114mh1[0m[38;2;248;248;242m=[0m[38;2;248;248;242m page[0m[38;2;248;248;242m.[0m[38;2;248;248;242mtitle[0m
[38;2;248;248;242m [0m[38;2;255;255;255m%[0m[38;2;249;38;114mp[0m
[38;2;248;248;242m Here is a point to emphasize:[0m
[38;2;248;248;242m [0m[38;2;255;255;255m%[0m[38;2;249;38;114mstrong[0m[38;2;249;38;114m.highlighted[0m[38;2;249;38;114m#search_item_found[0m[38;2;248;248;242m=[0m[38;2;248;248;242m item1[0m[38;2;248;248;242m.[0m[38;2;248;248;242mtext[0m
[38;2;248;248;242m [0m[38;2;255;255;255m%[0m[38;2;249;38;114mspan[0m[38;2;248;248;242m{[0m[38;2;246;240;128m:[0m[38;2;246;240;128mclass[0m[38;2;248;248;242m [0m[38;2;248;248;242m=>[0m[38;2;248;248;242m [0m[38;2;249;38;114m"[0m[38;2;230;219;116mfancy[0m[38;2;249;38;114m"[0m[38;2;248;248;242m,[0m[38;2;248;248;242m [0m[38;2;246;240;128m:[0m[38;2;246;240;128mid[0m[38;2;248;248;242m [0m[38;2;248;248;242m=>[0m[38;2;248;248;242m [0m[38;2;249;38;114m"[0m[38;2;230;219;116mfancy1[0m[38;2;249;38;114m"[0m[38;2;248;248;242m}[0m[38;2;248;248;242m=[0m[38;2;248;248;242m item2[0m[38;2;248;248;242m.[0m[38;2;248;248;242mtext[0m
[38;2;248;248;242m [0m[38;2;249;38;114m.special[0m[38;2;248;248;242m=[0m[38;2;248;248;242m special[0m[38;2;248;248;242m.[0m[38;2;248;248;242mtext[0m
[38;2;248;248;242m [0m[38;2;255;255;255m%[0m[38;2;249;38;114mol[0m
[38;2;248;248;242m [0m[38;2;255;255;255m%[0m[38;2;249;38;114mli[0m[38;2;248;248;242m First[0m
[38;2;248;248;242m [0m[38;2;255;255;255m%[0m[38;2;249;38;114mli[0m[38;2;248;248;242m Second[0m
| Haml | 3 | purveshpatel511/bat | tests/syntax-tests/highlighted/Ruby Haml/test.html.haml | [
"Apache-2.0",
"MIT"
] |
using System;
using Avalonia.Media;
using Avalonia.Media.Transformation;
namespace Avalonia.Animation.Animators
{
public class TransformOperationsAnimator : Animator<TransformOperations>
{
public TransformOperationsAnimator()
{
Validate = ValidateTransform;
}
public override TransformOperations Interpolate(double progress, TransformOperations oldValue, TransformOperations newValue)
{
var oldTransform = EnsureOperations(oldValue);
var newTransform = EnsureOperations(newValue);
return TransformOperations.Interpolate(oldTransform, newTransform, progress);
}
internal static TransformOperations EnsureOperations(ITransform value)
{
return value as TransformOperations ?? TransformOperations.Identity;
}
private void ValidateTransform(AnimatorKeyFrame kf)
{
if (!(kf.Value is TransformOperations))
{
throw new InvalidOperationException($"All keyframes must be of type {typeof(TransformOperations)}.");
}
}
}
}
| C# | 5 | jangernert/Avalonia | src/Avalonia.Visuals/Animation/Animators/TransformOperationsAnimator.cs | [
"MIT"
] |
<p>Include 1 (img):</p><p><img src="photo.jpg" alt="Photo" /></p><p>Include 2 (pre):</p><pre>* item 1
''item''
== dd ==
</pre><ul><li>item 2</li></ul>
| Creole | 1 | jquorning/ada-wiki | regtests/expect/wiki-html/template-1.creole | [
"Apache-2.0"
] |
require! \assert
require! \../src/HighlightedText
{partition-string} = require \prelude-extension
# React
{create-element} = require \react
{div, option, span} = require \react-dom-factories
{find-DOM-node} = require \react-dom
# TestUtils
{find-rendered-DOM-component-with-class, scry-rendered-DOM-components-with-class,
find-rendered-DOM-component-with-tag, Simulate:{change, click, focus, key-down}}:TestUtils = require \react-dom/test-utils
create-highlighted-text = (props = {}) ->
TestUtils.render-into-document do
create-element do
HighlightedText
{
partitions: partition-string \application, \a
text: \application
} <<< props
describe "HighlightedText", ->
specify "must render partitioned strings", ->
highlighted-text = create-highlighted-text!
assert.equal (scry-rendered-DOM-components-with-class highlighted-text, \highlight).length, 2
specify "must apply styles to the root node", ->
highlighted-text = create-highlighted-text do
style: display: \inline-block
assert.equal (find-DOM-node highlighted-text).style.display, \inline-block
specify "must apply props.highlightStyle when highlight is true", ->
highlighted-text = create-highlighted-text do
highlight-style: font-weight: \bold
assert.equal (find-DOM-node (scry-rendered-DOM-components-with-class highlighted-text, \highlight).0).style.font-weight, \bold | LiveScript | 4 | santiagoGuti/react-selectize | test/highlighted-text.ls | [
"Apache-2.0"
] |
<nav class="navbar has-shadow">
<div class="container">
<div class="navbar-tabs">
<a class="navbar-item is-tab {% if page.doc-subtab == 'columns' %}is-active{% endif %}" href="{{ site.url }}/documentation/grid/columns/">
Columns
</a>
<a class="navbar-item is-tab {% if page.doc-subtab == 'tiles' %}is-active{% endif %}" href="{{ site.url }}/documentation/grid/tiles/">
Tiles
</a>
</div>
</nav>
| HTML | 4 | kalpitzeta/bulma | docs/_includes/subnav/subnav-grid.html | [
"MIT"
] |
<html>
<head>
<title>frame2-3</title>
</head>
<body>
<h1>index > frame2 > frame2-3</h1>
</body>
</html>
| HTML | 2 | ant0ine/phantomjs | test/webpage-spec-frames/frame2-3.html | [
"BSD-3-Clause"
] |
package com.thealgorithms.maths;
/**
* Amicable numbers are two different numbers so related that the sum of the
* proper divisors of each is equal to the other number. (A proper divisor of a
* number is a positive factor of that number other than the number itself. For
* example, the proper divisors of 6 are 1, 2, and 3.) A pair of amicable
* numbers constitutes an aliquot sequence of period 2. It is unknown if there
* are infinitely many pairs of amicable numbers. *
*
* <p>
* link: https://en.wikipedia.org/wiki/Amicable_numbers *
*
* <p>
* Simple Example : (220,284) 220 is divisible by {1,2,4,5,10,11,20,22,44,55,110
* } <- Sum = 284
* 284 is divisible by -> 1,2,4,71,142 and the Sum of that is. Yes right you
* probably expected it 220
*/
public class AmicableNumber {
public static void main(String[] args) {
AmicableNumber.findAllInRange(1, 3000);
/* Res -> Int Range of 1 till 3000there are 3Amicable_numbers These are 1: = ( 220,284) 2: = ( 1184,1210)
3: = ( 2620,2924) So it worked */
}
/**
* @param startValue
* @param stopValue
* @return
*/
static void findAllInRange(int startValue, int stopValue) {
/* the 2 for loops are to avoid to double check tuple. For example (200,100) and (100,200) is the same calculation
* also to avoid is to check the number with it self. a number with itself is always a AmicableNumber
* */
StringBuilder res = new StringBuilder();
int countofRes = 0;
for (int i = startValue; i < stopValue; i++) {
for (int j = i + 1; j <= stopValue; j++) {
if (isAmicableNumber(i, j)) {
countofRes++;
res.append("" + countofRes + ": = ( " + i + "," + j + ")" + "\t");
}
}
}
res.insert(
0,
"Int Range of "
+ startValue
+ " till "
+ stopValue
+ " there are "
+ countofRes
+ " Amicable_numbers.These are \n ");
System.out.println(res.toString());
}
/**
* Check if {@code numberOne and numberTwo } are AmicableNumbers or not
*
* @param numberOne numberTwo
* @return {@code true} if {@code numberOne numberTwo} isAmicableNumbers
* otherwise false
*/
static boolean isAmicableNumber(int numberOne, int numberTwo) {
return ((recursiveCalcOfDividerSum(numberOne, numberOne) == numberTwo
&& numberOne == recursiveCalcOfDividerSum(numberTwo, numberTwo)));
}
/**
* calculated in recursive calls the Sum of all the Dividers beside it self
*
* @param number div = the next to test dividely by using the modulo
* operator
* @return sum of all the dividers
*/
static int recursiveCalcOfDividerSum(int number, int div) {
if (div == 1) {
return 0;
} else if (number % --div == 0) {
return recursiveCalcOfDividerSum(number, div) + div;
} else {
return recursiveCalcOfDividerSum(number, div);
}
}
}
| Java | 4 | JohnTitor001/Java | src/main/java/com/thealgorithms/maths/AmicableNumber.java | [
"MIT"
] |
;; NOTE: This file is based on r2-forward.r 2.100.80.4 but stripped of the
;; changelog and most functions.
;;
;; Red/System's compiler requires REBOL 2.7.6 as baseline. This file hold
;; functions not part of REBOL 2.7.6 which are used in the implementation of
;; Red/System.
REBOL [
Title: "REBOL 3 Forward Compatibility Functions"
Name: 'r2-forward
Type: 'module
Version: 2.100.80.4.1
Date: 23-Feb-2011
File: %r2-forward.r
Author: "Brian Hawley" ; BrianH
Purpose: "Make REBOL 2 more compatible with REBOL 3."
Exports: [
map-each
collect
] ; No Globals to limit any potential damage.
License: {
Copyright (c) 2008-2009 Brian Hawley
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.
} ; MIT
]
; MAP-EACH with set-words, best datatype! support and /into (ideal full version)
map-each: func [
"Evaluates a block for each value(s) in a series and returns them as a block."
[throw catch]
'word [word! block!] "Word or block of words to set each time (local)"
data [block!] "The series to traverse"
body [block!] "Block to evaluate each time"
/into "Collect into a given series, rather than a new block"
output [any-block! any-string!] "The series to output to" ; Not image!
/local init len x
][
; Shortcut return for empty data
either empty? data [any [output make block! 0]] [
; BIND/copy word and body
word: either block? word [
if empty? word [throw make error! [script invalid-arg []]]
copy/deep word ; /deep because word is rebound before errors checked
] [reduce [word]]
word: use word reduce [word]
body: bind/copy body first word
; Build init code
init: none
parse word [any [word! | x: set-word! (
unless init [init: make block! 4]
; Add [x: at data index] to init, and remove from word
insert insert insert tail init first x [at data] index? x
remove x
) :x | x: skip (
throw make error! reduce ['script 'expect-set [word! set-word!] type? first x]
)]]
len: length? word ; Can be zero now (for advanced code tricks)
; Create the output series if not specified
unless into [output: make block! divide length? data max 1 len]
; Process the data (which is not empty at this point)
until [ ; Note: output: insert/only output needed for list! output
set word data do init
unless unset? set/any 'x do body [output: insert/only output :x]
tail? data: skip data len
]
; Return the output and clean up memory references
also either into [output] [head output] (
set [word data body output init x] none
)
]
]
; Note: This is pretty fast by R2 mezzanine loop standards, native in R3.
collect: func [
"Evaluates a block, storing values via KEEP function, and returns block of collected values."
body [block!] "Block to evaluate"
/into "Insert into a buffer instead (returns position after insert)"
output [series!] "The buffer series (modified)"
][ ; Note: Needs new FUNC (defined above)
unless output [output: make block! 16]
do func [keep] body func [value /only] [
output: either only [insert/only output :value] [insert output :value]
:value
]
either into [output] [head output]
]
; R3 version based on a discussion with Gregg and Gabriele in AltME.
spec-of: func [fun [any-function!]][first :fun]
body-of: func [fun [any-function!]][second :fun]
function: func [
"Defines a function with all set-words as locals."
[catch]
spec [block!] {Help string (opt) followed by arg words (and opt type and string)}
body [block!] "The body block of the function"
/with "Define or use a persistent object (self)"
object [object! block!] "The object or spec"
/extern words [block!] "These words are not local"
/local r ws wb a
][
spec: copy/deep spec
body: copy/deep body
ws: make block! length? spec
parse spec [any [
set-word! | set a any-word! (insert tail ws to-word a) | skip
]]
if with [
unless object? object [object: make object! object]
bind body object
insert tail ws first object
]
insert tail ws words
wb: make block! 12
parse body r: [any [
set a set-word! (insert tail wb to-word a) |
hash! | into r | skip
]]
unless empty? wb: exclude wb ws [
remove find wb 'local
unless find spec /local [insert tail spec /local]
insert tail spec wb
]
throw-on-error [make function! spec body]
]
has: func [
{A shortcut to define a function that has local variables but no arguments.}
locals [block!]
body [block!]
][
func head insert copy locals /local body
]
unless value? 'quote [
quote: func [
"Returns the value passed to it without evaluation."
:value [any-type!]
][
get/any 'value
]
] | R | 5 | GalenIvanov/red | system/utils/r2-forward.r | [
"BSL-1.0",
"BSD-3-Clause"
] |
DROP TABLE IF EXISTS src_00942;
DROP TABLE IF EXISTS view_table_00942;
DROP TABLE IF EXISTS new_view_table_00942;
CREATE TABLE src_00942 (x UInt8) ENGINE = Null;
CREATE MATERIALIZED VIEW view_table_00942 Engine = Memory AS SELECT * FROM src_00942;
INSERT INTO src_00942 VALUES (1), (2), (3);
SELECT * FROM view_table_00942 ORDER BY x;
--Check if we can rename the view and if we can still fetch datas
RENAME TABLE view_table_00942 TO new_view_table_00942;
SELECT * FROM new_view_table_00942 ORDER BY x;
DROP TABLE src_00942;
DROP TABLE IF EXISTS view_table_00942;
DROP TABLE IF EXISTS new_view_table_00942;
| SQL | 3 | pdv-ru/ClickHouse | tests/queries/0_stateless/00942_mv_rename_table.sql | [
"Apache-2.0"
] |
#define BLUR_FORMAT unorm float4
#define BLUR_WIDE
#include "blur_bilateral_float4CS.hlsl"
| HLSL | 1 | rohankumardubey/WickedEngine | WickedEngine/shaders/blur_bilateral_wide_unorm4CS.hlsl | [
"MIT"
] |
open tactic list nat name
set_option trace.app_builder true
set_option pp.all true
meta definition mk_ite (c a b : expr) : tactic expr :=
mk_mapp `ite [some c, none, none, some a, some b]
example (a b : nat) : nat :=
by do a ← get_local `a,
b ← get_local `b,
mk_app `has_add.add [a, b] >>= trace,
mk_app `has_mul.mul [a, b] >>= trace,
mk_app `has_sub.sub [a, b] >>= trace,
c ← mk_app `eq [a, b],
trace c,
mk_ite c a b >>= trace,
mk_ite c b a >>= trace,
assumption,
return ()
| Lean | 4 | JLimperg/lean | tests/lean/run/app_builder_tac1.lean | [
"Apache-2.0"
] |
(kicad_pcb (version 20171130) (host pcbnew "(5.1.8)-1")
(general
(thickness 1.6)
(drawings 52)
(tracks 220)
(zones 0)
(modules 21)
(nets 39)
)
(page A4)
(layers
(0 Top signal)
(31 Bottom signal)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user hide)
(47 F.CrtYd user hide)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.254)
(trace_clearance 0.1524)
(zone_clearance 0.254)
(zone_45_only no)
(trace_min 0.254)
(via_size 0.8)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(edge_width 0.05)
(segment_width 0.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.12)
(mod_text_size 1 1)
(mod_text_width 0.16)
(pad_size 1.524 1.524)
(pad_drill 0.8128)
(pad_to_mask_clearance 0)
(aux_axis_origin 0 0)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 0x010f0_ffffffff)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "./gerber"))
)
(net 0 "")
(net 1 GND)
(net 2 +5V)
(net 3 "Net-(IC3-Pad15)")
(net 4 /MOSI)
(net 5 /LCD_CLK)
(net 6 /SCK)
(net 7 "Net-(IC3-Pad9)")
(net 8 /D5)
(net 9 /D6)
(net 10 /D4)
(net 11 /E)
(net 12 /D7)
(net 13 /RS)
(net 14 "Net-(IC3-Pad1)")
(net 15 /BKLT_GND)
(net 16 "Net-(J1-Pad10)")
(net 17 "Net-(J1-Pad9)")
(net 18 "Net-(J1-Pad8)")
(net 19 "Net-(J1-Pad7)")
(net 20 "Net-(J1-Pad3)")
(net 21 /LCD_BKLT)
(net 22 /BUTTONS)
(net 23 /LED1)
(net 24 "Net-(LED1-PadA)")
(net 25 "Net-(LED2-PadA)")
(net 26 "Net-(LED3-PadA)")
(net 27 "Net-(R2-Pad1)")
(net 28 "Net-(R8-Pad1)")
(net 29 "Net-(R9-Pad1)")
(net 30 "Net-(R11-Pad1)")
(net 31 "Net-(S1-Pad2)")
(net 32 "Net-(S1-Pad4)")
(net 33 "Net-(S2-Pad2)")
(net 34 "Net-(S2-Pad4)")
(net 35 "Net-(S3-Pad2)")
(net 36 "Net-(S3-Pad4)")
(net 37 "Net-(S4-Pad2)")
(net 38 "Net-(S4-Pad4)")
(net_class Default "This is the default net class."
(clearance 0.1524)
(trace_width 0.254)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(diff_pair_width 0.254)
(diff_pair_gap 0.25)
(add_net +5V)
(add_net /BKLT_GND)
(add_net /BUTTONS)
(add_net /D4)
(add_net /D5)
(add_net /D6)
(add_net /D7)
(add_net /E)
(add_net /LCD_BKLT)
(add_net /LCD_CLK)
(add_net /LED1)
(add_net /MOSI)
(add_net /RS)
(add_net /SCK)
(add_net GND)
(add_net "Net-(IC3-Pad1)")
(add_net "Net-(IC3-Pad15)")
(add_net "Net-(IC3-Pad9)")
(add_net "Net-(J1-Pad10)")
(add_net "Net-(J1-Pad3)")
(add_net "Net-(J1-Pad7)")
(add_net "Net-(J1-Pad8)")
(add_net "Net-(J1-Pad9)")
(add_net "Net-(LED1-PadA)")
(add_net "Net-(LED2-PadA)")
(add_net "Net-(LED3-PadA)")
(add_net "Net-(R11-Pad1)")
(add_net "Net-(R2-Pad1)")
(add_net "Net-(R8-Pad1)")
(add_net "Net-(R9-Pad1)")
(add_net "Net-(S1-Pad2)")
(add_net "Net-(S1-Pad4)")
(add_net "Net-(S2-Pad2)")
(add_net "Net-(S2-Pad4)")
(add_net "Net-(S3-Pad2)")
(add_net "Net-(S3-Pad4)")
(add_net "Net-(S4-Pad2)")
(add_net "Net-(S4-Pad4)")
)
(module LED3MM (layer Top) (tedit 5FCAA039) (tstamp 5FCA3E82)
(at 180.8861 91.3511)
(descr "<B>LED</B><p>\n3 mm, round")
(path /5D5C779E)
(fp_text reference LED3 (at -1.8161 -2.413) (layer F.SilkS)
(effects (font (size 0.9652 0.9652) (thickness 0.125476)) (justify left bottom))
)
(fp_text value GRN (at -1.5621 3.3909) (layer F.SilkS)
(effects (font (size 0.9652 0.9652) (thickness 0.125476)) (justify left bottom))
)
(fp_line (start 1.5748 1.27) (end 1.5748 -1.27) (layer F.Fab) (width 0.254))
(fp_arc (start 0 0.000083) (end -2.032 0) (angle -31.60822) (layer F.Fab) (width 0.254))
(fp_arc (start 0 0.000002) (end -2.032 0) (angle 28.301701) (layer F.Fab) (width 0.254))
(fp_arc (start -0.000056 0) (end -1.7643 1.0082) (angle -60.255215) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.000037 0) (end 0 2.032) (angle -49.763022) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.00006 0) (end -1.7929 -0.9562) (angle 61.926949) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.000012 0) (end 0 -2.032) (angle 50.193108) (layer F.SilkS) (width 0.254))
(fp_arc (start 0 0) (end 0 1.016) (angle -90) (layer F.Fab) (width 0.1524))
(fp_arc (start 0 0) (end 0 0.635) (angle -90) (layer F.Fab) (width 0.1524))
(fp_arc (start 0 0) (end -1.016 0) (angle 90) (layer F.Fab) (width 0.1524))
(fp_arc (start 0 0) (end -0.635 0) (angle 90) (layer F.Fab) (width 0.1524))
(fp_arc (start 0.000008 0) (end -1.203 0.9356) (angle -52.126876) (layer F.SilkS) (width 0.1524))
(fp_arc (start -0.000008 0) (end 0 1.524) (angle -52.126876) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0 0) (end -1.2192 -0.9144) (angle 53.130102) (layer F.SilkS) (width 0.1524))
(fp_arc (start -0.000034 0) (end 0 -1.524) (angle 54.461337) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0 -0.000004) (end 1.1708 0.9756) (angle -39.80361) (layer F.Fab) (width 0.1524))
(fp_arc (start 0 0.000014) (end 1.1571 -0.9918) (angle 40.601165) (layer F.Fab) (width 0.1524))
(fp_arc (start 0 0.000063) (end -1.524 0) (angle -41.633208) (layer F.Fab) (width 0.1524))
(fp_arc (start 0 0.000004) (end -1.524 0) (angle 39.80361) (layer F.Fab) (width 0.1524))
(pad K thru_hole circle (at 1.27 0 45) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 1 GND) (solder_mask_margin 0.1016))
(pad A thru_hole circle (at -1.27 0) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 26 "Net-(LED3-PadA)") (solder_mask_margin 0.1016))
)
(module 0204_7 (layer Bottom) (tedit 5FCA6FCA) (tstamp 5FCA3EBD)
(at 133.8961 115.4811 180)
(descr "<b>RESISTOR</b><p>\ntype 0204, grid 7.5 mm")
(path /3A554FF3)
(fp_text reference R9 (at -2.7559 1.2954) (layer B.SilkS)
(effects (font (size 0.94107 0.94107) (thickness 0.122339)) (justify left bottom mirror))
)
(fp_text value 8k2 (at -1.27 -0.4826) (layer B.SilkS)
(effects (font (size 0.94107 0.94107) (thickness 0.122339)) (justify left bottom mirror))
)
(fp_poly (pts (xy -2.921 -0.254) (xy -2.54 -0.254) (xy -2.54 0.254) (xy -2.921 0.254)) (layer B.SilkS) (width 0))
(fp_poly (pts (xy 2.54 -0.254) (xy 2.921 -0.254) (xy 2.921 0.254) (xy 2.54 0.254)) (layer B.SilkS) (width 0))
(fp_line (start 2.54 -0.762) (end 2.54 0.762) (layer B.SilkS) (width 0.1524))
(fp_line (start 2.286 -1.016) (end 1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 2.286 1.016) (end 1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 -0.889) (end -1.778 -0.889) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 -0.889) (end 1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 0.889) (end -1.778 0.889) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 0.889) (end 1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.778 -0.889) (end -1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.286 -1.016) (end -1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.778 0.889) (end -1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.286 1.016) (end -1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.54 -0.762) (end -2.54 0.762) (layer B.SilkS) (width 0.1524))
(fp_line (start -3.81 0) (end -2.921 0) (layer B.Fab) (width 0.508))
(fp_line (start 3.81 0) (end 2.921 0) (layer B.Fab) (width 0.508))
(fp_line (start -5.08 1.524) (end 5.08 1.524) (layer B.CrtYd) (width 0.05))
(fp_line (start 5.08 1.524) (end 5.08 -1.524) (layer B.CrtYd) (width 0.05))
(fp_line (start 5.08 -1.524) (end -5.08 -1.524) (layer B.CrtYd) (width 0.05))
(fp_line (start -5.08 -1.524) (end -5.08 1.524) (layer B.CrtYd) (width 0.05))
(fp_arc (start 2.286 0.762) (end 2.286 1.016) (angle -90) (layer B.SilkS) (width 0.1524))
(fp_arc (start 2.286 -0.762) (end 2.286 -1.016) (angle 90) (layer B.SilkS) (width 0.1524))
(fp_arc (start -2.286 -0.762) (end -2.54 -0.762) (angle 90) (layer B.SilkS) (width 0.1524))
(fp_arc (start -2.286 0.762) (end -2.54 0.762) (angle -90) (layer B.SilkS) (width 0.1524))
(pad 2 thru_hole circle (at 3.81 0 180) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 2 +5V) (solder_mask_margin 0.1016))
(pad 1 thru_hole circle (at -3.81 0 180) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 29 "Net-(R9-Pad1)") (solder_mask_margin 0.1016))
)
(module C025-025X050 (layer Bottom) (tedit 0) (tstamp 5FCA3D76)
(at 117.3861 97.7011 90)
(descr "<b>CAPACITOR</b><p>\ngrid 2.5 mm, outline 2.5 x 5 mm")
(path /489D763B)
(fp_text reference C10 (at -2.286 1.524 90) (layer B.SilkS) hide
(effects (font (size 1.2065 1.2065) (thickness 0.127)) (justify right bottom mirror))
)
(fp_text value 0.1u (at 1.9431 -1.5621 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(fp_line (start -2.159 1.27) (end 2.159 1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 2.159 -1.27) (end -2.159 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 2.413 1.016) (end 2.413 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.413 1.016) (end -2.413 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 0.762 0) (end 0.381 0) (layer B.Fab) (width 0.1524))
(fp_line (start 0.381 0) (end 0.254 0) (layer B.SilkS) (width 0.1524))
(fp_line (start 0.254 0) (end 0.254 0.762) (layer B.SilkS) (width 0.254))
(fp_line (start 0.254 0) (end 0.254 -0.762) (layer B.SilkS) (width 0.254))
(fp_line (start -0.254 0.762) (end -0.254 0) (layer B.SilkS) (width 0.254))
(fp_line (start -0.254 0) (end -0.254 -0.762) (layer B.SilkS) (width 0.254))
(fp_line (start -0.254 0) (end -0.381 0) (layer B.SilkS) (width 0.1524))
(fp_line (start -0.381 0) (end -0.762 0) (layer B.Fab) (width 0.1524))
(fp_arc (start 2.159 1.016) (end 2.159 1.27) (angle -90) (layer B.SilkS) (width 0.1524))
(fp_arc (start -2.159 1.016) (end -2.413 1.016) (angle -90) (layer B.SilkS) (width 0.1524))
(fp_arc (start 2.159 -1.016) (end 2.159 -1.27) (angle 90) (layer B.SilkS) (width 0.1524))
(fp_arc (start -2.159 -1.016) (end -2.413 -1.016) (angle 90) (layer B.SilkS) (width 0.1524))
(pad 1 thru_hole circle (at -1.27 0 90) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 2 +5V) (solder_mask_margin 0.1016))
(pad 2 thru_hole circle (at 1.27 0 90) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 1 GND) (solder_mask_margin 0.1016))
)
(module 1X16 (layer Top) (tedit 0) (tstamp 5FCA3D8B)
(at 133.8961 86.2711)
(descr "<b>PIN HEADER</b>")
(path /95C56520)
(fp_text reference J1 (at 20.7899 -0.0508) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(fp_text value LCD (at 20.6629 1.7399) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(fp_poly (pts (xy 18.796 0.254) (xy 19.304 0.254) (xy 19.304 -0.254) (xy 18.796 -0.254)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -19.304 0.254) (xy -18.796 0.254) (xy -18.796 -0.254) (xy -19.304 -0.254)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -16.764 0.254) (xy -16.256 0.254) (xy -16.256 -0.254) (xy -16.764 -0.254)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -14.224 0.254) (xy -13.716 0.254) (xy -13.716 -0.254) (xy -14.224 -0.254)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -11.684 0.254) (xy -11.176 0.254) (xy -11.176 -0.254) (xy -11.684 -0.254)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -9.144 0.254) (xy -8.636 0.254) (xy -8.636 -0.254) (xy -9.144 -0.254)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -6.604 0.254) (xy -6.096 0.254) (xy -6.096 -0.254) (xy -6.604 -0.254)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -4.064 0.254) (xy -3.556 0.254) (xy -3.556 -0.254) (xy -4.064 -0.254)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -1.524 0.254) (xy -1.016 0.254) (xy -1.016 -0.254) (xy -1.524 -0.254)) (layer F.Fab) (width 0))
(fp_poly (pts (xy 1.016 0.254) (xy 1.524 0.254) (xy 1.524 -0.254) (xy 1.016 -0.254)) (layer F.Fab) (width 0))
(fp_poly (pts (xy 3.556 0.254) (xy 4.064 0.254) (xy 4.064 -0.254) (xy 3.556 -0.254)) (layer F.Fab) (width 0))
(fp_poly (pts (xy 6.096 0.254) (xy 6.604 0.254) (xy 6.604 -0.254) (xy 6.096 -0.254)) (layer F.Fab) (width 0))
(fp_poly (pts (xy 8.636 0.254) (xy 9.144 0.254) (xy 9.144 -0.254) (xy 8.636 -0.254)) (layer F.Fab) (width 0))
(fp_poly (pts (xy 11.176 0.254) (xy 11.684 0.254) (xy 11.684 -0.254) (xy 11.176 -0.254)) (layer F.Fab) (width 0))
(fp_poly (pts (xy 13.716 0.254) (xy 14.224 0.254) (xy 14.224 -0.254) (xy 13.716 -0.254)) (layer F.Fab) (width 0))
(fp_poly (pts (xy 16.256 0.254) (xy 16.764 0.254) (xy 16.764 -0.254) (xy 16.256 -0.254)) (layer F.Fab) (width 0))
(fp_line (start 18.415 1.27) (end 17.78 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 19.685 1.27) (end 18.415 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 20.32 0.635) (end 19.685 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 20.32 -0.635) (end 20.32 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 19.685 -1.27) (end 20.32 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 18.415 -1.27) (end 19.685 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 17.78 -0.635) (end 18.415 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -18.415 1.27) (end -19.685 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -20.32 0.635) (end -19.685 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -19.685 -1.27) (end -20.32 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -20.32 -0.635) (end -20.32 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -17.145 1.27) (end -17.78 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -15.875 1.27) (end -17.145 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -15.24 0.635) (end -15.875 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -15.24 -0.635) (end -15.24 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -15.875 -1.27) (end -15.24 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -17.145 -1.27) (end -15.875 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -17.78 -0.635) (end -17.145 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -17.78 0.635) (end -18.415 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -17.78 -0.635) (end -17.78 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -18.415 -1.27) (end -17.78 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -19.685 -1.27) (end -18.415 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -10.795 1.27) (end -12.065 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -12.7 0.635) (end -12.065 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -12.065 -1.27) (end -12.7 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -14.605 1.27) (end -15.24 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -13.335 1.27) (end -14.605 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -12.7 0.635) (end -13.335 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -12.7 -0.635) (end -12.7 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -13.335 -1.27) (end -12.7 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -14.605 -1.27) (end -13.335 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -15.24 -0.635) (end -14.605 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -9.525 1.27) (end -10.16 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -8.255 1.27) (end -9.525 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -7.62 0.635) (end -8.255 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -7.62 -0.635) (end -7.62 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -8.255 -1.27) (end -7.62 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -9.525 -1.27) (end -8.255 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -10.16 -0.635) (end -9.525 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -10.16 0.635) (end -10.795 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -10.16 -0.635) (end -10.16 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -10.795 -1.27) (end -10.16 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -12.065 -1.27) (end -10.795 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -3.175 1.27) (end -4.445 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -5.08 0.635) (end -4.445 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -4.445 -1.27) (end -5.08 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -6.985 1.27) (end -7.62 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -5.715 1.27) (end -6.985 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -5.08 0.635) (end -5.715 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -5.08 -0.635) (end -5.08 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -5.715 -1.27) (end -5.08 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -6.985 -1.27) (end -5.715 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -7.62 -0.635) (end -6.985 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.905 1.27) (end -2.54 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -0.635 1.27) (end -1.905 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 0 0.635) (end -0.635 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 0 -0.635) (end 0 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -0.635 -1.27) (end 0 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.905 -1.27) (end -0.635 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -2.54 -0.635) (end -1.905 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -2.54 0.635) (end -3.175 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -2.54 -0.635) (end -2.54 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -3.175 -1.27) (end -2.54 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -4.445 -1.27) (end -3.175 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 4.445 1.27) (end 3.175 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 2.54 0.635) (end 3.175 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 3.175 -1.27) (end 2.54 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 0.635 1.27) (end 0 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 1.905 1.27) (end 0.635 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 2.54 0.635) (end 1.905 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 2.54 -0.635) (end 2.54 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 1.905 -1.27) (end 2.54 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 0.635 -1.27) (end 1.905 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 0 -0.635) (end 0.635 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 5.715 1.27) (end 5.08 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 6.985 1.27) (end 5.715 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 7.62 0.635) (end 6.985 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 7.62 -0.635) (end 7.62 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 6.985 -1.27) (end 7.62 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 5.715 -1.27) (end 6.985 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 5.08 -0.635) (end 5.715 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 5.08 0.635) (end 4.445 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 5.08 -0.635) (end 5.08 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 4.445 -1.27) (end 5.08 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 3.175 -1.27) (end 4.445 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 12.065 1.27) (end 10.795 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 10.16 0.635) (end 10.795 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 10.795 -1.27) (end 10.16 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 8.255 1.27) (end 7.62 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 9.525 1.27) (end 8.255 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 10.16 0.635) (end 9.525 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 10.16 -0.635) (end 10.16 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 9.525 -1.27) (end 10.16 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 8.255 -1.27) (end 9.525 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 7.62 -0.635) (end 8.255 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 13.335 1.27) (end 12.7 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 14.605 1.27) (end 13.335 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 15.24 0.635) (end 14.605 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 15.24 -0.635) (end 15.24 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 14.605 -1.27) (end 15.24 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 13.335 -1.27) (end 14.605 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 12.7 -0.635) (end 13.335 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 12.7 0.635) (end 12.065 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 12.7 -0.635) (end 12.7 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 12.065 -1.27) (end 12.7 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 10.795 -1.27) (end 12.065 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 15.875 1.27) (end 15.24 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 17.145 1.27) (end 15.875 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 17.78 0.635) (end 17.145 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 17.78 -0.635) (end 17.78 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 17.145 -1.27) (end 17.78 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 15.875 -1.27) (end 17.145 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 15.24 -0.635) (end 15.875 -1.27) (layer F.SilkS) (width 0.1524))
(pad 16 thru_hole oval (at 19.05 0 90) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 15 /BKLT_GND) (solder_mask_margin 0.1016))
(pad 15 thru_hole oval (at 16.51 0 90) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 2 +5V) (solder_mask_margin 0.1016))
(pad 14 thru_hole oval (at 13.97 0 90) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 12 /D7) (solder_mask_margin 0.1016))
(pad 13 thru_hole oval (at 11.43 0 90) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 9 /D6) (solder_mask_margin 0.1016))
(pad 12 thru_hole oval (at 8.89 0 90) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 8 /D5) (solder_mask_margin 0.1016))
(pad 11 thru_hole oval (at 6.35 0 90) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 10 /D4) (solder_mask_margin 0.1016))
(pad 10 thru_hole oval (at 3.81 0 90) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 16 "Net-(J1-Pad10)") (solder_mask_margin 0.1016))
(pad 9 thru_hole oval (at 1.27 0 90) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 17 "Net-(J1-Pad9)") (solder_mask_margin 0.1016))
(pad 8 thru_hole oval (at -1.27 0 90) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 18 "Net-(J1-Pad8)") (solder_mask_margin 0.1016))
(pad 7 thru_hole oval (at -3.81 0 90) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 19 "Net-(J1-Pad7)") (solder_mask_margin 0.1016))
(pad 6 thru_hole oval (at -6.35 0 90) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 11 /E) (solder_mask_margin 0.1016))
(pad 5 thru_hole oval (at -8.89 0 90) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 1 GND) (solder_mask_margin 0.1016))
(pad 4 thru_hole oval (at -11.43 0 90) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 13 /RS) (solder_mask_margin 0.1016))
(pad 3 thru_hole oval (at -13.97 0 90) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 20 "Net-(J1-Pad3)") (solder_mask_margin 0.1016))
(pad 2 thru_hole oval (at -16.51 0 90) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 2 +5V) (solder_mask_margin 0.1016))
(pad 1 thru_hole oval (at -19.05 0 90) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 1 GND) (solder_mask_margin 0.1016))
)
(module DIL16 (layer Bottom) (tedit 0) (tstamp 5FCA3E1F)
(at 128.8161 95.1611)
(descr "<b>Dual In Line Package</b>")
(path /3FCDA485)
(fp_text reference IC3 (at -10.541 -3.429 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(fp_text value 74HC595N (at 4.0259 0.4699) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(fp_line (start -10.16 -2.921) (end -10.16 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -10.16 2.921) (end -10.16 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 10.16 2.921) (end 10.16 -2.921) (layer B.SilkS) (width 0.1524))
(fp_line (start -10.16 -2.921) (end 10.16 -2.921) (layer B.SilkS) (width 0.1524))
(fp_line (start 10.16 2.921) (end -10.16 2.921) (layer B.SilkS) (width 0.1524))
(fp_arc (start -10.16 0) (end -10.16 1.016) (angle -180) (layer B.SilkS) (width 0.1524))
(pad 16 thru_hole oval (at -8.89 3.81 270) (size 3.048 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 2 +5V) (solder_mask_margin 0.1016))
(pad 15 thru_hole oval (at -6.35 3.81 270) (size 3.048 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 3 "Net-(IC3-Pad15)") (solder_mask_margin 0.1016))
(pad 14 thru_hole oval (at -3.81 3.81 270) (size 3.048 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 4 /MOSI) (solder_mask_margin 0.1016))
(pad 13 thru_hole oval (at -1.27 3.81 270) (size 3.048 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 1 GND) (solder_mask_margin 0.1016))
(pad 12 thru_hole oval (at 1.27 3.81 270) (size 3.048 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 5 /LCD_CLK) (solder_mask_margin 0.1016))
(pad 11 thru_hole oval (at 3.81 3.81 270) (size 3.048 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 6 /SCK) (solder_mask_margin 0.1016))
(pad 10 thru_hole oval (at 6.35 3.81 270) (size 3.048 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 2 +5V) (solder_mask_margin 0.1016))
(pad 9 thru_hole oval (at 8.89 3.81 270) (size 3.048 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 7 "Net-(IC3-Pad9)") (solder_mask_margin 0.1016))
(pad 5 thru_hole oval (at 1.27 -3.81 270) (size 3.048 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 8 /D5) (solder_mask_margin 0.1016))
(pad 6 thru_hole oval (at 3.81 -3.81 270) (size 3.048 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 9 /D6) (solder_mask_margin 0.1016))
(pad 4 thru_hole oval (at -1.27 -3.81 270) (size 3.048 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 10 /D4) (solder_mask_margin 0.1016))
(pad 3 thru_hole oval (at -3.81 -3.81 270) (size 3.048 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 11 /E) (solder_mask_margin 0.1016))
(pad 8 thru_hole oval (at 8.89 -3.81 270) (size 3.048 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 1 GND) (solder_mask_margin 0.1016))
(pad 7 thru_hole oval (at 6.35 -3.81 270) (size 3.048 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 12 /D7) (solder_mask_margin 0.1016))
(pad 2 thru_hole oval (at -6.35 -3.81 270) (size 3.048 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 13 /RS) (solder_mask_margin 0.1016))
(pad 1 thru_hole oval (at -8.89 -3.81 270) (size 3.048 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 14 "Net-(IC3-Pad1)") (solder_mask_margin 0.1016))
)
(module 0204_7 (layer Bottom) (tedit 0) (tstamp 5FCA3E38)
(at 161.8361 97.7011)
(descr "<b>RESISTOR</b><p>\ntype 0204, grid 7.5 mm")
(path /4285394A)
(fp_text reference R10 (at -2.5781 2.3749) (layer B.SilkS)
(effects (font (size 0.94107 0.94107) (thickness 0.122339)) (justify right bottom mirror))
)
(fp_text value 1k (at -0.9271 0.479779) (layer B.SilkS)
(effects (font (size 0.94107 0.94107) (thickness 0.122339)) (justify right bottom mirror))
)
(fp_poly (pts (xy -2.921 -0.254) (xy -2.54 -0.254) (xy -2.54 0.254) (xy -2.921 0.254)) (layer B.SilkS) (width 0))
(fp_poly (pts (xy 2.54 -0.254) (xy 2.921 -0.254) (xy 2.921 0.254) (xy 2.54 0.254)) (layer B.SilkS) (width 0))
(fp_line (start 2.54 -0.762) (end 2.54 0.762) (layer B.SilkS) (width 0.1524))
(fp_line (start 2.286 -1.016) (end 1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 2.286 1.016) (end 1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 -0.889) (end -1.778 -0.889) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 -0.889) (end 1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 0.889) (end -1.778 0.889) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 0.889) (end 1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.778 -0.889) (end -1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.286 -1.016) (end -1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.778 0.889) (end -1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.286 1.016) (end -1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.54 -0.762) (end -2.54 0.762) (layer B.SilkS) (width 0.1524))
(fp_line (start -3.81 0) (end -2.921 0) (layer B.Fab) (width 0.508))
(fp_line (start 3.81 0) (end 2.921 0) (layer B.Fab) (width 0.508))
(fp_arc (start 2.286 0.762) (end 2.286 1.016) (angle -90) (layer B.SilkS) (width 0.1524))
(fp_arc (start 2.286 -0.762) (end 2.286 -1.016) (angle 90) (layer B.SilkS) (width 0.1524))
(fp_arc (start -2.286 -0.762) (end -2.54 -0.762) (angle 90) (layer B.SilkS) (width 0.1524))
(fp_arc (start -2.286 0.762) (end -2.54 0.762) (angle -90) (layer B.SilkS) (width 0.1524))
(pad 2 thru_hole circle (at 3.81 0) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 25 "Net-(LED2-PadA)") (solder_mask_margin 0.1016))
(pad 1 thru_hole circle (at -3.81 0) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 3 "Net-(IC3-Pad15)") (solder_mask_margin 0.1016))
)
(module LED3MM (layer Top) (tedit 5FCAA105) (tstamp 5FCA3E51)
(at 180.8861 100.2411)
(descr "<B>LED</B><p>\n3 mm, round")
(path /06E12A98)
(fp_text reference LED2 (at -1.8161 -2.4511) (layer F.SilkS)
(effects (font (size 0.9652 0.9652) (thickness 0.125476)) (justify left bottom))
)
(fp_text value YEL (at -1.3081 3.3909) (layer F.SilkS)
(effects (font (size 0.9652 0.9652) (thickness 0.125476)) (justify left bottom))
)
(fp_line (start 1.5748 1.27) (end 1.5748 -1.27) (layer F.Fab) (width 0.254))
(fp_arc (start 0 0.000083) (end -2.032 0) (angle -31.60822) (layer F.Fab) (width 0.254))
(fp_arc (start 0 0.000002) (end -2.032 0) (angle 28.301701) (layer F.Fab) (width 0.254))
(fp_arc (start -0.000056 0) (end -1.7643 1.0082) (angle -60.255215) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.000037 0) (end 0 2.032) (angle -49.763022) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.00006 0) (end -1.7929 -0.9562) (angle 61.926949) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.000012 0) (end 0 -2.032) (angle 50.193108) (layer F.SilkS) (width 0.254))
(fp_arc (start 0 0) (end 0 1.016) (angle -90) (layer F.Fab) (width 0.1524))
(fp_arc (start 0 0) (end 0 0.635) (angle -90) (layer F.Fab) (width 0.1524))
(fp_arc (start 0 0) (end -1.016 0) (angle 90) (layer F.Fab) (width 0.1524))
(fp_arc (start 0 0) (end -0.635 0) (angle 90) (layer F.Fab) (width 0.1524))
(fp_arc (start 0.000008 0) (end -1.203 0.9356) (angle -52.126876) (layer F.SilkS) (width 0.1524))
(fp_arc (start -0.000008 0) (end 0 1.524) (angle -52.126876) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0 0) (end -1.2192 -0.9144) (angle 53.130102) (layer F.SilkS) (width 0.1524))
(fp_arc (start -0.000034 0) (end 0 -1.524) (angle 54.461337) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0 -0.000004) (end 1.1708 0.9756) (angle -39.80361) (layer F.Fab) (width 0.1524))
(fp_arc (start 0 0.000014) (end 1.1571 -0.9918) (angle 40.601165) (layer F.Fab) (width 0.1524))
(fp_arc (start 0 0.000063) (end -1.524 0) (angle -41.633208) (layer F.Fab) (width 0.1524))
(fp_arc (start 0 0.000004) (end -1.524 0) (angle 39.80361) (layer F.Fab) (width 0.1524))
(pad K thru_hole circle (at 1.27 0 45) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 1 GND) (solder_mask_margin 0.1016))
(pad A thru_hole circle (at -1.27 0) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 25 "Net-(LED2-PadA)") (solder_mask_margin 0.1016))
)
(module 0204_7 (layer Bottom) (tedit 0) (tstamp 5FCA3E69)
(at 161.8361 95.1611)
(descr "<b>RESISTOR</b><p>\ntype 0204, grid 7.5 mm")
(path /02A13CBA)
(fp_text reference R12 (at -2.54 1.2954) (layer B.SilkS) hide
(effects (font (size 0.94107 0.94107) (thickness 0.09906)) (justify right bottom mirror))
)
(fp_text value 220 (at -1.4351 0.4699) (layer B.SilkS)
(effects (font (size 0.94107 0.94107) (thickness 0.122339)) (justify right bottom mirror))
)
(fp_poly (pts (xy -2.921 -0.254) (xy -2.54 -0.254) (xy -2.54 0.254) (xy -2.921 0.254)) (layer B.SilkS) (width 0))
(fp_poly (pts (xy 2.54 -0.254) (xy 2.921 -0.254) (xy 2.921 0.254) (xy 2.54 0.254)) (layer B.SilkS) (width 0))
(fp_line (start 2.54 -0.762) (end 2.54 0.762) (layer B.SilkS) (width 0.1524))
(fp_line (start 2.286 -1.016) (end 1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 2.286 1.016) (end 1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 -0.889) (end -1.778 -0.889) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 -0.889) (end 1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 0.889) (end -1.778 0.889) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 0.889) (end 1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.778 -0.889) (end -1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.286 -1.016) (end -1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.778 0.889) (end -1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.286 1.016) (end -1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.54 -0.762) (end -2.54 0.762) (layer B.SilkS) (width 0.1524))
(fp_line (start -3.81 0) (end -2.921 0) (layer B.Fab) (width 0.508))
(fp_line (start 3.81 0) (end 2.921 0) (layer B.Fab) (width 0.508))
(fp_arc (start 2.286 0.762) (end 2.286 1.016) (angle -90) (layer B.SilkS) (width 0.1524))
(fp_arc (start 2.286 -0.762) (end 2.286 -1.016) (angle 90) (layer B.SilkS) (width 0.1524))
(fp_arc (start -2.286 -0.762) (end -2.54 -0.762) (angle 90) (layer B.SilkS) (width 0.1524))
(fp_arc (start -2.286 0.762) (end -2.54 0.762) (angle -90) (layer B.SilkS) (width 0.1524))
(pad 2 thru_hole circle (at 3.81 0) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 26 "Net-(LED3-PadA)") (solder_mask_margin 0.1016))
(pad 1 thru_hole circle (at -3.81 0) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 14 "Net-(IC3-Pad1)") (solder_mask_margin 0.1016))
)
(module SOT54E (layer Bottom) (tedit 0) (tstamp 5FCA3E9A)
(at 160.5661 91.3511 270)
(descr "<b>SOT-54</b><p>\ngrid 2.54 mm")
(path /22452E8B)
(fp_text reference Q4 (at 0.8509 3.0861 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify right bottom mirror))
)
(fp_text value BS170 (at 2.6289 -3.429 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify right bottom mirror))
)
(fp_line (start -1.631 -1.778) (end 1.631 -1.778) (layer B.SilkS) (width 0.1524))
(fp_arc (start -0.0003 0.000017) (end 0.9689 2.2098) (angle -113.782137) (layer B.SilkS) (width 0.1524))
(fp_arc (start 0.0003 0.000017) (end -1.631 -1.778) (angle -113.782137) (layer B.SilkS) (width 0.1524))
(fp_arc (start 0 0) (end -0.9692 2.2098) (angle -47.363718) (layer B.Fab) (width 0.1524))
(pad S thru_hole circle (at 1.27 0 270) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 1 GND) (solder_mask_margin 0.1016))
(pad G thru_hole circle (at 0 1.905 270) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 21 /LCD_BKLT) (solder_mask_margin 0.1016))
(pad D thru_hole circle (at -1.27 0 270) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 15 /BKLT_GND) (solder_mask_margin 0.1016))
)
(module 0204_7 (layer Bottom) (tedit 0) (tstamp 5FCA3EA4)
(at 164.3761 116.7511 180)
(descr "<b>RESISTOR</b><p>\ntype 0204, grid 7.5 mm")
(path /B9974CD0)
(fp_text reference R8 (at -2.7559 1.1811) (layer B.SilkS)
(effects (font (size 0.94107 0.94107) (thickness 0.122339)) (justify left bottom mirror))
)
(fp_text value 1k2 (at 1.3081 -0.4826) (layer B.SilkS)
(effects (font (size 0.94107 0.94107) (thickness 0.122339)) (justify right bottom mirror))
)
(fp_poly (pts (xy -2.921 -0.254) (xy -2.54 -0.254) (xy -2.54 0.254) (xy -2.921 0.254)) (layer B.SilkS) (width 0))
(fp_poly (pts (xy 2.54 -0.254) (xy 2.921 -0.254) (xy 2.921 0.254) (xy 2.54 0.254)) (layer B.SilkS) (width 0))
(fp_line (start 2.54 -0.762) (end 2.54 0.762) (layer B.SilkS) (width 0.1524))
(fp_line (start 2.286 -1.016) (end 1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 2.286 1.016) (end 1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 -0.889) (end -1.778 -0.889) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 -0.889) (end 1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 0.889) (end -1.778 0.889) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 0.889) (end 1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.778 -0.889) (end -1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.286 -1.016) (end -1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.778 0.889) (end -1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.286 1.016) (end -1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.54 -0.762) (end -2.54 0.762) (layer B.SilkS) (width 0.1524))
(fp_line (start -3.81 0) (end -2.921 0) (layer B.Fab) (width 0.508))
(fp_line (start 3.81 0) (end 2.921 0) (layer B.Fab) (width 0.508))
(fp_arc (start 2.286 0.762) (end 2.286 1.016) (angle -90) (layer B.SilkS) (width 0.1524))
(fp_arc (start 2.286 -0.762) (end 2.286 -1.016) (angle 90) (layer B.SilkS) (width 0.1524))
(fp_arc (start -2.286 -0.762) (end -2.54 -0.762) (angle 90) (layer B.SilkS) (width 0.1524))
(fp_arc (start -2.286 0.762) (end -2.54 0.762) (angle -90) (layer B.SilkS) (width 0.1524))
(pad 2 thru_hole circle (at 3.81 0 180) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 2 +5V) (solder_mask_margin 0.1016))
(pad 1 thru_hole circle (at -3.81 0 180) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 28 "Net-(R8-Pad1)") (solder_mask_margin 0.1016))
)
(module 0204_7 (layer Bottom) (tedit 0) (tstamp 5FCA3ED6)
(at 147.8661 104.0511)
(descr "<b>RESISTOR</b><p>\ntype 0204, grid 7.5 mm")
(path /A3CA732B)
(fp_text reference R11 (at -2.837077 2.26419) (layer B.SilkS)
(effects (font (size 0.94107 0.94107) (thickness 0.122339)) (justify right bottom mirror))
)
(fp_text value 1k8 (at -1.3081 0.4699) (layer B.SilkS)
(effects (font (size 0.94107 0.94107) (thickness 0.122339)) (justify right bottom mirror))
)
(fp_poly (pts (xy -2.921 -0.254) (xy -2.54 -0.254) (xy -2.54 0.254) (xy -2.921 0.254)) (layer B.SilkS) (width 0))
(fp_poly (pts (xy 2.54 -0.254) (xy 2.921 -0.254) (xy 2.921 0.254) (xy 2.54 0.254)) (layer B.SilkS) (width 0))
(fp_line (start 2.54 -0.762) (end 2.54 0.762) (layer B.SilkS) (width 0.1524))
(fp_line (start 2.286 -1.016) (end 1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 2.286 1.016) (end 1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 -0.889) (end -1.778 -0.889) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 -0.889) (end 1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 0.889) (end -1.778 0.889) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 0.889) (end 1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.778 -0.889) (end -1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.286 -1.016) (end -1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.778 0.889) (end -1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.286 1.016) (end -1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.54 -0.762) (end -2.54 0.762) (layer B.SilkS) (width 0.1524))
(fp_line (start -3.81 0) (end -2.921 0) (layer B.Fab) (width 0.508))
(fp_line (start 3.81 0) (end 2.921 0) (layer B.Fab) (width 0.508))
(fp_arc (start 2.286 0.762) (end 2.286 1.016) (angle -90) (layer B.SilkS) (width 0.1524))
(fp_arc (start 2.286 -0.762) (end 2.286 -1.016) (angle 90) (layer B.SilkS) (width 0.1524))
(fp_arc (start -2.286 -0.762) (end -2.54 -0.762) (angle 90) (layer B.SilkS) (width 0.1524))
(fp_arc (start -2.286 0.762) (end -2.54 0.762) (angle -90) (layer B.SilkS) (width 0.1524))
(pad 2 thru_hole circle (at 3.81 0) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 2 +5V) (solder_mask_margin 0.1016))
(pad 1 thru_hole circle (at -3.81 0) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 30 "Net-(R11-Pad1)") (solder_mask_margin 0.1016))
)
(module 0204_7 (layer Bottom) (tedit 0) (tstamp 5FCA3EEF)
(at 147.8661 111.6711)
(descr "<b>RESISTOR</b><p>\ntype 0204, grid 7.5 mm")
(path /551CC7F3)
(fp_text reference R2 (at -2.602895 2.243406) (layer B.SilkS)
(effects (font (size 0.94107 0.94107) (thickness 0.122339)) (justify right bottom mirror))
)
(fp_text value 3k9 (at -1.322123 0.49948) (layer B.SilkS)
(effects (font (size 0.94107 0.94107) (thickness 0.122339)) (justify right bottom mirror))
)
(fp_poly (pts (xy -2.921 -0.254) (xy -2.54 -0.254) (xy -2.54 0.254) (xy -2.921 0.254)) (layer B.SilkS) (width 0))
(fp_poly (pts (xy 2.54 -0.254) (xy 2.921 -0.254) (xy 2.921 0.254) (xy 2.54 0.254)) (layer B.SilkS) (width 0))
(fp_line (start 2.54 -0.762) (end 2.54 0.762) (layer B.SilkS) (width 0.1524))
(fp_line (start 2.286 -1.016) (end 1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 2.286 1.016) (end 1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 -0.889) (end -1.778 -0.889) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 -0.889) (end 1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 0.889) (end -1.778 0.889) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 0.889) (end 1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.778 -0.889) (end -1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.286 -1.016) (end -1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.778 0.889) (end -1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.286 1.016) (end -1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.54 -0.762) (end -2.54 0.762) (layer B.SilkS) (width 0.1524))
(fp_line (start -3.81 0) (end -2.921 0) (layer B.Fab) (width 0.508))
(fp_line (start 3.81 0) (end 2.921 0) (layer B.Fab) (width 0.508))
(fp_arc (start 2.286 0.762) (end 2.286 1.016) (angle -90) (layer B.SilkS) (width 0.1524))
(fp_arc (start 2.286 -0.762) (end 2.286 -1.016) (angle 90) (layer B.SilkS) (width 0.1524))
(fp_arc (start -2.286 -0.762) (end -2.54 -0.762) (angle 90) (layer B.SilkS) (width 0.1524))
(fp_arc (start -2.286 0.762) (end -2.54 0.762) (angle -90) (layer B.SilkS) (width 0.1524))
(pad 2 thru_hole circle (at 3.81 0) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 2 +5V) (solder_mask_margin 0.1016))
(pad 1 thru_hole circle (at -3.81 0) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 27 "Net-(R2-Pad1)") (solder_mask_margin 0.1016))
)
(module 0204_7 (layer Bottom) (tedit 0) (tstamp 5FCA3F08)
(at 174.5361 116.7511)
(descr "<b>RESISTOR</b><p>\ntype 0204, grid 7.5 mm")
(path /1663FB6E)
(fp_text reference R15 (at -2.3241 2.3749) (layer B.SilkS)
(effects (font (size 0.94107 0.94107) (thickness 0.122339)) (justify right bottom mirror))
)
(fp_text value 220 (at -1.329941 0.49036) (layer B.SilkS)
(effects (font (size 0.94107 0.94107) (thickness 0.122339)) (justify right bottom mirror))
)
(fp_poly (pts (xy -2.921 -0.254) (xy -2.54 -0.254) (xy -2.54 0.254) (xy -2.921 0.254)) (layer B.SilkS) (width 0))
(fp_poly (pts (xy 2.54 -0.254) (xy 2.921 -0.254) (xy 2.921 0.254) (xy 2.54 0.254)) (layer B.SilkS) (width 0))
(fp_line (start 2.54 -0.762) (end 2.54 0.762) (layer B.SilkS) (width 0.1524))
(fp_line (start 2.286 -1.016) (end 1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 2.286 1.016) (end 1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 -0.889) (end -1.778 -0.889) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 -0.889) (end 1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 0.889) (end -1.778 0.889) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.778 0.889) (end 1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.778 -0.889) (end -1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.286 -1.016) (end -1.905 -1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.778 0.889) (end -1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.286 1.016) (end -1.905 1.016) (layer B.SilkS) (width 0.1524))
(fp_line (start -2.54 -0.762) (end -2.54 0.762) (layer B.SilkS) (width 0.1524))
(fp_line (start -3.81 0) (end -2.921 0) (layer B.Fab) (width 0.508))
(fp_line (start 3.81 0) (end 2.921 0) (layer B.Fab) (width 0.508))
(fp_arc (start 2.286 0.762) (end 2.286 1.016) (angle -90) (layer B.SilkS) (width 0.1524))
(fp_arc (start 2.286 -0.762) (end 2.286 -1.016) (angle 90) (layer B.SilkS) (width 0.1524))
(fp_arc (start -2.286 -0.762) (end -2.54 -0.762) (angle 90) (layer B.SilkS) (width 0.1524))
(fp_arc (start -2.286 0.762) (end -2.54 0.762) (angle -90) (layer B.SilkS) (width 0.1524))
(pad 2 thru_hole circle (at 3.81 0) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 24 "Net-(LED1-PadA)") (solder_mask_margin 0.1016))
(pad 1 thru_hole circle (at -3.81 0) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 23 /LED1) (solder_mask_margin 0.1016))
)
(module LED3MM (layer Top) (tedit 5FCAA115) (tstamp 5FCA3F21)
(at 180.8861 109.1311)
(descr "<B>LED</B><p>\n3 mm, round")
(path /E63B9115)
(fp_text reference LED1 (at -1.6891 -2.413) (layer F.SilkS)
(effects (font (size 0.9652 0.9652) (thickness 0.125476)) (justify left bottom))
)
(fp_text value RED (at -1.4351 3.6449) (layer F.SilkS)
(effects (font (size 0.9652 0.9652) (thickness 0.125476)) (justify left bottom))
)
(fp_line (start 1.5748 1.27) (end 1.5748 -1.27) (layer F.Fab) (width 0.254))
(fp_arc (start 0 0.000083) (end -2.032 0) (angle -31.60822) (layer F.Fab) (width 0.254))
(fp_arc (start 0 0.000002) (end -2.032 0) (angle 28.301701) (layer F.Fab) (width 0.254))
(fp_arc (start -0.000056 0) (end -1.7643 1.0082) (angle -60.255215) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.000037 0) (end 0 2.032) (angle -49.763022) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.00006 0) (end -1.7929 -0.9562) (angle 61.926949) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.000012 0) (end 0 -2.032) (angle 50.193108) (layer F.SilkS) (width 0.254))
(fp_arc (start 0 0) (end 0 1.016) (angle -90) (layer F.Fab) (width 0.1524))
(fp_arc (start 0 0) (end 0 0.635) (angle -90) (layer F.Fab) (width 0.1524))
(fp_arc (start 0 0) (end -1.016 0) (angle 90) (layer F.Fab) (width 0.1524))
(fp_arc (start 0 0) (end -0.635 0) (angle 90) (layer F.Fab) (width 0.1524))
(fp_arc (start 0.000008 0) (end -1.203 0.9356) (angle -52.126876) (layer F.SilkS) (width 0.1524))
(fp_arc (start -0.000008 0) (end 0 1.524) (angle -52.126876) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0 0) (end -1.2192 -0.9144) (angle 53.130102) (layer F.SilkS) (width 0.1524))
(fp_arc (start -0.000034 0) (end 0 -1.524) (angle 54.461337) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0 -0.000004) (end 1.1708 0.9756) (angle -39.80361) (layer F.Fab) (width 0.1524))
(fp_arc (start 0 0.000014) (end 1.1571 -0.9918) (angle 40.601165) (layer F.Fab) (width 0.1524))
(fp_arc (start 0 0.000063) (end -1.524 0) (angle -41.633208) (layer F.Fab) (width 0.1524))
(fp_arc (start 0 0.000004) (end -1.524 0) (angle 39.80361) (layer F.Fab) (width 0.1524))
(pad K thru_hole circle (at 1.27 0 45) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 1 GND) (solder_mask_margin 0.1016))
(pad A thru_hole circle (at -1.27 0) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask)
(net 24 "Net-(LED1-PadA)") (solder_mask_margin 0.1016))
)
(module 1X05 (layer Bottom) (tedit 0) (tstamp 5FCA3F39)
(at 123.7361 107.8611 270)
(descr "<b>PIN HEADER</b>")
(path /14E2A95B)
(fp_text reference JP1 (at -6.2611 2.0701 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(fp_text value LCD1M (at -6.0071 -3.2639 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(fp_poly (pts (xy 4.826 -0.254) (xy 5.334 -0.254) (xy 5.334 0.254) (xy 4.826 0.254)) (layer B.Fab) (width 0))
(fp_poly (pts (xy -5.334 -0.254) (xy -4.826 -0.254) (xy -4.826 0.254) (xy -5.334 0.254)) (layer B.Fab) (width 0))
(fp_poly (pts (xy -2.794 -0.254) (xy -2.286 -0.254) (xy -2.286 0.254) (xy -2.794 0.254)) (layer B.Fab) (width 0))
(fp_poly (pts (xy -0.254 -0.254) (xy 0.254 -0.254) (xy 0.254 0.254) (xy -0.254 0.254)) (layer B.Fab) (width 0))
(fp_poly (pts (xy 2.286 -0.254) (xy 2.794 -0.254) (xy 2.794 0.254) (xy 2.286 0.254)) (layer B.Fab) (width 0))
(fp_line (start 5.715 -1.27) (end 4.445 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 3.81 -0.635) (end 4.445 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 4.445 1.27) (end 3.81 0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start 6.35 -0.635) (end 5.715 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 6.35 0.635) (end 6.35 -0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start 5.715 1.27) (end 6.35 0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start 4.445 1.27) (end 5.715 1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start -4.445 -1.27) (end -5.715 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start -6.35 -0.635) (end -5.715 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start -5.715 1.27) (end -6.35 0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start -6.35 0.635) (end -6.35 -0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start -3.175 -1.27) (end -3.81 -0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.905 -1.27) (end -3.175 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.27 -0.635) (end -1.905 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.27 0.635) (end -1.27 -0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.905 1.27) (end -1.27 0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start -3.175 1.27) (end -1.905 1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start -3.81 0.635) (end -3.175 1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start -3.81 -0.635) (end -4.445 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start -3.81 0.635) (end -3.81 -0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start -4.445 1.27) (end -3.81 0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start -5.715 1.27) (end -4.445 1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 3.175 -1.27) (end 1.905 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.27 -0.635) (end 1.905 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.905 1.27) (end 1.27 0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start -0.635 -1.27) (end -1.27 -0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start 0.635 -1.27) (end -0.635 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.27 -0.635) (end 0.635 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.27 0.635) (end 1.27 -0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start 0.635 1.27) (end 1.27 0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start -0.635 1.27) (end 0.635 1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 3.81 -0.635) (end 3.175 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 3.81 0.635) (end 3.81 -0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start 3.175 1.27) (end 3.81 0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.905 1.27) (end 3.175 1.27) (layer B.SilkS) (width 0.1524))
(pad 5 thru_hole oval (at 5.08 0 180) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 1 GND) (solder_mask_margin 0.1016))
(pad 4 thru_hole oval (at 2.54 0 180) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 5 /LCD_CLK) (solder_mask_margin 0.1016))
(pad 3 thru_hole oval (at 0 0 180) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 21 /LCD_BKLT) (solder_mask_margin 0.1016))
(pad 2 thru_hole oval (at -2.54 0 180) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 4 /MOSI) (solder_mask_margin 0.1016))
(pad 1 thru_hole oval (at -5.08 0 180) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 6 /SCK) (solder_mask_margin 0.1016))
)
(module TACT-OMRON-12MM (layer Top) (tedit 0) (tstamp 5FCA3F6A)
(at 147.8661 96.4311 180)
(path /52D529C4)
(fp_text reference S1 (at 0 0 180) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify right top))
)
(fp_text value UP (at 0 0 180) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify right top))
)
(fp_circle (center -4.5 4.5) (end -4.2 4.5) (layer F.SilkS) (width 0.7))
(fp_circle (center 4.5 4.5) (end 4.8 4.5) (layer F.SilkS) (width 0.7))
(fp_circle (center 4.5 -4.5) (end 4.8 -4.5) (layer F.SilkS) (width 0.7))
(fp_circle (center -4.5 -4.5) (end -4.2 -4.5) (layer F.SilkS) (width 0.7))
(fp_circle (center 0 0) (end 3.5 0) (layer F.SilkS) (width 0.2032))
(fp_line (start -6 1) (end -6 -1) (layer F.SilkS) (width 0.2032))
(fp_line (start -6 5) (end -6 4) (layer F.SilkS) (width 0.2032))
(fp_line (start 5 6) (end -5 6) (layer F.SilkS) (width 0.2032))
(fp_line (start 6 4) (end 6 5) (layer F.SilkS) (width 0.2032))
(fp_line (start 6 -1) (end 6 1) (layer F.SilkS) (width 0.2032))
(fp_line (start 6 -5) (end 6 -4) (layer F.SilkS) (width 0.2032))
(fp_line (start -5 -6) (end 5 -6) (layer F.SilkS) (width 0.2032))
(fp_line (start -6 -4) (end -6 -5) (layer F.SilkS) (width 0.2032))
(fp_line (start 5 -0.2) (end 5 -1) (layer F.Fab) (width 0.2032))
(fp_line (start 5 0.7) (end 4.5 0.2) (layer F.Fab) (width 0.2032))
(fp_line (start 5 1.3) (end 5 0.7) (layer F.Fab) (width 0.2032))
(fp_arc (start -5 5) (end -5 6) (angle 90) (layer F.SilkS) (width 0.2032))
(fp_arc (start 5 5) (end 6 5) (angle 90) (layer F.SilkS) (width 0.2032))
(fp_arc (start 5 -5) (end 5 -6) (angle 90) (layer F.SilkS) (width 0.2032))
(fp_arc (start -5 -5) (end -6 -5) (angle 90) (layer F.SilkS) (width 0.2032))
(pad "" np_thru_hole circle (at 0 4.5 180) (size 2 2) (drill 2) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 0 -4.5 180) (size 2 2) (drill 2) (layers *.Cu *.Mask))
(pad 3 thru_hole circle (at 6.25 -2.5 180) (size 2.159 2.159) (drill 1.2) (layers *.Cu *.Mask)
(net 22 /BUTTONS) (solder_mask_margin 0.1016))
(pad 1 thru_hole circle (at 6.25 2.5 180) (size 2.159 2.159) (drill 1.2) (layers *.Cu *.Mask)
(net 30 "Net-(R11-Pad1)") (solder_mask_margin 0.1016))
(pad 2 thru_hole circle (at -6.25 2.5 180) (size 2.159 2.159) (drill 1.2) (layers *.Cu *.Mask)
(net 31 "Net-(S1-Pad2)") (solder_mask_margin 0.1016))
(pad 4 thru_hole circle (at -6.25 -2.5 180) (size 2.159 2.159) (drill 1.2) (layers *.Cu *.Mask)
(net 32 "Net-(S1-Pad4)") (solder_mask_margin 0.1016))
)
(module TACT-OMRON-12MM (layer Top) (tedit 0) (tstamp 5FCA3F87)
(at 133.8961 107.8611)
(path /9D00F916)
(fp_text reference S2 (at 0 0) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(fp_text value LEFT (at 0 0) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(fp_circle (center -4.5 4.5) (end -4.2 4.5) (layer F.SilkS) (width 0.7))
(fp_circle (center 4.5 4.5) (end 4.8 4.5) (layer F.SilkS) (width 0.7))
(fp_circle (center 4.5 -4.5) (end 4.8 -4.5) (layer F.SilkS) (width 0.7))
(fp_circle (center -4.5 -4.5) (end -4.2 -4.5) (layer F.SilkS) (width 0.7))
(fp_circle (center 0 0) (end 3.5 0) (layer F.SilkS) (width 0.2032))
(fp_line (start -6 1) (end -6 -1) (layer F.SilkS) (width 0.2032))
(fp_line (start -6 5) (end -6 4) (layer F.SilkS) (width 0.2032))
(fp_line (start 5 6) (end -5 6) (layer F.SilkS) (width 0.2032))
(fp_line (start 6 4) (end 6 5) (layer F.SilkS) (width 0.2032))
(fp_line (start 6 -1) (end 6 1) (layer F.SilkS) (width 0.2032))
(fp_line (start 6 -5) (end 6 -4) (layer F.SilkS) (width 0.2032))
(fp_line (start -5 -6) (end 5 -6) (layer F.SilkS) (width 0.2032))
(fp_line (start -6 -4) (end -6 -5) (layer F.SilkS) (width 0.2032))
(fp_line (start 5 -0.2) (end 5 -1) (layer F.Fab) (width 0.2032))
(fp_line (start 5 0.7) (end 4.5 0.2) (layer F.Fab) (width 0.2032))
(fp_line (start 5 1.3) (end 5 0.7) (layer F.Fab) (width 0.2032))
(fp_arc (start -5 5) (end -5 6) (angle 90) (layer F.SilkS) (width 0.2032))
(fp_arc (start 5 5) (end 6 5) (angle 90) (layer F.SilkS) (width 0.2032))
(fp_arc (start 5 -5) (end 5 -6) (angle 90) (layer F.SilkS) (width 0.2032))
(fp_arc (start -5 -5) (end -6 -5) (angle 90) (layer F.SilkS) (width 0.2032))
(pad "" np_thru_hole circle (at 0 4.5) (size 2 2) (drill 2) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 0 -4.5) (size 2 2) (drill 2) (layers *.Cu *.Mask))
(pad 3 thru_hole circle (at 6.25 -2.5) (size 2.159 2.159) (drill 1.2) (layers *.Cu *.Mask)
(net 22 /BUTTONS) (solder_mask_margin 0.1016))
(pad 1 thru_hole circle (at 6.25 2.5) (size 2.159 2.159) (drill 1.2) (layers *.Cu *.Mask)
(net 29 "Net-(R9-Pad1)") (solder_mask_margin 0.1016))
(pad 2 thru_hole circle (at -6.25 2.5) (size 2.159 2.159) (drill 1.2) (layers *.Cu *.Mask)
(net 33 "Net-(S2-Pad2)") (solder_mask_margin 0.1016))
(pad 4 thru_hole circle (at -6.25 -2.5) (size 2.159 2.159) (drill 1.2) (layers *.Cu *.Mask)
(net 34 "Net-(S2-Pad4)") (solder_mask_margin 0.1016))
)
(module TACT-OMRON-12MM (layer Top) (tedit 0) (tstamp 5FCA3FA4)
(at 161.8361 107.8611)
(path /916B6127)
(fp_text reference S3 (at 0 0) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(fp_text value RIGHT (at 0 0) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(fp_circle (center -4.5 4.5) (end -4.2 4.5) (layer F.SilkS) (width 0.7))
(fp_circle (center 4.5 4.5) (end 4.8 4.5) (layer F.SilkS) (width 0.7))
(fp_circle (center 4.5 -4.5) (end 4.8 -4.5) (layer F.SilkS) (width 0.7))
(fp_circle (center -4.5 -4.5) (end -4.2 -4.5) (layer F.SilkS) (width 0.7))
(fp_circle (center 0 0) (end 3.5 0) (layer F.SilkS) (width 0.2032))
(fp_line (start -6 1) (end -6 -1) (layer F.SilkS) (width 0.2032))
(fp_line (start -6 5) (end -6 4) (layer F.SilkS) (width 0.2032))
(fp_line (start 5 6) (end -5 6) (layer F.SilkS) (width 0.2032))
(fp_line (start 6 4) (end 6 5) (layer F.SilkS) (width 0.2032))
(fp_line (start 6 -1) (end 6 1) (layer F.SilkS) (width 0.2032))
(fp_line (start 6 -5) (end 6 -4) (layer F.SilkS) (width 0.2032))
(fp_line (start -5 -6) (end 5 -6) (layer F.SilkS) (width 0.2032))
(fp_line (start -6 -4) (end -6 -5) (layer F.SilkS) (width 0.2032))
(fp_line (start 5 -0.2) (end 5 -1) (layer F.Fab) (width 0.2032))
(fp_line (start 5 0.7) (end 4.5 0.2) (layer F.Fab) (width 0.2032))
(fp_line (start 5 1.3) (end 5 0.7) (layer F.Fab) (width 0.2032))
(fp_arc (start -5 5) (end -5 6) (angle 90) (layer F.SilkS) (width 0.2032))
(fp_arc (start 5 5) (end 6 5) (angle 90) (layer F.SilkS) (width 0.2032))
(fp_arc (start 5 -5) (end 5 -6) (angle 90) (layer F.SilkS) (width 0.2032))
(fp_arc (start -5 -5) (end -6 -5) (angle 90) (layer F.SilkS) (width 0.2032))
(pad "" np_thru_hole circle (at 0 4.5) (size 2 2) (drill 2) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 0 -4.5) (size 2 2) (drill 2) (layers *.Cu *.Mask))
(pad 3 thru_hole circle (at 6.25 -2.5) (size 2.159 2.159) (drill 1.2) (layers *.Cu *.Mask)
(net 22 /BUTTONS) (solder_mask_margin 0.1016))
(pad 1 thru_hole circle (at 6.25 2.5) (size 2.159 2.159) (drill 1.2) (layers *.Cu *.Mask)
(net 28 "Net-(R8-Pad1)") (solder_mask_margin 0.1016))
(pad 2 thru_hole circle (at -6.25 2.5) (size 2.159 2.159) (drill 1.2) (layers *.Cu *.Mask)
(net 35 "Net-(S3-Pad2)") (solder_mask_margin 0.1016))
(pad 4 thru_hole circle (at -6.25 -2.5) (size 2.159 2.159) (drill 1.2) (layers *.Cu *.Mask)
(net 36 "Net-(S3-Pad4)") (solder_mask_margin 0.1016))
)
(module TACT-OMRON-12MM (layer Top) (tedit 0) (tstamp 5FCA3FC1)
(at 147.8661 119.2911 180)
(path /F55F1969)
(fp_text reference S4 (at 0 0 180) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify right top))
)
(fp_text value DOWN (at 0 0 180) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify right top))
)
(fp_circle (center -4.5 4.5) (end -4.2 4.5) (layer F.SilkS) (width 0.7))
(fp_circle (center 4.5 4.5) (end 4.8 4.5) (layer F.SilkS) (width 0.7))
(fp_circle (center 4.5 -4.5) (end 4.8 -4.5) (layer F.SilkS) (width 0.7))
(fp_circle (center -4.5 -4.5) (end -4.2 -4.5) (layer F.SilkS) (width 0.7))
(fp_circle (center 0 0) (end 3.5 0) (layer F.SilkS) (width 0.2032))
(fp_line (start -6 1) (end -6 -1) (layer F.SilkS) (width 0.2032))
(fp_line (start -6 5) (end -6 4) (layer F.SilkS) (width 0.2032))
(fp_line (start 5 6) (end -5 6) (layer F.SilkS) (width 0.2032))
(fp_line (start 6 4) (end 6 5) (layer F.SilkS) (width 0.2032))
(fp_line (start 6 -1) (end 6 1) (layer F.SilkS) (width 0.2032))
(fp_line (start 6 -5) (end 6 -4) (layer F.SilkS) (width 0.2032))
(fp_line (start -5 -6) (end 5 -6) (layer F.SilkS) (width 0.2032))
(fp_line (start -6 -4) (end -6 -5) (layer F.SilkS) (width 0.2032))
(fp_line (start 5 -0.2) (end 5 -1) (layer F.Fab) (width 0.2032))
(fp_line (start 5 0.7) (end 4.5 0.2) (layer F.Fab) (width 0.2032))
(fp_line (start 5 1.3) (end 5 0.7) (layer F.Fab) (width 0.2032))
(fp_arc (start -5 5) (end -5 6) (angle 90) (layer F.SilkS) (width 0.2032))
(fp_arc (start 5 5) (end 6 5) (angle 90) (layer F.SilkS) (width 0.2032))
(fp_arc (start 5 -5) (end 5 -6) (angle 90) (layer F.SilkS) (width 0.2032))
(fp_arc (start -5 -5) (end -6 -5) (angle 90) (layer F.SilkS) (width 0.2032))
(pad "" np_thru_hole circle (at 0 4.5 180) (size 2 2) (drill 2) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 0 -4.5 180) (size 2 2) (drill 2) (layers *.Cu *.Mask))
(pad 3 thru_hole circle (at 6.25 -2.5 180) (size 2.159 2.159) (drill 1.2) (layers *.Cu *.Mask)
(net 22 /BUTTONS) (solder_mask_margin 0.1016))
(pad 1 thru_hole circle (at 6.25 2.5 180) (size 2.159 2.159) (drill 1.2) (layers *.Cu *.Mask)
(net 27 "Net-(R2-Pad1)") (solder_mask_margin 0.1016))
(pad 2 thru_hole circle (at -6.25 2.5 180) (size 2.159 2.159) (drill 1.2) (layers *.Cu *.Mask)
(net 37 "Net-(S4-Pad2)") (solder_mask_margin 0.1016))
(pad 4 thru_hole circle (at -6.25 -2.5 180) (size 2.159 2.159) (drill 1.2) (layers *.Cu *.Mask)
(net 38 "Net-(S4-Pad4)") (solder_mask_margin 0.1016))
)
(module 1X05 (layer Bottom) (tedit 0) (tstamp 5FCA3FDE)
(at 173.2661 107.8611 270)
(descr "<b>PIN HEADER</b>")
(path /1AF1462B)
(fp_text reference JP8 (at -6.4262 2.0701 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(fp_text value LCD2M (at -6.35 -3.175 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(fp_poly (pts (xy 4.826 -0.254) (xy 5.334 -0.254) (xy 5.334 0.254) (xy 4.826 0.254)) (layer B.Fab) (width 0))
(fp_poly (pts (xy -5.334 -0.254) (xy -4.826 -0.254) (xy -4.826 0.254) (xy -5.334 0.254)) (layer B.Fab) (width 0))
(fp_poly (pts (xy -2.794 -0.254) (xy -2.286 -0.254) (xy -2.286 0.254) (xy -2.794 0.254)) (layer B.Fab) (width 0))
(fp_poly (pts (xy -0.254 -0.254) (xy 0.254 -0.254) (xy 0.254 0.254) (xy -0.254 0.254)) (layer B.Fab) (width 0))
(fp_poly (pts (xy 2.286 -0.254) (xy 2.794 -0.254) (xy 2.794 0.254) (xy 2.286 0.254)) (layer B.Fab) (width 0))
(fp_line (start 5.715 -1.27) (end 4.445 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 3.81 -0.635) (end 4.445 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 4.445 1.27) (end 3.81 0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start 6.35 -0.635) (end 5.715 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 6.35 0.635) (end 6.35 -0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start 5.715 1.27) (end 6.35 0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start 4.445 1.27) (end 5.715 1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start -4.445 -1.27) (end -5.715 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start -6.35 -0.635) (end -5.715 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start -5.715 1.27) (end -6.35 0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start -6.35 0.635) (end -6.35 -0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start -3.175 -1.27) (end -3.81 -0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.905 -1.27) (end -3.175 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.27 -0.635) (end -1.905 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.27 0.635) (end -1.27 -0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.905 1.27) (end -1.27 0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start -3.175 1.27) (end -1.905 1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start -3.81 0.635) (end -3.175 1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start -3.81 -0.635) (end -4.445 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start -3.81 0.635) (end -3.81 -0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start -4.445 1.27) (end -3.81 0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start -5.715 1.27) (end -4.445 1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 3.175 -1.27) (end 1.905 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.27 -0.635) (end 1.905 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.905 1.27) (end 1.27 0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start -0.635 -1.27) (end -1.27 -0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start 0.635 -1.27) (end -0.635 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.27 -0.635) (end 0.635 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.27 0.635) (end 1.27 -0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start 0.635 1.27) (end 1.27 0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start -0.635 1.27) (end 0.635 1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 3.81 -0.635) (end 3.175 -1.27) (layer B.SilkS) (width 0.1524))
(fp_line (start 3.81 0.635) (end 3.81 -0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start 3.175 1.27) (end 3.81 0.635) (layer B.SilkS) (width 0.1524))
(fp_line (start 1.905 1.27) (end 3.175 1.27) (layer B.SilkS) (width 0.1524))
(pad 5 thru_hole oval (at 5.08 0 180) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 1 GND) (solder_mask_margin 0.1016))
(pad 4 thru_hole oval (at 2.54 0 180) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 22 /BUTTONS) (solder_mask_margin 0.1016))
(pad 3 thru_hole oval (at 0 0 180) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 23 /LED1) (solder_mask_margin 0.1016))
(pad 2 thru_hole oval (at -2.54 0 180) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 1 GND) (solder_mask_margin 0.1016))
(pad 1 thru_hole oval (at -5.08 0 180) (size 3.4544 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 2 +5V) (solder_mask_margin 0.1016))
)
(module POT-CT6-SIDE (layer Top) (tedit 0) (tstamp 5FCA400F)
(at 117.3861 120.5611 90)
(path /1047F363)
(fp_text reference R6 (at 1.1811 5.0419 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(fp_text value 10k (at -3.3909 5.0419 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(fp_circle (center 0 0) (end 2.032 0) (layer F.Fab) (width 0.1524))
(fp_line (start -2.5146 0) (end -2.8956 0) (layer F.Fab) (width 0.1524))
(fp_line (start -1.905 -1.651) (end -2.159 -1.905) (layer F.SilkS) (width 0.1524))
(fp_line (start 0 -2.4638) (end 0 -2.8448) (layer F.SilkS) (width 0.1524))
(fp_line (start 1.778 -1.651) (end 2.032 -1.905) (layer F.SilkS) (width 0.1524))
(fp_line (start 2.5146 0) (end 2.8956 0) (layer F.Fab) (width 0.1524))
(fp_line (start 1.778 1.778) (end 2.032 2.032) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.778 1.778) (end -2.032 2.032) (layer F.SilkS) (width 0.1524))
(fp_line (start 0.381 0.762) (end 0.762 0.381) (layer F.SilkS) (width 0.1524))
(fp_line (start 0.381 1.524) (end 0.381 0.762) (layer F.SilkS) (width 0.1524))
(fp_line (start -0.381 1.524) (end 0.381 1.524) (layer F.SilkS) (width 0.1524))
(fp_line (start -0.381 0.762) (end -0.381 1.524) (layer F.SilkS) (width 0.1524))
(fp_line (start -0.381 0.762) (end -0.762 0.381) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.524 0.381) (end -0.762 0.381) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.524 -0.381) (end -1.524 0.381) (layer F.SilkS) (width 0.1524))
(fp_line (start -0.762 -0.381) (end -1.524 -0.381) (layer F.SilkS) (width 0.1524))
(fp_line (start -0.381 -0.762) (end -0.762 -0.381) (layer F.SilkS) (width 0.1524))
(fp_line (start -0.381 -1.016) (end -0.381 -0.762) (layer F.SilkS) (width 0.1524))
(fp_line (start -0.635 -1.016) (end -0.381 -1.016) (layer F.SilkS) (width 0.1524))
(fp_line (start 0 -1.651) (end -0.635 -1.016) (layer F.SilkS) (width 0.1524))
(fp_line (start 0.635 -1.016) (end 0 -1.651) (layer F.SilkS) (width 0.1524))
(fp_line (start 0.381 -1.016) (end 0.635 -1.016) (layer F.SilkS) (width 0.1524))
(fp_line (start 0.381 -0.762) (end 0.381 -1.016) (layer F.SilkS) (width 0.1524))
(fp_line (start 0.762 -0.381) (end 0.381 -0.762) (layer F.SilkS) (width 0.1524))
(fp_line (start 1.524 -0.381) (end 0.762 -0.381) (layer F.SilkS) (width 0.1524))
(fp_line (start 1.524 0.381) (end 1.524 -0.381) (layer F.SilkS) (width 0.1524))
(fp_line (start 0.762 0.381) (end 1.524 0.381) (layer F.SilkS) (width 0.1524))
(fp_line (start -3.556 -3.302) (end -3.556 3.302) (layer F.SilkS) (width 0.1524))
(fp_line (start -3.302 -3.556) (end -3.556 -3.302) (layer F.SilkS) (width 0.1524))
(fp_line (start -3.302 3.556) (end -3.556 3.302) (layer F.SilkS) (width 0.1524))
(fp_line (start 3.556 3.302) (end 3.556 -3.302) (layer F.SilkS) (width 0.1524))
(fp_line (start 3.302 3.556) (end 3.556 3.302) (layer F.SilkS) (width 0.1524))
(fp_line (start 3.302 -3.556) (end 3.556 -3.302) (layer F.SilkS) (width 0.1524))
(fp_line (start -3.302 3.556) (end 3.302 3.556) (layer F.SilkS) (width 0.1524))
(fp_line (start 3.302 -3.556) (end -3.302 -3.556) (layer F.SilkS) (width 0.1524))
(fp_text user 1 (at 2.159 3.175 90) (layer F.SilkS)
(effects (font (size 0.94107 0.94107) (thickness 0.118872)) (justify left bottom))
)
(fp_text user 3 (at -3.048 3.175 90) (layer F.SilkS)
(effects (font (size 0.94107 0.94107) (thickness 0.118872)) (justify left bottom))
)
(fp_arc (start 0 0.050799) (end -1.651 1.778) (angle 272.584334) (layer F.Fab) (width 0.1524))
(pad A smd rect (at 2.54 0 180) (size 2.54 1.778) (layers Bottom B.Paste B.Mask)
(net 1 GND) (solder_mask_margin 0.1016))
(pad E smd rect (at -2.54 0 180) (size 2.54 1.778) (layers Bottom B.Paste B.Mask)
(net 2 +5V) (solder_mask_margin 0.1016))
(pad S smd rect (at 0 1.27 180) (size 2.54 1.778) (layers Top F.Paste F.Mask)
(net 20 "Net-(J1-Pad3)") (solder_mask_margin 0.1016))
)
(gr_text JLCJLCJLCJLC (at 182.5625 85.7885) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.16)) (justify left mirror))
)
(gr_poly (pts (xy 182.4355 110.236) (xy 181.864 110.236) (xy 181.864 108.0135) (xy 182.4355 108.0135)) (layer B.Mask) (width 0.1) (tstamp 5FCAB088))
(gr_poly (pts (xy 182.4355 101.346) (xy 181.864 101.346) (xy 181.864 99.1235) (xy 182.4355 99.1235)) (layer B.Mask) (width 0.1) (tstamp 5FCAB086))
(gr_poly (pts (xy 182.4355 92.456) (xy 181.864 92.456) (xy 181.864 90.2335) (xy 182.4355 90.2335)) (layer B.Mask) (width 0.1))
(gr_poly (pts (xy 182.626 92.71) (xy 181.864 92.71) (xy 181.864 90.17) (xy 182.626 90.17)) (layer Cmts.User) (width 0.1))
(gr_line (start 113.5761 125.6411) (end 183.4261 125.6411) (layer Edge.Cuts) (width 0.05) (tstamp 7954110))
(gr_line (start 183.4261 125.6411) (end 183.4261 84.3661) (layer Edge.Cuts) (width 0.05) (tstamp 7953490))
(gr_line (start 183.4261 84.3661) (end 113.5761 84.3661) (layer Edge.Cuts) (width 0.05) (tstamp 7953530))
(gr_line (start 113.5761 84.3661) (end 113.5761 125.6411) (layer Edge.Cuts) (width 0.05) (tstamp 7953C10))
(gr_text D4 (at 139.573 89.3191) (layer F.SilkS) (tstamp 7954930)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text D5 (at 141.986 89.3191) (layer F.SilkS) (tstamp 79541B0)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text D6 (at 144.399 89.3191) (layer F.SilkS) (tstamp 7953A30)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text D7 (at 147.066 89.3191) (layer F.SilkS) (tstamp 7954250)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text E (at 127.127 89.3191) (layer F.SilkS) (tstamp 7954890)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text ~W (at 124.46 89.3191) (layer F.SilkS) (tstamp 7953B70)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text RS (at 121.666 89.3191) (layer F.SilkS) (tstamp 7952C70)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text CNT (at 118.872 89.3191) (layer F.SilkS) (tstamp 7952E50)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text 5V (at 116.586 89.3191) (layer F.SilkS) (tstamp 7953D50)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text GND (at 113.792 89.3191) (layer F.SilkS) (tstamp 79551F0)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text B+ (at 149.479 89.3191) (layer F.SilkS) (tstamp 7954C50)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text B- (at 152.146 89.3191) (layer F.SilkS) (tstamp 7953E90)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text + (at 176.627068 109.849891) (layer F.SilkS) (tstamp 79549D0)
(effects (font (size 1.6891 1.6891) (thickness 0.23114)) (justify left bottom))
)
(gr_text + (at 176.627068 100.964078) (layer F.SilkS) (tstamp 7954390)
(effects (font (size 1.6891 1.6891) (thickness 0.23114)) (justify left bottom))
)
(gr_text + (at 176.627068 92.058031) (layer F.SilkS) (tstamp 7954610)
(effects (font (size 1.6891 1.6891) (thickness 0.23114)) (justify left bottom))
)
(gr_text 5V (at 175.2981 103.0351) (layer F.SilkS) (tstamp 7954CF0)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text GND (at 175.2981 105.8291) (layer F.SilkS) (tstamp 7954ED0)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text LE1 (at 175.2981 108.3691) (layer F.SilkS) (tstamp 8EFDFE0)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text BTN (at 175.2981 110.9091) (layer F.SilkS) (tstamp 8EFC780)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text MO (at 121.92 104.902) (layer F.SilkS) (tstamp 8EFC6E0)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify right top))
)
(gr_text SCK (at 121.92 102.362) (layer F.SilkS) (tstamp 8EFC140)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify right top))
)
(gr_text GND (at 121.92 112.522) (layer F.SilkS) (tstamp 8EFDC20)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify right top))
)
(gr_text LBK (at 121.92 107.442) (layer F.SilkS) (tstamp 8EFC500)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify right top))
)
(gr_text LCK (at 121.92 109.982) (layer F.SilkS) (tstamp 8EFD040)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify right top))
)
(gr_text Up (at 146.5961 99.4791) (layer F.SilkS) (tstamp 8EFC1E0)
(effects (font (size 1.59258 1.59258) (thickness 0.217932)) (justify left bottom))
)
(gr_text Right (at 159.0421 110.6551) (layer F.SilkS) (tstamp 8EFD180)
(effects (font (size 1.59258 1.59258) (thickness 0.217932)) (justify left bottom))
)
(gr_text Left (at 131.6101 110.6551) (layer F.SilkS) (tstamp 8EFDAE0)
(effects (font (size 1.59258 1.59258) (thickness 0.217932)) (justify left bottom))
)
(gr_text Down (at 145.0721 122.0851) (layer F.SilkS) (tstamp 8EFD9A0)
(effects (font (size 1.59258 1.59258) (thickness 0.217932)) (justify left bottom))
)
(gr_text "HeaterMeter v4.3" (at 169.2021 123.1011) (layer F.SilkS) (tstamp 8EFD0E0)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "LCD Backpack v5" (at 169.2021 124.6251) (layer F.SilkS) (tstamp 8EFDA40)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text GND (at 175.2981 113.1951) (layer F.SilkS) (tstamp 8EFC3C0)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text CONTRAST (at 114.5921 116.4971) (layer F.SilkS) (tstamp 8EFC640)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text 5V (at 119.126 97.1931) (layer F.SilkS) (tstamp 8EFC8C0)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text MO (at 124.079 97.1931) (layer F.SilkS) (tstamp 8EFD4A0)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text LCK (at 128.905 97.1931) (layer F.SilkS) (tstamp 8EFCBE0)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text SCK (at 131.445 97.1931) (layer F.SilkS) (tstamp 8EFCDC0)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify left bottom))
)
(gr_text GND (at 139.065 93.218) (layer F.SilkS) (tstamp 8EFCC80)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify right top))
)
(gr_text D7 (at 136.017 93.218) (layer F.SilkS) (tstamp 3065A30)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify right top))
)
(gr_text D6 (at 133.477 93.218) (layer F.SilkS) (tstamp 3066ED0)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify right top))
)
(gr_text D5 (at 130.937 93.218) (layer F.SilkS) (tstamp 3066390)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify right top))
)
(gr_text D4 (at 128.397 93.218) (layer F.SilkS) (tstamp 3067470)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify right top))
)
(gr_text E (at 125.3871 93.218) (layer F.SilkS) (tstamp 3065AD0)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify right top))
)
(gr_text RS (at 123.3551 93.218) (layer F.SilkS) (tstamp 30675B0)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify right top))
)
(via (at 147.8661 109.1311) (size 0.9064) (drill 0.5) (layers Top Bottom) (net 1) (tstamp 80E8EE0))
(via (at 156.7561 119.2911) (size 0.9064) (drill 0.5) (layers Top Bottom) (net 1) (tstamp 80E9020))
(via (at 150.4061 92.6211) (size 0.9064) (drill 0.5) (layers Top Bottom) (net 1) (tstamp 80E8260))
(segment (start 177.0761 104.5591) (end 177.0761 116.4971) (width 0.3048) (layer Top) (net 2) (tstamp 80EAB00))
(segment (start 115.1001 91.3511) (end 116.1161 90.3351) (width 0.3048) (layer Top) (net 2) (tstamp 80EB960))
(segment (start 116.1161 90.3351) (end 116.1161 86.5251) (width 0.3048) (layer Top) (net 2) (tstamp 80EC400))
(segment (start 116.1161 86.5251) (end 116.3701 86.2711) (width 0.3048) (layer Top) (net 2) (tstamp 80EC540))
(segment (start 116.3701 86.2711) (end 117.3861 86.2711) (width 0.3048) (layer Top) (net 2) (tstamp 80EB000))
(segment (start 161.8361 94.9071) (end 161.8361 90.5891) (width 0.3048) (layer Top) (net 2) (tstamp 80EBE60))
(segment (start 150.4061 88.0491) (end 150.4061 86.2711) (width 0.3048) (layer Top) (net 2) (tstamp 80EC5E0))
(segment (start 153.2001 88.5571) (end 150.9141 88.5571) (width 0.3048) (layer Top) (net 2) (tstamp 80EABA0))
(segment (start 150.9141 88.5571) (end 150.4061 88.0491) (width 0.3048) (layer Top) (net 2) (tstamp 80EC860))
(segment (start 166.9161 124.3711) (end 160.5661 124.3711) (width 0.3048) (layer Top) (net 2) (tstamp 80EC680))
(segment (start 160.5661 124.3711) (end 151.6761 124.3711) (width 0.3048) (layer Top) (net 2) (tstamp 80EC720))
(segment (start 151.6761 124.3711) (end 149.3901 122.0851) (width 0.3048) (layer Top) (net 2) (tstamp 80EB0A0))
(segment (start 149.3901 122.0851) (end 146.3421 122.0851) (width 0.3048) (layer Top) (net 2) (tstamp 80ECAE0))
(segment (start 146.3421 122.0851) (end 144.0561 124.3711) (width 0.3048) (layer Top) (net 2) (tstamp 80EB140))
(segment (start 117.3861 98.9711) (end 119.9261 98.9711) (width 0.3048) (layer Top) (net 2) (tstamp 80EA600))
(segment (start 119.9261 96.9391) (end 120.6881 96.1771) (width 0.3048) (layer Top) (net 2) (tstamp 80EB8C0))
(segment (start 120.6881 96.1771) (end 134.1501 96.1771) (width 0.3048) (layer Top) (net 2) (tstamp 80EB1E0))
(segment (start 134.1501 96.1771) (end 135.1661 97.1931) (width 0.3048) (layer Top) (net 2) (tstamp 80EB280))
(segment (start 135.1661 97.1931) (end 135.1661 98.9711) (width 0.3048) (layer Top) (net 2) (tstamp 80EBA00))
(segment (start 119.9261 98.9711) (end 119.9261 96.9391) (width 0.3048) (layer Top) (net 2) (tstamp 80EB460))
(segment (start 119.9261 98.9711) (end 119.9261 100.2411) (width 0.3048) (layer Top) (net 2) (tstamp 80EB500))
(segment (start 119.9261 100.2411) (end 119.9261 101.5111) (width 0.3048) (layer Top) (net 2) (tstamp 80EB5A0))
(segment (start 119.9261 101.5111) (end 119.9261 114.2111) (width 0.3048) (layer Top) (net 2) (tstamp 80EB640))
(segment (start 177.0761 104.5591) (end 177.0761 104.0511) (width 0.3048) (layer Top) (net 2) (tstamp 80EB6E0))
(segment (start 177.0761 104.0511) (end 175.8061 102.7811) (width 0.3048) (layer Top) (net 2) (tstamp 80EB780))
(segment (start 175.8061 102.7811) (end 173.2661 102.7811) (width 0.3048) (layer Top) (net 2) (tstamp 80EB820))
(segment (start 173.2661 102.7811) (end 169.7101 102.7811) (width 0.3048) (layer Top) (net 2) (tstamp 80EBAA0))
(segment (start 160.5661 115.7351) (end 160.5661 116.7511) (width 0.3048) (layer Top) (net 2) (tstamp 80ECCC0))
(segment (start 160.5661 116.7511) (end 160.5661 115.7351) (width 0.3048) (layer Top) (net 2) (tstamp 80EE7A0))
(segment (start 160.5661 115.7351) (end 158.5341 113.7031) (width 0.3048) (layer Top) (net 2) (tstamp 80EE520))
(segment (start 158.5341 113.7031) (end 155.9941 113.7031) (width 0.3048) (layer Top) (net 2) (tstamp 80EEFC0))
(segment (start 155.9941 113.7031) (end 153.9621 111.6711) (width 0.3048) (layer Top) (net 2) (tstamp 80EE3E0))
(segment (start 153.9621 111.6711) (end 151.6761 111.6711) (width 0.3048) (layer Top) (net 2) (tstamp 80ED580))
(segment (start 137.1981 123.8631) (end 130.0861 116.7511) (width 0.3048) (layer Top) (net 2) (tstamp 80EE840))
(segment (start 130.0861 116.7511) (end 130.0861 115.4811) (width 0.3048) (layer Top) (net 2) (tstamp 80ED6C0))
(segment (start 166.9161 124.3711) (end 169.2021 124.3711) (width 0.3048) (layer Top) (net 2) (tstamp 80EE8E0))
(segment (start 169.2021 124.3711) (end 177.0761 116.4971) (width 0.3048) (layer Top) (net 2) (tstamp 80EE980))
(segment (start 160.5661 116.7511) (end 160.5661 124.3711) (width 0.3048) (layer Top) (net 2) (tstamp 80ED080))
(segment (start 169.7101 102.7811) (end 168.1861 102.7811) (width 0.3048) (layer Top) (net 2) (tstamp 80EF060))
(segment (start 168.1861 102.7811) (end 161.8361 96.4311) (width 0.3048) (layer Top) (net 2) (tstamp 80EEA20))
(segment (start 161.8361 96.4311) (end 161.8361 94.9071) (width 0.3048) (layer Top) (net 2) (tstamp 80ED440))
(segment (start 161.8361 90.5891) (end 161.8361 89.3191) (width 0.3048) (layer Top) (net 2) (tstamp 80EEAC0))
(segment (start 161.8361 89.3191) (end 161.0741 88.5571) (width 0.3048) (layer Top) (net 2) (tstamp 80ED620))
(segment (start 161.0741 88.5571) (end 153.2001 88.5571) (width 0.3048) (layer Top) (net 2) (tstamp 80ECD60))
(segment (start 144.0561 124.3711) (end 123.4821 124.3711) (width 0.3048) (layer Top) (net 2) (tstamp 80EF100))
(segment (start 123.4821 124.3711) (end 121.1961 122.0851) (width 0.3048) (layer Top) (net 2) (tstamp 80EE0C0))
(segment (start 121.1961 122.0851) (end 119.2911 122.0851) (width 0.3048) (layer Top) (net 2) (tstamp 80EE480))
(segment (start 119.2911 122.0851) (end 117.1321 122.0851) (width 0.3048) (layer Top) (net 2) (tstamp 80EEB60))
(segment (start 117.1321 122.0851) (end 115.1001 120.0531) (width 0.3048) (layer Top) (net 2) (tstamp 80EDA80))
(segment (start 115.1001 91.3511) (end 115.1001 120.0531) (width 0.3048) (layer Top) (net 2) (tstamp 80EDEE0))
(segment (start 117.3861 123.1011) (end 119.2911 123.1011) (width 0.3048) (layer Bottom) (net 2) (tstamp 80ED120))
(via (at 119.2911 123.1011) (size 0.9064) (drill 0.5) (layers Top Bottom) (net 2) (tstamp 80EDB20))
(segment (start 119.2911 123.1011) (end 119.2911 122.0851) (width 0.3048) (layer Top) (net 2) (tstamp 80EEC00))
(segment (start 119.9261 114.2111) (end 121.1961 115.4811) (width 0.3048) (layer Top) (net 2) (tstamp 80EECA0))
(segment (start 121.1961 115.4811) (end 121.1961 122.0851) (width 0.3048) (layer Top) (net 2) (tstamp 80EED40))
(segment (start 151.6761 104.0511) (end 151.6761 111.6711) (width 0.3048) (layer Top) (net 2) (tstamp 80EEDE0))
(segment (start 151.6761 111.6711) (end 151.6761 115.7351) (width 0.3048) (layer Top) (net 2) (tstamp 80EEE80))
(segment (start 151.6761 115.7351) (end 143.5481 123.8631) (width 0.3048) (layer Top) (net 2) (tstamp 80EDF80))
(segment (start 143.5481 123.8631) (end 137.1981 123.8631) (width 0.3048) (layer Top) (net 2) (tstamp 80ECE00))
(segment (start 122.4661 98.9711) (end 122.4661 97.1931) (width 0.3048) (layer Bottom) (net 3) (tstamp 80F4730))
(segment (start 122.4661 97.1931) (end 123.4821 96.1771) (width 0.3048) (layer Bottom) (net 3) (tstamp 80F2F70))
(segment (start 123.4821 96.1771) (end 146.0881 96.1771) (width 0.3048) (layer Bottom) (net 3) (tstamp 80F27F0))
(via (at 146.0881 96.1771) (size 0.9064) (drill 0.5) (layers Top Bottom) (net 3) (tstamp 80F47D0))
(segment (start 146.0881 96.1771) (end 147.8661 96.1771) (width 0.3048) (layer Top) (net 3) (tstamp 80F4910))
(segment (start 147.8661 96.1771) (end 148.3741 96.6851) (width 0.3048) (layer Top) (net 3) (tstamp 80F2890))
(segment (start 148.3741 96.6851) (end 154.9781 96.6851) (width 0.3048) (layer Top) (net 3) (tstamp 80F4A50))
(segment (start 154.9781 96.6851) (end 155.9941 97.7011) (width 0.3048) (layer Top) (net 3) (tstamp 80F3510))
(segment (start 155.9941 97.7011) (end 158.0261 97.7011) (width 0.3048) (layer Top) (net 3) (tstamp 80F4AF0))
(segment (start 125.0061 100.4951) (end 125.0061 98.9711) (width 0.3048) (layer Top) (net 4) (tstamp 80ED800))
(segment (start 123.7361 105.3211) (end 121.9581 105.3211) (width 0.3048) (layer Top) (net 4) (tstamp 80ED8A0))
(segment (start 121.9581 105.3211) (end 121.1961 104.5591) (width 0.3048) (layer Top) (net 4) (tstamp 80ED3A0))
(segment (start 121.1961 104.5591) (end 121.1961 102.0191) (width 0.3048) (layer Top) (net 4) (tstamp 80ED940))
(segment (start 121.1961 102.0191) (end 122.2121 101.0031) (width 0.3048) (layer Top) (net 4) (tstamp 80ECEA0))
(segment (start 122.2121 101.0031) (end 124.4981 101.0031) (width 0.3048) (layer Top) (net 4) (tstamp 80EE2A0))
(segment (start 124.4981 101.0031) (end 125.0061 100.4951) (width 0.3048) (layer Top) (net 4) (tstamp 80EDBC0))
(segment (start 131.6101 103.2891) (end 133.8961 101.0031) (width 0.3048) (layer Top) (net 5) (tstamp 80EBDC0))
(segment (start 133.8961 101.0031) (end 133.8961 97.7011) (width 0.3048) (layer Top) (net 5) (tstamp 80EC900))
(segment (start 133.8961 97.7011) (end 133.1341 96.9391) (width 0.3048) (layer Top) (net 5) (tstamp 80EB320))
(segment (start 133.1341 96.9391) (end 130.5941 96.9391) (width 0.3048) (layer Top) (net 5) (tstamp 80EACE0))
(segment (start 130.5941 96.9391) (end 130.0861 97.4471) (width 0.3048) (layer Top) (net 5) (tstamp 80EAEC0))
(segment (start 130.0861 97.4471) (end 130.0861 98.9711) (width 0.3048) (layer Top) (net 5) (tstamp 80EC040))
(segment (start 123.7361 110.4011) (end 125.2601 110.4011) (width 0.3048) (layer Top) (net 5) (tstamp 80EC220))
(segment (start 125.2601 110.4011) (end 126.0221 109.6391) (width 0.3048) (layer Top) (net 5) (tstamp 80EA9C0))
(segment (start 126.0221 109.6391) (end 126.0221 104.0511) (width 0.3048) (layer Top) (net 5) (tstamp 80EC7C0))
(segment (start 126.0221 104.0511) (end 126.7841 103.2891) (width 0.3048) (layer Top) (net 5) (tstamp 80EC2C0))
(segment (start 126.7841 103.2891) (end 131.6101 103.2891) (width 0.3048) (layer Top) (net 5) (tstamp 80EAA60))
(segment (start 131.6101 102.2731) (end 132.6261 101.2571) (width 0.3048) (layer Top) (net 6) (tstamp 80EE340))
(segment (start 132.6261 101.2571) (end 132.6261 98.9711) (width 0.3048) (layer Top) (net 6) (tstamp 80EDD00))
(segment (start 131.6101 102.2731) (end 126.7841 102.2731) (width 0.3048) (layer Top) (net 6) (tstamp 80EF2E0))
(segment (start 126.7841 102.2731) (end 126.2761 102.7811) (width 0.3048) (layer Top) (net 6) (tstamp 80EF420))
(segment (start 126.2761 102.7811) (end 123.7361 102.7811) (width 0.3048) (layer Top) (net 6) (tstamp 80ED9E0))
(segment (start 142.7861 86.2711) (end 141.7701 86.2711) (width 0.254) (layer Top) (net 8) (tstamp 80F3DD0))
(segment (start 141.7701 86.2711) (end 141.5161 86.5251) (width 0.3048) (layer Top) (net 8) (tstamp 80F3290))
(segment (start 141.5161 86.5251) (end 141.5161 87.5411) (width 0.254) (layer Top) (net 8) (tstamp 80F4190))
(segment (start 141.5161 87.5411) (end 140.2461 88.8111) (width 0.254) (layer Top) (net 8) (tstamp 80F2ED0))
(segment (start 140.2461 88.8111) (end 130.8481 88.8111) (width 0.254) (layer Top) (net 8) (tstamp 80F2930))
(segment (start 130.8481 88.8111) (end 130.0861 89.5731) (width 0.254) (layer Top) (net 8) (tstamp 80F4370))
(segment (start 130.0861 89.5731) (end 130.0861 91.3511) (width 0.254) (layer Top) (net 8) (tstamp 80F3AB0))
(segment (start 145.3261 86.2711) (end 144.3101 86.2711) (width 0.254) (layer Top) (net 9) (tstamp 80F36F0))
(segment (start 144.3101 86.2711) (end 144.0561 86.5251) (width 0.254) (layer Top) (net 9) (tstamp 80F2570))
(segment (start 144.0561 86.5251) (end 144.0561 87.7951) (width 0.254) (layer Top) (net 9) (tstamp 80F2610))
(segment (start 144.0561 87.7951) (end 142.5321 89.3191) (width 0.254) (layer Top) (net 9) (tstamp 80F3BF0))
(segment (start 142.5321 89.3191) (end 133.1341 89.3191) (width 0.254) (layer Top) (net 9) (tstamp 80F40F0))
(segment (start 133.1341 89.3191) (end 132.6261 89.8271) (width 0.254) (layer Top) (net 9) (tstamp 80F3F10))
(segment (start 132.6261 89.8271) (end 132.6261 91.3511) (width 0.254) (layer Top) (net 9) (tstamp 80F33D0))
(segment (start 140.2461 86.2711) (end 139.2301 86.2711) (width 0.254) (layer Top) (net 10) (tstamp 80F3470))
(segment (start 139.2301 86.2711) (end 138.9761 86.5251) (width 0.254) (layer Top) (net 10) (tstamp 80F26B0))
(segment (start 138.9761 86.5251) (end 138.9761 87.5411) (width 0.254) (layer Top) (net 10) (tstamp 80F4230))
(segment (start 138.9761 87.5411) (end 138.2141 88.3031) (width 0.254) (layer Top) (net 10) (tstamp 80F38D0))
(segment (start 138.2141 88.3031) (end 128.8161 88.3031) (width 0.254) (layer Top) (net 10) (tstamp 80F3E70))
(segment (start 128.8161 88.3031) (end 127.5461 89.5731) (width 0.254) (layer Top) (net 10) (tstamp 80F42D0))
(segment (start 127.5461 89.5731) (end 127.5461 91.3511) (width 0.254) (layer Top) (net 10) (tstamp 80F3330))
(segment (start 127.5461 86.2711) (end 126.5301 86.2711) (width 0.3048) (layer Top) (net 11) (tstamp 80E9840))
(segment (start 126.5301 86.2711) (end 126.2761 86.5251) (width 0.3048) (layer Top) (net 11) (tstamp 80E9DE0))
(segment (start 126.2761 86.5251) (end 126.2761 87.5411) (width 0.3048) (layer Top) (net 11) (tstamp 80E9200))
(segment (start 126.2761 87.5411) (end 125.0061 88.8111) (width 0.3048) (layer Top) (net 11) (tstamp 80E9160))
(segment (start 125.0061 88.8111) (end 125.0061 91.3511) (width 0.3048) (layer Top) (net 11) (tstamp 80E9C00))
(segment (start 135.1661 91.3511) (end 135.1661 92.8751) (width 0.254) (layer Top) (net 12) (tstamp 80EFBA0))
(segment (start 135.1661 92.8751) (end 135.6741 93.3831) (width 0.254) (layer Top) (net 12) (tstamp 80EF880))
(segment (start 135.6741 93.3831) (end 137.9601 93.3831) (width 0.254) (layer Top) (net 12) (tstamp 80EFB00))
(segment (start 137.9601 93.3831) (end 141.0081 90.3351) (width 0.254) (layer Top) (net 12) (tstamp 80EF600))
(segment (start 141.0081 90.3351) (end 144.0561 90.3351) (width 0.254) (layer Top) (net 12) (tstamp 80EF920))
(segment (start 144.0561 90.3351) (end 146.5961 87.7951) (width 0.254) (layer Top) (net 12) (tstamp 80EF4C0))
(segment (start 146.5961 87.7951) (end 146.5961 86.5251) (width 0.254) (layer Top) (net 12) (tstamp 80EF6A0))
(segment (start 146.5961 86.5251) (end 146.8501 86.2711) (width 0.254) (layer Top) (net 12) (tstamp 80EF740))
(segment (start 146.8501 86.2711) (end 147.8661 86.2711) (width 0.254) (layer Top) (net 12) (tstamp 80F2C50))
(segment (start 122.4661 86.2711) (end 122.4661 91.3511) (width 0.3048) (layer Top) (net 13) (tstamp 80F4550))
(segment (start 119.9261 91.3511) (end 119.9261 93.1291) (width 0.3048) (layer Top) (net 14) (tstamp 80F3790))
(segment (start 119.9261 93.1291) (end 120.9421 94.1451) (width 0.3048) (layer Top) (net 14) (tstamp 80F2BB0))
(segment (start 120.9421 94.1451) (end 138.2141 94.1451) (width 0.3048) (layer Top) (net 14) (tstamp 80F3150))
(segment (start 138.2141 94.1451) (end 141.0081 91.3511) (width 0.3048) (layer Top) (net 14) (tstamp 80F31F0))
(segment (start 141.0081 91.3511) (end 144.8181 91.3511) (width 0.3048) (layer Top) (net 14) (tstamp 80F3830))
(segment (start 144.8181 91.3511) (end 146.3421 89.8271) (width 0.3048) (layer Top) (net 14) (tstamp 80F3970))
(segment (start 146.3421 89.8271) (end 152.6921 89.8271) (width 0.3048) (layer Top) (net 14) (tstamp 80F3A10))
(segment (start 152.6921 89.8271) (end 156.7561 93.8911) (width 0.3048) (layer Top) (net 14) (tstamp 80F3B50))
(segment (start 156.7561 93.8911) (end 158.0261 95.1611) (width 0.3048) (layer Top) (net 14) (tstamp 80F4EB0))
(segment (start 160.5661 90.0811) (end 160.5661 87.5411) (width 0.3048) (layer Bottom) (net 15) (tstamp 80F4B90))
(segment (start 160.5661 87.5411) (end 159.2961 86.2711) (width 0.3048) (layer Bottom) (net 15) (tstamp 80F2CF0))
(segment (start 159.2961 86.2711) (end 152.9461 86.2711) (width 0.3048) (layer Bottom) (net 15) (tstamp 80F29D0))
(segment (start 115.6081 117.0051) (end 115.6081 91.6051) (width 0.3048) (layer Top) (net 20) (tstamp 80EDDA0))
(segment (start 115.6081 91.6051) (end 118.6561 88.5571) (width 0.3048) (layer Top) (net 20) (tstamp 80EDE40))
(segment (start 118.6561 88.5571) (end 118.6561 86.5251) (width 0.3048) (layer Top) (net 20) (tstamp 80EE020))
(segment (start 118.6561 86.5251) (end 118.9101 86.2711) (width 0.3048) (layer Top) (net 20) (tstamp 80ED260))
(segment (start 118.9101 86.2711) (end 119.9261 86.2711) (width 0.3048) (layer Top) (net 20) (tstamp 80ECFE0))
(segment (start 118.6561 120.5611) (end 116.8781 120.5611) (width 0.3048) (layer Top) (net 20) (tstamp 80EE200))
(segment (start 116.8781 120.5611) (end 115.6081 119.2911) (width 0.3048) (layer Top) (net 20) (tstamp 80ED300))
(segment (start 115.6081 119.2911) (end 115.6081 117.0051) (width 0.3048) (layer Top) (net 20) (tstamp 80EF560))
(segment (start 123.7361 107.8611) (end 121.9581 107.8611) (width 0.3048) (layer Top) (net 21) (tstamp 80E8300))
(segment (start 121.9581 107.8611) (end 120.9421 108.8771) (width 0.3048) (layer Top) (net 21) (tstamp 80E7EA0))
(segment (start 120.9421 108.8771) (end 120.9421 112.9411) (width 0.3048) (layer Top) (net 21) (tstamp 80E7F40))
(segment (start 139.2301 101.5111) (end 139.2301 94.1451) (width 0.3048) (layer Top) (net 21) (tstamp 80E7FE0))
(segment (start 139.2301 94.1451) (end 141.0081 92.3671) (width 0.3048) (layer Top) (net 21) (tstamp 80EA880))
(segment (start 141.0081 92.3671) (end 145.8341 92.3671) (width 0.3048) (layer Top) (net 21) (tstamp 80ECB80))
(segment (start 145.8341 92.3671) (end 149.6441 96.1771) (width 0.3048) (layer Top) (net 21) (tstamp 80EA740))
(segment (start 149.6441 96.1771) (end 156.5021 96.1771) (width 0.3048) (layer Top) (net 21) (tstamp 80EBC80))
(segment (start 156.5021 96.1771) (end 156.7561 96.4311) (width 0.3048) (layer Top) (net 21) (tstamp 80ECC20))
(segment (start 156.7561 96.4311) (end 159.0421 96.4311) (width 0.3048) (layer Top) (net 21) (tstamp 80EAC40))
(segment (start 159.0421 96.4311) (end 159.5501 95.9231) (width 0.3048) (layer Top) (net 21) (tstamp 80EC0E0))
(segment (start 159.5501 95.9231) (end 159.5501 94.6531) (width 0.3048) (layer Top) (net 21) (tstamp 80EAD80))
(segment (start 159.5501 94.6531) (end 158.5341 93.6371) (width 0.3048) (layer Top) (net 21) (tstamp 80EA560))
(segment (start 158.5341 93.6371) (end 158.5341 91.4781) (width 0.3048) (layer Top) (net 21) (tstamp 80EA7E0))
(segment (start 158.5341 91.4781) (end 158.6611 91.3511) (width 0.3048) (layer Top) (net 21) (tstamp 80EC360))
(segment (start 120.9421 112.9411) (end 120.9421 113.7031) (width 0.3048) (layer Top) (net 21) (tstamp 80EC180))
(segment (start 120.9421 113.7031) (end 122.4661 115.2271) (width 0.3048) (layer Top) (net 21) (tstamp 80EAF60))
(segment (start 122.4661 115.2271) (end 125.5141 115.2271) (width 0.3048) (layer Top) (net 21) (tstamp 80EBD20))
(segment (start 125.5141 115.2271) (end 139.2301 101.5111) (width 0.3048) (layer Top) (net 21) (tstamp 80EAE20))
(segment (start 140.1461 105.3611) (end 140.1461 105.9831) (width 0.3048) (layer Top) (net 22) (tstamp 80F58B0))
(segment (start 140.1461 105.9831) (end 142.2781 108.1151) (width 0.3048) (layer Top) (net 22) (tstamp 80F5950))
(segment (start 142.2781 108.1151) (end 142.2781 113.4491) (width 0.3048) (layer Top) (net 22) (tstamp 80F56D0))
(segment (start 142.2781 113.4491) (end 139.2301 116.4971) (width 0.3048) (layer Top) (net 22) (tstamp 80F6030))
(segment (start 139.2301 116.4971) (end 139.2301 119.7991) (width 0.3048) (layer Top) (net 22) (tstamp 80F5C70))
(segment (start 139.2301 119.7991) (end 141.2621 121.8311) (width 0.3048) (layer Top) (net 22) (tstamp 80F4FF0))
(segment (start 141.2621 121.8311) (end 141.5761 121.8311) (width 0.3048) (layer Top) (net 22) (tstamp 80F60D0))
(segment (start 141.5761 121.8311) (end 141.6161 121.7911) (width 0.3048) (layer Top) (net 22) (tstamp 80F65D0))
(segment (start 142.2781 108.1151) (end 145.5801 108.1151) (width 0.3048) (layer Top) (net 22) (tstamp 80F6210))
(segment (start 145.5801 108.1151) (end 150.6601 103.0351) (width 0.3048) (layer Top) (net 22) (tstamp 80F5D10))
(segment (start 150.6601 103.0351) (end 150.9141 102.7811) (width 0.3048) (layer Top) (net 22) (tstamp 80F6DF0))
(segment (start 140.1461 105.3611) (end 140.1461 101.6111) (width 0.3048) (layer Top) (net 22) (tstamp 80F6E90))
(segment (start 140.1461 101.6111) (end 141.5161 100.2411) (width 0.3048) (layer Top) (net 22) (tstamp 80F5B30))
(segment (start 141.5161 100.2411) (end 141.5161 99.0311) (width 0.3048) (layer Top) (net 22) (tstamp 80F5EF0))
(segment (start 141.5161 99.0311) (end 141.6161 98.9311) (width 0.3048) (layer Top) (net 22) (tstamp 80F5770))
(segment (start 173.2661 110.4011) (end 170.9801 110.4011) (width 0.3048) (layer Top) (net 22) (tstamp 80F59F0))
(segment (start 170.9801 110.4011) (end 168.1861 107.6071) (width 0.3048) (layer Top) (net 22) (tstamp 80F5DB0))
(segment (start 168.1861 107.6071) (end 168.1861 105.4611) (width 0.3048) (layer Top) (net 22) (tstamp 80F6F30))
(segment (start 168.1861 105.4611) (end 168.0861 105.3611) (width 0.3048) (layer Top) (net 22) (tstamp 80F5E50))
(segment (start 168.0861 105.3611) (end 159.3361 105.3611) (width 0.3048) (layer Top) (net 22) (tstamp 80F6FD0))
(segment (start 159.3361 105.3611) (end 156.7561 102.7811) (width 0.3048) (layer Top) (net 22) (tstamp 80F7070))
(segment (start 156.7561 102.7811) (end 150.9141 102.7811) (width 0.3048) (layer Top) (net 22) (tstamp 80F7110))
(segment (start 150.9141 102.7811) (end 150.6601 103.0351) (width 0.3048) (layer Top) (net 22) (tstamp 80F71B0))
(segment (start 173.2661 107.8611) (end 175.2981 107.8611) (width 0.3048) (layer Top) (net 23) (tstamp 80F54F0))
(segment (start 175.2981 107.8611) (end 176.0601 108.6231) (width 0.3048) (layer Top) (net 23) (tstamp 80F51D0))
(segment (start 176.0601 108.6231) (end 176.0601 114.4651) (width 0.3048) (layer Top) (net 23) (tstamp 80F63F0))
(segment (start 176.0601 114.4651) (end 173.7741 116.7511) (width 0.3048) (layer Top) (net 23) (tstamp 80F68F0))
(segment (start 173.7741 116.7511) (end 170.7261 116.7511) (width 0.3048) (layer Top) (net 23) (tstamp 80F6710))
(segment (start 178.3461 116.7511) (end 178.3461 110.4011) (width 0.3048) (layer Top) (net 24) (tstamp 80F2070))
(segment (start 178.3461 110.4011) (end 179.6161 109.1311) (width 0.3048) (layer Top) (net 24) (tstamp 80F21B0))
(segment (start 165.6461 97.7011) (end 178.3461 97.7011) (width 0.3048) (layer Top) (net 25) (tstamp 80F77F0))
(segment (start 178.3461 97.7011) (end 179.6161 98.9711) (width 0.3048) (layer Top) (net 25) (tstamp 80F7930))
(segment (start 179.6161 98.9711) (end 179.6161 100.2411) (width 0.3048) (layer Top) (net 25) (tstamp 80F1B70))
(segment (start 177.0761 92.6211) (end 178.3461 91.3511) (width 0.3048) (layer Top) (net 26) (tstamp 80F5310))
(segment (start 178.3461 91.3511) (end 179.6161 91.3511) (width 0.3048) (layer Top) (net 26) (tstamp 80F6D50))
(segment (start 177.0761 92.6211) (end 168.1861 92.6211) (width 0.3048) (layer Top) (net 26) (tstamp 80F6990))
(segment (start 168.1861 92.6211) (end 166.9161 93.8911) (width 0.3048) (layer Top) (net 26) (tstamp 80F7390))
(segment (start 166.9161 93.8911) (end 165.6461 95.1611) (width 0.3048) (layer Top) (net 26) (tstamp 80F53B0))
(segment (start 144.0561 111.6711) (end 144.0561 115.4811) (width 0.3048) (layer Top) (net 27) (tstamp 80F5450))
(segment (start 144.0561 115.4811) (end 142.7861 116.7511) (width 0.3048) (layer Top) (net 27) (tstamp 80F67B0))
(segment (start 142.7861 116.7511) (end 141.6561 116.7511) (width 0.3048) (layer Top) (net 27) (tstamp 80F4E10))
(segment (start 141.6561 116.7511) (end 141.6161 116.7911) (width 0.3048) (layer Top) (net 27) (tstamp 80F6B70))
(segment (start 168.1861 116.7511) (end 168.1861 110.4611) (width 0.3048) (layer Top) (net 28) (tstamp 80F4F50))
(segment (start 168.1861 110.4611) (end 168.0861 110.3611) (width 0.3048) (layer Top) (net 28) (tstamp 80F6C10))
(segment (start 140.1461 110.3611) (end 138.7621 110.3611) (width 0.3048) (layer Top) (net 29) (tstamp 80F7890))
(segment (start 138.7621 110.3611) (end 137.7061 111.4171) (width 0.3048) (layer Top) (net 29) (tstamp 80F7A70))
(segment (start 137.7061 111.4171) (end 137.7061 115.4811) (width 0.3048) (layer Top) (net 29) (tstamp 80F7750))
(segment (start 144.0561 104.0511) (end 144.0561 95.1611) (width 0.3048) (layer Top) (net 30) (tstamp 80F7430))
(segment (start 144.0561 95.1611) (end 142.7861 93.8911) (width 0.3048) (layer Top) (net 30) (tstamp 80F6350))
(segment (start 142.7861 93.8911) (end 141.6561 93.8911) (width 0.3048) (layer Top) (net 30) (tstamp 80F4CD0))
(segment (start 141.6561 93.8911) (end 141.6161 93.9311) (width 0.3048) (layer Top) (net 30) (tstamp 80F76B0))
(zone (net 1) (net_name GND) (layer Bottom) (tstamp 5FCCBC81) (hatch edge 0.508)
(priority 6)
(connect_pads (clearance 0.254))
(min_thickness 0.1524)
(fill yes (arc_segments 32) (thermal_gap 0.4) (thermal_bridge_width 0.4))
(polygon
(pts
(xy 183.6293 125.8443) (xy 113.3729 125.8443) (xy 113.3729 83.5279) (xy 183.6293 83.5279)
)
)
(filled_polygon
(pts
(xy 116.388689 84.741052) (xy 116.277836 84.948443) (xy 116.209574 85.173475) (xy 116.1923 85.348857) (xy 116.1923 87.193344)
(xy 116.209575 87.368726) (xy 116.277837 87.593758) (xy 116.38869 87.801149) (xy 116.537873 87.982928) (xy 116.719652 88.132111)
(xy 116.927043 88.242964) (xy 117.152075 88.311226) (xy 117.3861 88.334276) (xy 117.620126 88.311226) (xy 117.845158 88.242964)
(xy 118.052549 88.132111) (xy 118.234328 87.982928) (xy 118.383511 87.801149) (xy 118.494364 87.593758) (xy 118.562626 87.368726)
(xy 118.5799 87.193344) (xy 118.5799 85.348856) (xy 118.562626 85.173474) (xy 118.494364 84.948442) (xy 118.383511 84.741051)
(xy 118.367302 84.7213) (xy 118.944899 84.7213) (xy 118.928689 84.741052) (xy 118.817836 84.948443) (xy 118.749574 85.173475)
(xy 118.7323 85.348857) (xy 118.7323 87.193344) (xy 118.749575 87.368726) (xy 118.817837 87.593758) (xy 118.92869 87.801149)
(xy 119.077873 87.982928) (xy 119.259652 88.132111) (xy 119.467043 88.242964) (xy 119.692075 88.311226) (xy 119.9261 88.334276)
(xy 120.160126 88.311226) (xy 120.385158 88.242964) (xy 120.592549 88.132111) (xy 120.774328 87.982928) (xy 120.923511 87.801149)
(xy 121.034364 87.593758) (xy 121.102626 87.368726) (xy 121.1199 87.193344) (xy 121.1199 85.348856) (xy 121.102626 85.173474)
(xy 121.034364 84.948442) (xy 120.923511 84.741051) (xy 120.907302 84.7213) (xy 121.484899 84.7213) (xy 121.468689 84.741052)
(xy 121.357836 84.948443) (xy 121.289574 85.173475) (xy 121.2723 85.348857) (xy 121.2723 87.193344) (xy 121.289575 87.368726)
(xy 121.357837 87.593758) (xy 121.46869 87.801149) (xy 121.617873 87.982928) (xy 121.799652 88.132111) (xy 122.007043 88.242964)
(xy 122.232075 88.311226) (xy 122.4661 88.334276) (xy 122.700126 88.311226) (xy 122.925158 88.242964) (xy 123.132549 88.132111)
(xy 123.314328 87.982928) (xy 123.463511 87.801149) (xy 123.574364 87.593758) (xy 123.642626 87.368726) (xy 123.6599 87.193344)
(xy 123.6599 86.3949) (xy 123.6663 86.3949) (xy 123.6663 87.2585) (xy 123.716196 87.517503) (xy 123.815662 87.761795)
(xy 123.960876 87.981988) (xy 124.146257 88.169621) (xy 124.364682 88.317482) (xy 124.607756 88.41989) (xy 124.67513 88.432977)
(xy 124.8823 88.349156) (xy 124.8823 86.3949) (xy 125.1299 86.3949) (xy 125.1299 88.349156) (xy 125.33707 88.432977)
(xy 125.404444 88.41989) (xy 125.647518 88.317482) (xy 125.865943 88.169621) (xy 126.051324 87.981988) (xy 126.196538 87.761795)
(xy 126.296004 87.517503) (xy 126.3459 87.2585) (xy 126.3459 86.3949) (xy 125.1299 86.3949) (xy 124.8823 86.3949)
(xy 123.6663 86.3949) (xy 123.6599 86.3949) (xy 123.6599 85.348856) (xy 123.642626 85.173474) (xy 123.574364 84.948442)
(xy 123.463511 84.741051) (xy 123.447302 84.7213) (xy 123.854641 84.7213) (xy 123.815662 84.780405) (xy 123.716196 85.024697)
(xy 123.6663 85.2837) (xy 123.6663 86.1473) (xy 124.8823 86.1473) (xy 124.8823 86.1273) (xy 125.1299 86.1273)
(xy 125.1299 86.1473) (xy 126.3459 86.1473) (xy 126.3459 85.2837) (xy 126.296004 85.024697) (xy 126.196538 84.780405)
(xy 126.157559 84.7213) (xy 126.564899 84.7213) (xy 126.548689 84.741052) (xy 126.437836 84.948443) (xy 126.369574 85.173475)
(xy 126.3523 85.348857) (xy 126.3523 87.193344) (xy 126.369575 87.368726) (xy 126.437837 87.593758) (xy 126.54869 87.801149)
(xy 126.697873 87.982928) (xy 126.879652 88.132111) (xy 127.087043 88.242964) (xy 127.312075 88.311226) (xy 127.5461 88.334276)
(xy 127.780126 88.311226) (xy 128.005158 88.242964) (xy 128.212549 88.132111) (xy 128.394328 87.982928) (xy 128.543511 87.801149)
(xy 128.654364 87.593758) (xy 128.722626 87.368726) (xy 128.7399 87.193344) (xy 128.7399 85.348856) (xy 128.722626 85.173474)
(xy 128.654364 84.948442) (xy 128.543511 84.741051) (xy 128.527302 84.7213) (xy 129.104899 84.7213) (xy 129.088689 84.741052)
(xy 128.977836 84.948443) (xy 128.909574 85.173475) (xy 128.8923 85.348857) (xy 128.8923 87.193344) (xy 128.909575 87.368726)
(xy 128.977837 87.593758) (xy 129.08869 87.801149) (xy 129.237873 87.982928) (xy 129.419652 88.132111) (xy 129.627043 88.242964)
(xy 129.852075 88.311226) (xy 130.0861 88.334276) (xy 130.320126 88.311226) (xy 130.545158 88.242964) (xy 130.752549 88.132111)
(xy 130.934328 87.982928) (xy 131.083511 87.801149) (xy 131.194364 87.593758) (xy 131.262626 87.368726) (xy 131.2799 87.193344)
(xy 131.2799 85.348856) (xy 131.262626 85.173474) (xy 131.194364 84.948442) (xy 131.083511 84.741051) (xy 131.067302 84.7213)
(xy 131.644899 84.7213) (xy 131.628689 84.741052) (xy 131.517836 84.948443) (xy 131.449574 85.173475) (xy 131.4323 85.348857)
(xy 131.4323 87.193344) (xy 131.449575 87.368726) (xy 131.517837 87.593758) (xy 131.62869 87.801149) (xy 131.777873 87.982928)
(xy 131.959652 88.132111) (xy 132.167043 88.242964) (xy 132.392075 88.311226) (xy 132.6261 88.334276) (xy 132.860126 88.311226)
(xy 133.085158 88.242964) (xy 133.292549 88.132111) (xy 133.474328 87.982928) (xy 133.623511 87.801149) (xy 133.734364 87.593758)
(xy 133.802626 87.368726) (xy 133.8199 87.193344) (xy 133.8199 85.348856) (xy 133.802626 85.173474) (xy 133.734364 84.948442)
(xy 133.623511 84.741051) (xy 133.607302 84.7213) (xy 134.184899 84.7213) (xy 134.168689 84.741052) (xy 134.057836 84.948443)
(xy 133.989574 85.173475) (xy 133.9723 85.348857) (xy 133.9723 87.193344) (xy 133.989575 87.368726) (xy 134.057837 87.593758)
(xy 134.16869 87.801149) (xy 134.317873 87.982928) (xy 134.499652 88.132111) (xy 134.707043 88.242964) (xy 134.932075 88.311226)
(xy 135.1661 88.334276) (xy 135.400126 88.311226) (xy 135.625158 88.242964) (xy 135.832549 88.132111) (xy 136.014328 87.982928)
(xy 136.163511 87.801149) (xy 136.274364 87.593758) (xy 136.342626 87.368726) (xy 136.3599 87.193344) (xy 136.3599 85.348856)
(xy 136.342626 85.173474) (xy 136.274364 84.948442) (xy 136.163511 84.741051) (xy 136.147302 84.7213) (xy 136.724899 84.7213)
(xy 136.708689 84.741052) (xy 136.597836 84.948443) (xy 136.529574 85.173475) (xy 136.5123 85.348857) (xy 136.5123 87.193344)
(xy 136.529575 87.368726) (xy 136.597837 87.593758) (xy 136.70869 87.801149) (xy 136.857873 87.982928) (xy 137.039652 88.132111)
(xy 137.247043 88.242964) (xy 137.472075 88.311226) (xy 137.7061 88.334276) (xy 137.940126 88.311226) (xy 138.165158 88.242964)
(xy 138.372549 88.132111) (xy 138.554328 87.982928) (xy 138.703511 87.801149) (xy 138.814364 87.593758) (xy 138.882626 87.368726)
(xy 138.8999 87.193344) (xy 138.8999 85.348856) (xy 138.882626 85.173474) (xy 138.814364 84.948442) (xy 138.703511 84.741051)
(xy 138.687302 84.7213) (xy 139.264899 84.7213) (xy 139.248689 84.741052) (xy 139.137836 84.948443) (xy 139.069574 85.173475)
(xy 139.0523 85.348857) (xy 139.0523 87.193344) (xy 139.069575 87.368726) (xy 139.137837 87.593758) (xy 139.24869 87.801149)
(xy 139.397873 87.982928) (xy 139.579652 88.132111) (xy 139.787043 88.242964) (xy 140.012075 88.311226) (xy 140.2461 88.334276)
(xy 140.480126 88.311226) (xy 140.705158 88.242964) (xy 140.912549 88.132111) (xy 141.094328 87.982928) (xy 141.243511 87.801149)
(xy 141.354364 87.593758) (xy 141.422626 87.368726) (xy 141.4399 87.193344) (xy 141.4399 85.348856) (xy 141.422626 85.173474)
(xy 141.354364 84.948442) (xy 141.243511 84.741051) (xy 141.227302 84.7213) (xy 141.804899 84.7213) (xy 141.788689 84.741052)
(xy 141.677836 84.948443) (xy 141.609574 85.173475) (xy 141.5923 85.348857) (xy 141.5923 87.193344) (xy 141.609575 87.368726)
(xy 141.677837 87.593758) (xy 141.78869 87.801149) (xy 141.937873 87.982928) (xy 142.119652 88.132111) (xy 142.327043 88.242964)
(xy 142.552075 88.311226) (xy 142.7861 88.334276) (xy 143.020126 88.311226) (xy 143.245158 88.242964) (xy 143.452549 88.132111)
(xy 143.634328 87.982928) (xy 143.783511 87.801149) (xy 143.894364 87.593758) (xy 143.962626 87.368726) (xy 143.9799 87.193344)
(xy 143.9799 85.348856) (xy 143.962626 85.173474) (xy 143.894364 84.948442) (xy 143.783511 84.741051) (xy 143.767302 84.7213)
(xy 144.344899 84.7213) (xy 144.328689 84.741052) (xy 144.217836 84.948443) (xy 144.149574 85.173475) (xy 144.1323 85.348857)
(xy 144.1323 87.193344) (xy 144.149575 87.368726) (xy 144.217837 87.593758) (xy 144.32869 87.801149) (xy 144.477873 87.982928)
(xy 144.659652 88.132111) (xy 144.867043 88.242964) (xy 145.092075 88.311226) (xy 145.3261 88.334276) (xy 145.560126 88.311226)
(xy 145.785158 88.242964) (xy 145.992549 88.132111) (xy 146.174328 87.982928) (xy 146.323511 87.801149) (xy 146.434364 87.593758)
(xy 146.502626 87.368726) (xy 146.5199 87.193344) (xy 146.5199 85.348856) (xy 146.502626 85.173474) (xy 146.434364 84.948442)
(xy 146.323511 84.741051) (xy 146.307302 84.7213) (xy 146.884899 84.7213) (xy 146.868689 84.741052) (xy 146.757836 84.948443)
(xy 146.689574 85.173475) (xy 146.6723 85.348857) (xy 146.6723 87.193344) (xy 146.689575 87.368726) (xy 146.757837 87.593758)
(xy 146.86869 87.801149) (xy 147.017873 87.982928) (xy 147.199652 88.132111) (xy 147.407043 88.242964) (xy 147.632075 88.311226)
(xy 147.8661 88.334276) (xy 148.100126 88.311226) (xy 148.325158 88.242964) (xy 148.532549 88.132111) (xy 148.714328 87.982928)
(xy 148.863511 87.801149) (xy 148.974364 87.593758) (xy 149.042626 87.368726) (xy 149.0599 87.193344) (xy 149.0599 85.348856)
(xy 149.042626 85.173474) (xy 148.974364 84.948442) (xy 148.863511 84.741051) (xy 148.847302 84.7213) (xy 149.424899 84.7213)
(xy 149.408689 84.741052) (xy 149.297836 84.948443) (xy 149.229574 85.173475) (xy 149.2123 85.348857) (xy 149.2123 87.193344)
(xy 149.229575 87.368726) (xy 149.297837 87.593758) (xy 149.40869 87.801149) (xy 149.557873 87.982928) (xy 149.739652 88.132111)
(xy 149.947043 88.242964) (xy 150.172075 88.311226) (xy 150.4061 88.334276) (xy 150.640126 88.311226) (xy 150.865158 88.242964)
(xy 151.072549 88.132111) (xy 151.254328 87.982928) (xy 151.403511 87.801149) (xy 151.514364 87.593758) (xy 151.582626 87.368726)
(xy 151.5999 87.193344) (xy 151.5999 85.348856) (xy 151.582626 85.173474) (xy 151.514364 84.948442) (xy 151.403511 84.741051)
(xy 151.387302 84.7213) (xy 151.964899 84.7213) (xy 151.948689 84.741052) (xy 151.837836 84.948443) (xy 151.769574 85.173475)
(xy 151.7523 85.348857) (xy 151.7523 87.193344) (xy 151.769575 87.368726) (xy 151.837837 87.593758) (xy 151.94869 87.801149)
(xy 152.097873 87.982928) (xy 152.279652 88.132111) (xy 152.487043 88.242964) (xy 152.712075 88.311226) (xy 152.9461 88.334276)
(xy 153.180126 88.311226) (xy 153.405158 88.242964) (xy 153.612549 88.132111) (xy 153.794328 87.982928) (xy 153.943511 87.801149)
(xy 154.054364 87.593758) (xy 154.122626 87.368726) (xy 154.1399 87.193344) (xy 154.1399 86.7537) (xy 159.096201 86.7537)
(xy 160.083501 87.741) (xy 160.0835 89.09881) (xy 160.048749 89.113205) (xy 159.869863 89.232733) (xy 159.717733 89.384863)
(xy 159.598205 89.563749) (xy 159.515872 89.762517) (xy 159.4739 89.973528) (xy 159.4739 90.188672) (xy 159.515872 90.399683)
(xy 159.598205 90.598451) (xy 159.717733 90.777337) (xy 159.869863 90.929467) (xy 160.048749 91.048995) (xy 160.247517 91.131328)
(xy 160.458528 91.1733) (xy 160.673672 91.1733) (xy 160.884683 91.131328) (xy 161.083451 91.048995) (xy 161.262337 90.929467)
(xy 161.414467 90.777337) (xy 161.533995 90.598451) (xy 161.616328 90.399683) (xy 161.6583 90.188672) (xy 161.6583 89.973528)
(xy 161.616328 89.762517) (xy 161.533995 89.563749) (xy 161.414467 89.384863) (xy 161.262337 89.232733) (xy 161.083451 89.113205)
(xy 161.0487 89.098811) (xy 161.0487 87.564804) (xy 161.051035 87.541099) (xy 161.0487 87.517393) (xy 161.041717 87.446494)
(xy 161.014122 87.355523) (xy 160.969309 87.271685) (xy 160.909001 87.198199) (xy 160.890582 87.183083) (xy 159.654117 85.946618)
(xy 159.639001 85.928199) (xy 159.565515 85.867891) (xy 159.481677 85.823078) (xy 159.390706 85.795483) (xy 159.319807 85.7885)
(xy 159.319805 85.7885) (xy 159.2961 85.786165) (xy 159.272395 85.7885) (xy 154.1399 85.7885) (xy 154.1399 85.348856)
(xy 154.122626 85.173474) (xy 154.054364 84.948442) (xy 153.943511 84.741051) (xy 153.927302 84.7213) (xy 183.070901 84.7213)
(xy 183.070901 90.516609) (xy 182.981167 90.419825) (xy 182.783631 90.276757) (xy 182.561979 90.174975) (xy 182.472044 90.147693)
(xy 182.2799 90.232791) (xy 182.2799 91.2273) (xy 183.070901 91.2273) (xy 183.070901 91.4749) (xy 182.2799 91.4749)
(xy 182.2799 92.469409) (xy 182.472044 92.554507) (xy 182.700746 92.469746) (xy 182.908518 92.341996) (xy 183.070901 92.191441)
(xy 183.070901 99.406608) (xy 182.981167 99.309825) (xy 182.783631 99.166757) (xy 182.561979 99.064975) (xy 182.472044 99.037693)
(xy 182.2799 99.122791) (xy 182.2799 100.1173) (xy 183.070901 100.1173) (xy 183.070901 100.3649) (xy 182.2799 100.3649)
(xy 182.2799 101.359409) (xy 182.472044 101.444507) (xy 182.700746 101.359746) (xy 182.908518 101.231996) (xy 183.070901 101.081441)
(xy 183.0709 108.296608) (xy 182.981167 108.199825) (xy 182.783631 108.056757) (xy 182.561979 107.954975) (xy 182.472044 107.927693)
(xy 182.2799 108.012791) (xy 182.2799 109.0073) (xy 183.0709 109.0073) (xy 183.0709 109.2549) (xy 182.2799 109.2549)
(xy 182.2799 110.249409) (xy 182.472044 110.334507) (xy 182.700746 110.249746) (xy 182.908518 110.121996) (xy 183.0709 109.971442)
(xy 183.0709 125.2859) (xy 113.9313 125.2859) (xy 113.9313 122.2121) (xy 115.784303 122.2121) (xy 115.784303 123.9901)
(xy 115.790678 124.05483) (xy 115.80956 124.117073) (xy 115.840221 124.174437) (xy 115.881484 124.224716) (xy 115.931763 124.265979)
(xy 115.989127 124.29664) (xy 116.05137 124.315522) (xy 116.1161 124.321897) (xy 118.6561 124.321897) (xy 118.72083 124.315522)
(xy 118.783073 124.29664) (xy 118.840437 124.265979) (xy 118.890716 124.224716) (xy 118.931979 124.174437) (xy 118.96264 124.117073)
(xy 118.981522 124.05483) (xy 118.987897 123.9901) (xy 118.987897 123.823455) (xy 119.062591 123.854395) (xy 119.213942 123.8845)
(xy 119.368258 123.8845) (xy 119.519609 123.854395) (xy 119.662179 123.79534) (xy 119.790489 123.709607) (xy 119.840009 123.660087)
(xy 146.5359 123.660087) (xy 146.5359 123.922113) (xy 146.587019 124.179105) (xy 146.687292 124.421186) (xy 146.832866 124.639053)
(xy 147.018147 124.824334) (xy 147.236014 124.969908) (xy 147.478095 125.070181) (xy 147.735087 125.1213) (xy 147.997113 125.1213)
(xy 148.254105 125.070181) (xy 148.496186 124.969908) (xy 148.714053 124.824334) (xy 148.899334 124.639053) (xy 149.044908 124.421186)
(xy 149.145181 124.179105) (xy 149.1963 123.922113) (xy 149.1963 123.660087) (xy 149.145181 123.403095) (xy 149.044908 123.161014)
(xy 148.899334 122.943147) (xy 148.714053 122.757866) (xy 148.496186 122.612292) (xy 148.254105 122.512019) (xy 147.997113 122.4609)
(xy 147.735087 122.4609) (xy 147.478095 122.512019) (xy 147.236014 122.612292) (xy 147.018147 122.757866) (xy 146.832866 122.943147)
(xy 146.687292 123.161014) (xy 146.587019 123.403095) (xy 146.5359 123.660087) (xy 119.840009 123.660087) (xy 119.899607 123.600489)
(xy 119.98534 123.472179) (xy 120.044395 123.329609) (xy 120.0745 123.178258) (xy 120.0745 123.023942) (xy 120.044395 122.872591)
(xy 119.98534 122.730021) (xy 119.899607 122.601711) (xy 119.790489 122.492593) (xy 119.662179 122.40686) (xy 119.519609 122.347805)
(xy 119.368258 122.3177) (xy 119.213942 122.3177) (xy 119.062591 122.347805) (xy 118.987897 122.378745) (xy 118.987897 122.2121)
(xy 118.981522 122.14737) (xy 118.96264 122.085127) (xy 118.931979 122.027763) (xy 118.890716 121.977484) (xy 118.840437 121.936221)
(xy 118.783073 121.90556) (xy 118.72083 121.886678) (xy 118.6561 121.880303) (xy 116.1161 121.880303) (xy 116.05137 121.886678)
(xy 115.989127 121.90556) (xy 115.931763 121.936221) (xy 115.881484 121.977484) (xy 115.840221 122.027763) (xy 115.80956 122.085127)
(xy 115.790678 122.14737) (xy 115.784303 122.2121) (xy 113.9313 122.2121) (xy 113.9313 121.652257) (xy 140.2064 121.652257)
(xy 140.2064 121.929943) (xy 140.260574 122.202294) (xy 140.36684 122.458843) (xy 140.521114 122.689731) (xy 140.717469 122.886086)
(xy 140.948357 123.04036) (xy 141.204906 123.146626) (xy 141.477257 123.2008) (xy 141.754943 123.2008) (xy 142.027294 123.146626)
(xy 142.283843 123.04036) (xy 142.514731 122.886086) (xy 142.711086 122.689731) (xy 142.86536 122.458843) (xy 142.971626 122.202294)
(xy 143.0258 121.929943) (xy 143.0258 121.652257) (xy 152.7064 121.652257) (xy 152.7064 121.929943) (xy 152.760574 122.202294)
(xy 152.86684 122.458843) (xy 153.021114 122.689731) (xy 153.217469 122.886086) (xy 153.448357 123.04036) (xy 153.704906 123.146626)
(xy 153.977257 123.2008) (xy 154.254943 123.2008) (xy 154.527294 123.146626) (xy 154.783843 123.04036) (xy 155.014731 122.886086)
(xy 155.211086 122.689731) (xy 155.36536 122.458843) (xy 155.471626 122.202294) (xy 155.5258 121.929943) (xy 155.5258 121.652257)
(xy 155.471626 121.379906) (xy 155.36536 121.123357) (xy 155.211086 120.892469) (xy 155.014731 120.696114) (xy 154.783843 120.54184)
(xy 154.527294 120.435574) (xy 154.254943 120.3814) (xy 153.977257 120.3814) (xy 153.704906 120.435574) (xy 153.448357 120.54184)
(xy 153.217469 120.696114) (xy 153.021114 120.892469) (xy 152.86684 121.123357) (xy 152.760574 121.379906) (xy 152.7064 121.652257)
(xy 143.0258 121.652257) (xy 142.971626 121.379906) (xy 142.86536 121.123357) (xy 142.711086 120.892469) (xy 142.514731 120.696114)
(xy 142.283843 120.54184) (xy 142.027294 120.435574) (xy 141.754943 120.3814) (xy 141.477257 120.3814) (xy 141.204906 120.435574)
(xy 140.948357 120.54184) (xy 140.717469 120.696114) (xy 140.521114 120.892469) (xy 140.36684 121.123357) (xy 140.260574 121.379906)
(xy 140.2064 121.652257) (xy 113.9313 121.652257) (xy 113.9313 118.9101) (xy 115.637596 118.9101) (xy 115.64679 119.003451)
(xy 115.67402 119.093216) (xy 115.718238 119.175943) (xy 115.777747 119.248453) (xy 115.850257 119.307962) (xy 115.932984 119.35218)
(xy 116.022749 119.37941) (xy 116.1161 119.388604) (xy 117.14325 119.3863) (xy 117.2623 119.26725) (xy 117.2623 118.1449)
(xy 117.5099 118.1449) (xy 117.5099 119.26725) (xy 117.62895 119.3863) (xy 118.6561 119.388604) (xy 118.749451 119.37941)
(xy 118.839216 119.35218) (xy 118.921943 119.307962) (xy 118.994453 119.248453) (xy 119.053962 119.175943) (xy 119.09818 119.093216)
(xy 119.12541 119.003451) (xy 119.134604 118.9101) (xy 119.1323 118.26395) (xy 119.01325 118.1449) (xy 117.5099 118.1449)
(xy 117.2623 118.1449) (xy 115.75895 118.1449) (xy 115.6399 118.26395) (xy 115.637596 118.9101) (xy 113.9313 118.9101)
(xy 113.9313 117.1321) (xy 115.637596 117.1321) (xy 115.6399 117.77825) (xy 115.75895 117.8973) (xy 117.2623 117.8973)
(xy 117.2623 116.77495) (xy 117.5099 116.77495) (xy 117.5099 117.8973) (xy 119.01325 117.8973) (xy 119.1323 117.77825)
(xy 119.134604 117.1321) (xy 119.12541 117.038749) (xy 119.09818 116.948984) (xy 119.053962 116.866257) (xy 118.994453 116.793747)
(xy 118.921943 116.734238) (xy 118.839216 116.69002) (xy 118.749451 116.66279) (xy 118.6561 116.653596) (xy 117.62895 116.6559)
(xy 117.5099 116.77495) (xy 117.2623 116.77495) (xy 117.14325 116.6559) (xy 116.1161 116.653596) (xy 116.022749 116.66279)
(xy 115.932984 116.69002) (xy 115.850257 116.734238) (xy 115.777747 116.793747) (xy 115.718238 116.866257) (xy 115.67402 116.948984)
(xy 115.64679 117.038749) (xy 115.637596 117.1321) (xy 113.9313 117.1321) (xy 113.9313 116.652257) (xy 140.2064 116.652257)
(xy 140.2064 116.929943) (xy 140.260574 117.202294) (xy 140.36684 117.458843) (xy 140.521114 117.689731) (xy 140.717469 117.886086)
(xy 140.948357 118.04036) (xy 141.204906 118.146626) (xy 141.477257 118.2008) (xy 141.754943 118.2008) (xy 142.027294 118.146626)
(xy 142.283843 118.04036) (xy 142.514731 117.886086) (xy 142.711086 117.689731) (xy 142.86536 117.458843) (xy 142.971626 117.202294)
(xy 143.0258 116.929943) (xy 143.0258 116.652257) (xy 152.7064 116.652257) (xy 152.7064 116.929943) (xy 152.760574 117.202294)
(xy 152.86684 117.458843) (xy 153.021114 117.689731) (xy 153.217469 117.886086) (xy 153.448357 118.04036) (xy 153.704906 118.146626)
(xy 153.977257 118.2008) (xy 154.254943 118.2008) (xy 154.527294 118.146626) (xy 154.783843 118.04036) (xy 155.014731 117.886086)
(xy 155.211086 117.689731) (xy 155.36536 117.458843) (xy 155.471626 117.202294) (xy 155.5258 116.929943) (xy 155.5258 116.652257)
(xy 155.524064 116.643528) (xy 159.4739 116.643528) (xy 159.4739 116.858672) (xy 159.515872 117.069683) (xy 159.598205 117.268451)
(xy 159.717733 117.447337) (xy 159.869863 117.599467) (xy 160.048749 117.718995) (xy 160.247517 117.801328) (xy 160.458528 117.8433)
(xy 160.673672 117.8433) (xy 160.884683 117.801328) (xy 161.083451 117.718995) (xy 161.262337 117.599467) (xy 161.414467 117.447337)
(xy 161.533995 117.268451) (xy 161.616328 117.069683) (xy 161.6583 116.858672) (xy 161.6583 116.643528) (xy 167.0939 116.643528)
(xy 167.0939 116.858672) (xy 167.135872 117.069683) (xy 167.218205 117.268451) (xy 167.337733 117.447337) (xy 167.489863 117.599467)
(xy 167.668749 117.718995) (xy 167.867517 117.801328) (xy 168.078528 117.8433) (xy 168.293672 117.8433) (xy 168.504683 117.801328)
(xy 168.703451 117.718995) (xy 168.882337 117.599467) (xy 169.034467 117.447337) (xy 169.153995 117.268451) (xy 169.236328 117.069683)
(xy 169.2783 116.858672) (xy 169.2783 116.643528) (xy 169.6339 116.643528) (xy 169.6339 116.858672) (xy 169.675872 117.069683)
(xy 169.758205 117.268451) (xy 169.877733 117.447337) (xy 170.029863 117.599467) (xy 170.208749 117.718995) (xy 170.407517 117.801328)
(xy 170.618528 117.8433) (xy 170.833672 117.8433) (xy 171.044683 117.801328) (xy 171.243451 117.718995) (xy 171.422337 117.599467)
(xy 171.574467 117.447337) (xy 171.693995 117.268451) (xy 171.776328 117.069683) (xy 171.8183 116.858672) (xy 171.8183 116.643528)
(xy 177.2539 116.643528) (xy 177.2539 116.858672) (xy 177.295872 117.069683) (xy 177.378205 117.268451) (xy 177.497733 117.447337)
(xy 177.649863 117.599467) (xy 177.828749 117.718995) (xy 178.027517 117.801328) (xy 178.238528 117.8433) (xy 178.453672 117.8433)
(xy 178.664683 117.801328) (xy 178.863451 117.718995) (xy 179.042337 117.599467) (xy 179.194467 117.447337) (xy 179.313995 117.268451)
(xy 179.396328 117.069683) (xy 179.4383 116.858672) (xy 179.4383 116.643528) (xy 179.396328 116.432517) (xy 179.313995 116.233749)
(xy 179.194467 116.054863) (xy 179.042337 115.902733) (xy 178.863451 115.783205) (xy 178.664683 115.700872) (xy 178.453672 115.6589)
(xy 178.238528 115.6589) (xy 178.027517 115.700872) (xy 177.828749 115.783205) (xy 177.649863 115.902733) (xy 177.497733 116.054863)
(xy 177.378205 116.233749) (xy 177.295872 116.432517) (xy 177.2539 116.643528) (xy 171.8183 116.643528) (xy 171.776328 116.432517)
(xy 171.693995 116.233749) (xy 171.574467 116.054863) (xy 171.422337 115.902733) (xy 171.243451 115.783205) (xy 171.044683 115.700872)
(xy 170.833672 115.6589) (xy 170.618528 115.6589) (xy 170.407517 115.700872) (xy 170.208749 115.783205) (xy 170.029863 115.902733)
(xy 169.877733 116.054863) (xy 169.758205 116.233749) (xy 169.675872 116.432517) (xy 169.6339 116.643528) (xy 169.2783 116.643528)
(xy 169.236328 116.432517) (xy 169.153995 116.233749) (xy 169.034467 116.054863) (xy 168.882337 115.902733) (xy 168.703451 115.783205)
(xy 168.504683 115.700872) (xy 168.293672 115.6589) (xy 168.078528 115.6589) (xy 167.867517 115.700872) (xy 167.668749 115.783205)
(xy 167.489863 115.902733) (xy 167.337733 116.054863) (xy 167.218205 116.233749) (xy 167.135872 116.432517) (xy 167.0939 116.643528)
(xy 161.6583 116.643528) (xy 161.616328 116.432517) (xy 161.533995 116.233749) (xy 161.414467 116.054863) (xy 161.262337 115.902733)
(xy 161.083451 115.783205) (xy 160.884683 115.700872) (xy 160.673672 115.6589) (xy 160.458528 115.6589) (xy 160.247517 115.700872)
(xy 160.048749 115.783205) (xy 159.869863 115.902733) (xy 159.717733 116.054863) (xy 159.598205 116.233749) (xy 159.515872 116.432517)
(xy 159.4739 116.643528) (xy 155.524064 116.643528) (xy 155.471626 116.379906) (xy 155.36536 116.123357) (xy 155.211086 115.892469)
(xy 155.014731 115.696114) (xy 154.783843 115.54184) (xy 154.527294 115.435574) (xy 154.254943 115.3814) (xy 153.977257 115.3814)
(xy 153.704906 115.435574) (xy 153.448357 115.54184) (xy 153.217469 115.696114) (xy 153.021114 115.892469) (xy 152.86684 116.123357)
(xy 152.760574 116.379906) (xy 152.7064 116.652257) (xy 143.0258 116.652257) (xy 142.971626 116.379906) (xy 142.86536 116.123357)
(xy 142.711086 115.892469) (xy 142.514731 115.696114) (xy 142.283843 115.54184) (xy 142.027294 115.435574) (xy 141.754943 115.3814)
(xy 141.477257 115.3814) (xy 141.204906 115.435574) (xy 140.948357 115.54184) (xy 140.717469 115.696114) (xy 140.521114 115.892469)
(xy 140.36684 116.123357) (xy 140.260574 116.379906) (xy 140.2064 116.652257) (xy 113.9313 116.652257) (xy 113.9313 115.373528)
(xy 128.9939 115.373528) (xy 128.9939 115.588672) (xy 129.035872 115.799683) (xy 129.118205 115.998451) (xy 129.237733 116.177337)
(xy 129.389863 116.329467) (xy 129.568749 116.448995) (xy 129.767517 116.531328) (xy 129.978528 116.5733) (xy 130.193672 116.5733)
(xy 130.404683 116.531328) (xy 130.603451 116.448995) (xy 130.782337 116.329467) (xy 130.934467 116.177337) (xy 131.053995 115.998451)
(xy 131.136328 115.799683) (xy 131.1783 115.588672) (xy 131.1783 115.373528) (xy 136.6139 115.373528) (xy 136.6139 115.588672)
(xy 136.655872 115.799683) (xy 136.738205 115.998451) (xy 136.857733 116.177337) (xy 137.009863 116.329467) (xy 137.188749 116.448995)
(xy 137.387517 116.531328) (xy 137.598528 116.5733) (xy 137.813672 116.5733) (xy 138.024683 116.531328) (xy 138.223451 116.448995)
(xy 138.402337 116.329467) (xy 138.554467 116.177337) (xy 138.673995 115.998451) (xy 138.756328 115.799683) (xy 138.7983 115.588672)
(xy 138.7983 115.373528) (xy 138.756328 115.162517) (xy 138.673995 114.963749) (xy 138.554467 114.784863) (xy 138.429691 114.660087)
(xy 146.5359 114.660087) (xy 146.5359 114.922113) (xy 146.587019 115.179105) (xy 146.687292 115.421186) (xy 146.832866 115.639053)
(xy 147.018147 115.824334) (xy 147.236014 115.969908) (xy 147.478095 116.070181) (xy 147.735087 116.1213) (xy 147.997113 116.1213)
(xy 148.254105 116.070181) (xy 148.496186 115.969908) (xy 148.714053 115.824334) (xy 148.899334 115.639053) (xy 149.044908 115.421186)
(xy 149.145181 115.179105) (xy 149.1963 114.922113) (xy 149.1963 114.660087) (xy 149.145181 114.403095) (xy 149.044908 114.161014)
(xy 148.899334 113.943147) (xy 148.714053 113.757866) (xy 148.496186 113.612292) (xy 148.254105 113.512019) (xy 147.997113 113.4609)
(xy 147.735087 113.4609) (xy 147.478095 113.512019) (xy 147.236014 113.612292) (xy 147.018147 113.757866) (xy 146.832866 113.943147)
(xy 146.687292 114.161014) (xy 146.587019 114.403095) (xy 146.5359 114.660087) (xy 138.429691 114.660087) (xy 138.402337 114.632733)
(xy 138.223451 114.513205) (xy 138.024683 114.430872) (xy 137.813672 114.3889) (xy 137.598528 114.3889) (xy 137.387517 114.430872)
(xy 137.188749 114.513205) (xy 137.009863 114.632733) (xy 136.857733 114.784863) (xy 136.738205 114.963749) (xy 136.655872 115.162517)
(xy 136.6139 115.373528) (xy 131.1783 115.373528) (xy 131.136328 115.162517) (xy 131.053995 114.963749) (xy 130.934467 114.784863)
(xy 130.782337 114.632733) (xy 130.603451 114.513205) (xy 130.404683 114.430872) (xy 130.193672 114.3889) (xy 129.978528 114.3889)
(xy 129.767517 114.430872) (xy 129.568749 114.513205) (xy 129.389863 114.632733) (xy 129.237733 114.784863) (xy 129.118205 114.963749)
(xy 129.035872 115.162517) (xy 128.9939 115.373528) (xy 113.9313 115.373528) (xy 113.9313 113.27207) (xy 121.574223 113.27207)
(xy 121.58731 113.339444) (xy 121.689718 113.582518) (xy 121.837579 113.800943) (xy 122.025212 113.986324) (xy 122.245405 114.131538)
(xy 122.489697 114.231004) (xy 122.7487 114.2809) (xy 123.6123 114.2809) (xy 123.6123 113.0649) (xy 123.8599 113.0649)
(xy 123.8599 114.2809) (xy 124.7235 114.2809) (xy 124.982503 114.231004) (xy 125.226795 114.131538) (xy 125.446988 113.986324)
(xy 125.634621 113.800943) (xy 125.782482 113.582518) (xy 125.88489 113.339444) (xy 125.897977 113.27207) (xy 125.814156 113.0649)
(xy 123.8599 113.0649) (xy 123.6123 113.0649) (xy 121.658044 113.0649) (xy 121.574223 113.27207) (xy 113.9313 113.27207)
(xy 113.9313 112.61013) (xy 121.574223 112.61013) (xy 121.658044 112.8173) (xy 123.6123 112.8173) (xy 123.6123 111.6013)
(xy 123.8599 111.6013) (xy 123.8599 112.8173) (xy 125.814156 112.8173) (xy 125.897977 112.61013) (xy 125.88489 112.542756)
(xy 125.782482 112.299682) (xy 125.735371 112.230087) (xy 132.5659 112.230087) (xy 132.5659 112.492113) (xy 132.617019 112.749105)
(xy 132.717292 112.991186) (xy 132.862866 113.209053) (xy 133.048147 113.394334) (xy 133.266014 113.539908) (xy 133.508095 113.640181)
(xy 133.765087 113.6913) (xy 134.027113 113.6913) (xy 134.284105 113.640181) (xy 134.526186 113.539908) (xy 134.744053 113.394334)
(xy 134.929334 113.209053) (xy 135.074908 112.991186) (xy 135.175181 112.749105) (xy 135.2263 112.492113) (xy 135.2263 112.230087)
(xy 135.175181 111.973095) (xy 135.074908 111.731014) (xy 134.929334 111.513147) (xy 134.744053 111.327866) (xy 134.526186 111.182292)
(xy 134.284105 111.082019) (xy 134.027113 111.0309) (xy 133.765087 111.0309) (xy 133.508095 111.082019) (xy 133.266014 111.182292)
(xy 133.048147 111.327866) (xy 132.862866 111.513147) (xy 132.717292 111.731014) (xy 132.617019 111.973095) (xy 132.5659 112.230087)
(xy 125.735371 112.230087) (xy 125.634621 112.081257) (xy 125.446988 111.895876) (xy 125.226795 111.750662) (xy 124.982503 111.651196)
(xy 124.7235 111.6013) (xy 123.8599 111.6013) (xy 123.6123 111.6013) (xy 122.7487 111.6013) (xy 122.489697 111.651196)
(xy 122.245405 111.750662) (xy 122.025212 111.895876) (xy 121.837579 112.081257) (xy 121.689718 112.299682) (xy 121.58731 112.542756)
(xy 121.574223 112.61013) (xy 113.9313 112.61013) (xy 113.9313 110.4011) (xy 121.672924 110.4011) (xy 121.695974 110.635126)
(xy 121.764236 110.860158) (xy 121.875089 111.067549) (xy 122.024272 111.249328) (xy 122.206051 111.398511) (xy 122.413442 111.509364)
(xy 122.638474 111.577626) (xy 122.813856 111.5949) (xy 124.658344 111.5949) (xy 124.833726 111.577626) (xy 125.058758 111.509364)
(xy 125.266149 111.398511) (xy 125.447928 111.249328) (xy 125.597111 111.067549) (xy 125.707964 110.860158) (xy 125.776226 110.635126)
(xy 125.799276 110.4011) (xy 125.781662 110.222257) (xy 126.2364 110.222257) (xy 126.2364 110.499943) (xy 126.290574 110.772294)
(xy 126.39684 111.028843) (xy 126.551114 111.259731) (xy 126.747469 111.456086) (xy 126.978357 111.61036) (xy 127.234906 111.716626)
(xy 127.507257 111.7708) (xy 127.784943 111.7708) (xy 128.057294 111.716626) (xy 128.313843 111.61036) (xy 128.544731 111.456086)
(xy 128.741086 111.259731) (xy 128.89536 111.028843) (xy 129.001626 110.772294) (xy 129.0558 110.499943) (xy 129.0558 110.222257)
(xy 138.7364 110.222257) (xy 138.7364 110.499943) (xy 138.790574 110.772294) (xy 138.89684 111.028843) (xy 139.051114 111.259731)
(xy 139.247469 111.456086) (xy 139.478357 111.61036) (xy 139.734906 111.716626) (xy 140.007257 111.7708) (xy 140.284943 111.7708)
(xy 140.557294 111.716626) (xy 140.813843 111.61036) (xy 140.883932 111.563528) (xy 142.9639 111.563528) (xy 142.9639 111.778672)
(xy 143.005872 111.989683) (xy 143.088205 112.188451) (xy 143.207733 112.367337) (xy 143.359863 112.519467) (xy 143.538749 112.638995)
(xy 143.737517 112.721328) (xy 143.948528 112.7633) (xy 144.163672 112.7633) (xy 144.374683 112.721328) (xy 144.573451 112.638995)
(xy 144.752337 112.519467) (xy 144.904467 112.367337) (xy 145.023995 112.188451) (xy 145.106328 111.989683) (xy 145.1483 111.778672)
(xy 145.1483 111.563528) (xy 150.5839 111.563528) (xy 150.5839 111.778672) (xy 150.625872 111.989683) (xy 150.708205 112.188451)
(xy 150.827733 112.367337) (xy 150.979863 112.519467) (xy 151.158749 112.638995) (xy 151.357517 112.721328) (xy 151.568528 112.7633)
(xy 151.783672 112.7633) (xy 151.994683 112.721328) (xy 152.193451 112.638995) (xy 152.372337 112.519467) (xy 152.524467 112.367337)
(xy 152.616174 112.230087) (xy 160.5059 112.230087) (xy 160.5059 112.492113) (xy 160.557019 112.749105) (xy 160.657292 112.991186)
(xy 160.802866 113.209053) (xy 160.988147 113.394334) (xy 161.206014 113.539908) (xy 161.448095 113.640181) (xy 161.705087 113.6913)
(xy 161.967113 113.6913) (xy 162.224105 113.640181) (xy 162.466186 113.539908) (xy 162.684053 113.394334) (xy 162.806317 113.27207)
(xy 171.104223 113.27207) (xy 171.11731 113.339444) (xy 171.219718 113.582518) (xy 171.367579 113.800943) (xy 171.555212 113.986324)
(xy 171.775405 114.131538) (xy 172.019697 114.231004) (xy 172.2787 114.2809) (xy 173.1423 114.2809) (xy 173.1423 113.0649)
(xy 173.3899 113.0649) (xy 173.3899 114.2809) (xy 174.2535 114.2809) (xy 174.512503 114.231004) (xy 174.756795 114.131538)
(xy 174.976988 113.986324) (xy 175.164621 113.800943) (xy 175.312482 113.582518) (xy 175.41489 113.339444) (xy 175.427977 113.27207)
(xy 175.344156 113.0649) (xy 173.3899 113.0649) (xy 173.1423 113.0649) (xy 171.188044 113.0649) (xy 171.104223 113.27207)
(xy 162.806317 113.27207) (xy 162.869334 113.209053) (xy 163.014908 112.991186) (xy 163.115181 112.749105) (xy 163.142824 112.61013)
(xy 171.104223 112.61013) (xy 171.188044 112.8173) (xy 173.1423 112.8173) (xy 173.1423 111.6013) (xy 173.3899 111.6013)
(xy 173.3899 112.8173) (xy 175.344156 112.8173) (xy 175.427977 112.61013) (xy 175.41489 112.542756) (xy 175.312482 112.299682)
(xy 175.164621 112.081257) (xy 174.976988 111.895876) (xy 174.756795 111.750662) (xy 174.512503 111.651196) (xy 174.2535 111.6013)
(xy 173.3899 111.6013) (xy 173.1423 111.6013) (xy 172.2787 111.6013) (xy 172.019697 111.651196) (xy 171.775405 111.750662)
(xy 171.555212 111.895876) (xy 171.367579 112.081257) (xy 171.219718 112.299682) (xy 171.11731 112.542756) (xy 171.104223 112.61013)
(xy 163.142824 112.61013) (xy 163.1663 112.492113) (xy 163.1663 112.230087) (xy 163.115181 111.973095) (xy 163.014908 111.731014)
(xy 162.869334 111.513147) (xy 162.684053 111.327866) (xy 162.466186 111.182292) (xy 162.224105 111.082019) (xy 161.967113 111.0309)
(xy 161.705087 111.0309) (xy 161.448095 111.082019) (xy 161.206014 111.182292) (xy 160.988147 111.327866) (xy 160.802866 111.513147)
(xy 160.657292 111.731014) (xy 160.557019 111.973095) (xy 160.5059 112.230087) (xy 152.616174 112.230087) (xy 152.643995 112.188451)
(xy 152.726328 111.989683) (xy 152.7683 111.778672) (xy 152.7683 111.563528) (xy 152.726328 111.352517) (xy 152.643995 111.153749)
(xy 152.524467 110.974863) (xy 152.372337 110.822733) (xy 152.193451 110.703205) (xy 151.994683 110.620872) (xy 151.783672 110.5789)
(xy 151.568528 110.5789) (xy 151.357517 110.620872) (xy 151.158749 110.703205) (xy 150.979863 110.822733) (xy 150.827733 110.974863)
(xy 150.708205 111.153749) (xy 150.625872 111.352517) (xy 150.5839 111.563528) (xy 145.1483 111.563528) (xy 145.106328 111.352517)
(xy 145.023995 111.153749) (xy 144.904467 110.974863) (xy 144.752337 110.822733) (xy 144.573451 110.703205) (xy 144.374683 110.620872)
(xy 144.163672 110.5789) (xy 143.948528 110.5789) (xy 143.737517 110.620872) (xy 143.538749 110.703205) (xy 143.359863 110.822733)
(xy 143.207733 110.974863) (xy 143.088205 111.153749) (xy 143.005872 111.352517) (xy 142.9639 111.563528) (xy 140.883932 111.563528)
(xy 141.044731 111.456086) (xy 141.241086 111.259731) (xy 141.39536 111.028843) (xy 141.501626 110.772294) (xy 141.5558 110.499943)
(xy 141.5558 110.222257) (xy 154.1764 110.222257) (xy 154.1764 110.499943) (xy 154.230574 110.772294) (xy 154.33684 111.028843)
(xy 154.491114 111.259731) (xy 154.687469 111.456086) (xy 154.918357 111.61036) (xy 155.174906 111.716626) (xy 155.447257 111.7708)
(xy 155.724943 111.7708) (xy 155.997294 111.716626) (xy 156.253843 111.61036) (xy 156.484731 111.456086) (xy 156.681086 111.259731)
(xy 156.83536 111.028843) (xy 156.941626 110.772294) (xy 156.9958 110.499943) (xy 156.9958 110.222257) (xy 166.6764 110.222257)
(xy 166.6764 110.499943) (xy 166.730574 110.772294) (xy 166.83684 111.028843) (xy 166.991114 111.259731) (xy 167.187469 111.456086)
(xy 167.418357 111.61036) (xy 167.674906 111.716626) (xy 167.947257 111.7708) (xy 168.224943 111.7708) (xy 168.497294 111.716626)
(xy 168.753843 111.61036) (xy 168.984731 111.456086) (xy 169.181086 111.259731) (xy 169.33536 111.028843) (xy 169.441626 110.772294)
(xy 169.4958 110.499943) (xy 169.4958 110.4011) (xy 171.202924 110.4011) (xy 171.225974 110.635126) (xy 171.294236 110.860158)
(xy 171.405089 111.067549) (xy 171.554272 111.249328) (xy 171.736051 111.398511) (xy 171.943442 111.509364) (xy 172.168474 111.577626)
(xy 172.343856 111.5949) (xy 174.188344 111.5949) (xy 174.363726 111.577626) (xy 174.588758 111.509364) (xy 174.796149 111.398511)
(xy 174.977928 111.249328) (xy 175.127111 111.067549) (xy 175.237964 110.860158) (xy 175.306226 110.635126) (xy 175.329276 110.4011)
(xy 175.306226 110.167074) (xy 175.237964 109.942042) (xy 175.127111 109.734651) (xy 174.977928 109.552872) (xy 174.796149 109.403689)
(xy 174.588758 109.292836) (xy 174.363726 109.224574) (xy 174.188344 109.2073) (xy 172.343856 109.2073) (xy 172.168474 109.224574)
(xy 171.943442 109.292836) (xy 171.736051 109.403689) (xy 171.554272 109.552872) (xy 171.405089 109.734651) (xy 171.294236 109.942042)
(xy 171.225974 110.167074) (xy 171.202924 110.4011) (xy 169.4958 110.4011) (xy 169.4958 110.222257) (xy 169.441626 109.949906)
(xy 169.33536 109.693357) (xy 169.181086 109.462469) (xy 168.984731 109.266114) (xy 168.753843 109.11184) (xy 168.497294 109.005574)
(xy 168.224943 108.9514) (xy 167.947257 108.9514) (xy 167.674906 109.005574) (xy 167.418357 109.11184) (xy 167.187469 109.266114)
(xy 166.991114 109.462469) (xy 166.83684 109.693357) (xy 166.730574 109.949906) (xy 166.6764 110.222257) (xy 156.9958 110.222257)
(xy 156.941626 109.949906) (xy 156.83536 109.693357) (xy 156.681086 109.462469) (xy 156.484731 109.266114) (xy 156.253843 109.11184)
(xy 155.997294 109.005574) (xy 155.724943 108.9514) (xy 155.447257 108.9514) (xy 155.174906 109.005574) (xy 154.918357 109.11184)
(xy 154.687469 109.266114) (xy 154.491114 109.462469) (xy 154.33684 109.693357) (xy 154.230574 109.949906) (xy 154.1764 110.222257)
(xy 141.5558 110.222257) (xy 141.501626 109.949906) (xy 141.39536 109.693357) (xy 141.241086 109.462469) (xy 141.044731 109.266114)
(xy 140.813843 109.11184) (xy 140.557294 109.005574) (xy 140.284943 108.9514) (xy 140.007257 108.9514) (xy 139.734906 109.005574)
(xy 139.478357 109.11184) (xy 139.247469 109.266114) (xy 139.051114 109.462469) (xy 138.89684 109.693357) (xy 138.790574 109.949906)
(xy 138.7364 110.222257) (xy 129.0558 110.222257) (xy 129.001626 109.949906) (xy 128.89536 109.693357) (xy 128.741086 109.462469)
(xy 128.544731 109.266114) (xy 128.313843 109.11184) (xy 128.057294 109.005574) (xy 127.784943 108.9514) (xy 127.507257 108.9514)
(xy 127.234906 109.005574) (xy 126.978357 109.11184) (xy 126.747469 109.266114) (xy 126.551114 109.462469) (xy 126.39684 109.693357)
(xy 126.290574 109.949906) (xy 126.2364 110.222257) (xy 125.781662 110.222257) (xy 125.776226 110.167074) (xy 125.707964 109.942042)
(xy 125.597111 109.734651) (xy 125.447928 109.552872) (xy 125.266149 109.403689) (xy 125.058758 109.292836) (xy 124.833726 109.224574)
(xy 124.658344 109.2073) (xy 122.813856 109.2073) (xy 122.638474 109.224574) (xy 122.413442 109.292836) (xy 122.206051 109.403689)
(xy 122.024272 109.552872) (xy 121.875089 109.734651) (xy 121.764236 109.942042) (xy 121.695974 110.167074) (xy 121.672924 110.4011)
(xy 113.9313 110.4011) (xy 113.9313 107.8611) (xy 121.672924 107.8611) (xy 121.695974 108.095126) (xy 121.764236 108.320158)
(xy 121.875089 108.527549) (xy 122.024272 108.709328) (xy 122.206051 108.858511) (xy 122.413442 108.969364) (xy 122.638474 109.037626)
(xy 122.813856 109.0549) (xy 124.658344 109.0549) (xy 124.833726 109.037626) (xy 125.058758 108.969364) (xy 125.266149 108.858511)
(xy 125.447928 108.709328) (xy 125.597111 108.527549) (xy 125.707964 108.320158) (xy 125.776226 108.095126) (xy 125.799276 107.8611)
(xy 171.202924 107.8611) (xy 171.225974 108.095126) (xy 171.294236 108.320158) (xy 171.405089 108.527549) (xy 171.554272 108.709328)
(xy 171.736051 108.858511) (xy 171.943442 108.969364) (xy 172.168474 109.037626) (xy 172.343856 109.0549) (xy 174.188344 109.0549)
(xy 174.363726 109.037626) (xy 174.410201 109.023528) (xy 178.5239 109.023528) (xy 178.5239 109.238672) (xy 178.565872 109.449683)
(xy 178.648205 109.648451) (xy 178.767733 109.827337) (xy 178.919863 109.979467) (xy 179.098749 110.098995) (xy 179.297517 110.181328)
(xy 179.508528 110.2233) (xy 179.723672 110.2233) (xy 179.934683 110.181328) (xy 180.133451 110.098995) (xy 180.312337 109.979467)
(xy 180.464467 109.827337) (xy 180.583995 109.648451) (xy 180.666328 109.449683) (xy 180.666852 109.447044) (xy 180.952693 109.447044)
(xy 181.037454 109.675746) (xy 181.165204 109.883518) (xy 181.331033 110.062375) (xy 181.528569 110.205443) (xy 181.750221 110.307225)
(xy 181.840156 110.334507) (xy 182.0323 110.249409) (xy 182.0323 109.2549) (xy 181.037791 109.2549) (xy 180.952693 109.447044)
(xy 180.666852 109.447044) (xy 180.7083 109.238672) (xy 180.7083 109.023528) (xy 180.666853 108.815156) (xy 180.952693 108.815156)
(xy 181.037791 109.0073) (xy 182.0323 109.0073) (xy 182.0323 108.012791) (xy 181.840156 107.927693) (xy 181.611454 108.012454)
(xy 181.403682 108.140204) (xy 181.224825 108.306033) (xy 181.081757 108.503569) (xy 180.979975 108.725221) (xy 180.952693 108.815156)
(xy 180.666853 108.815156) (xy 180.666328 108.812517) (xy 180.583995 108.613749) (xy 180.464467 108.434863) (xy 180.312337 108.282733)
(xy 180.133451 108.163205) (xy 179.934683 108.080872) (xy 179.723672 108.0389) (xy 179.508528 108.0389) (xy 179.297517 108.080872)
(xy 179.098749 108.163205) (xy 178.919863 108.282733) (xy 178.767733 108.434863) (xy 178.648205 108.613749) (xy 178.565872 108.812517)
(xy 178.5239 109.023528) (xy 174.410201 109.023528) (xy 174.588758 108.969364) (xy 174.796149 108.858511) (xy 174.977928 108.709328)
(xy 175.127111 108.527549) (xy 175.237964 108.320158) (xy 175.306226 108.095126) (xy 175.329276 107.8611) (xy 175.306226 107.627074)
(xy 175.237964 107.402042) (xy 175.127111 107.194651) (xy 174.977928 107.012872) (xy 174.796149 106.863689) (xy 174.588758 106.752836)
(xy 174.363726 106.684574) (xy 174.188344 106.6673) (xy 172.343856 106.6673) (xy 172.168474 106.684574) (xy 171.943442 106.752836)
(xy 171.736051 106.863689) (xy 171.554272 107.012872) (xy 171.405089 107.194651) (xy 171.294236 107.402042) (xy 171.225974 107.627074)
(xy 171.202924 107.8611) (xy 125.799276 107.8611) (xy 125.776226 107.627074) (xy 125.707964 107.402042) (xy 125.597111 107.194651)
(xy 125.447928 107.012872) (xy 125.266149 106.863689) (xy 125.058758 106.752836) (xy 124.833726 106.684574) (xy 124.658344 106.6673)
(xy 122.813856 106.6673) (xy 122.638474 106.684574) (xy 122.413442 106.752836) (xy 122.206051 106.863689) (xy 122.024272 107.012872)
(xy 121.875089 107.194651) (xy 121.764236 107.402042) (xy 121.695974 107.627074) (xy 121.672924 107.8611) (xy 113.9313 107.8611)
(xy 113.9313 105.3211) (xy 121.672924 105.3211) (xy 121.695974 105.555126) (xy 121.764236 105.780158) (xy 121.875089 105.987549)
(xy 122.024272 106.169328) (xy 122.206051 106.318511) (xy 122.413442 106.429364) (xy 122.638474 106.497626) (xy 122.813856 106.5149)
(xy 124.658344 106.5149) (xy 124.833726 106.497626) (xy 125.058758 106.429364) (xy 125.266149 106.318511) (xy 125.447928 106.169328)
(xy 125.597111 105.987549) (xy 125.707964 105.780158) (xy 125.776226 105.555126) (xy 125.799276 105.3211) (xy 125.789541 105.222257)
(xy 126.2364 105.222257) (xy 126.2364 105.499943) (xy 126.290574 105.772294) (xy 126.39684 106.028843) (xy 126.551114 106.259731)
(xy 126.747469 106.456086) (xy 126.978357 106.61036) (xy 127.234906 106.716626) (xy 127.507257 106.7708) (xy 127.784943 106.7708)
(xy 128.057294 106.716626) (xy 128.313843 106.61036) (xy 128.544731 106.456086) (xy 128.741086 106.259731) (xy 128.89536 106.028843)
(xy 129.001626 105.772294) (xy 129.0558 105.499943) (xy 129.0558 105.222257) (xy 138.7364 105.222257) (xy 138.7364 105.499943)
(xy 138.790574 105.772294) (xy 138.89684 106.028843) (xy 139.051114 106.259731) (xy 139.247469 106.456086) (xy 139.478357 106.61036)
(xy 139.734906 106.716626) (xy 140.007257 106.7708) (xy 140.284943 106.7708) (xy 140.557294 106.716626) (xy 140.813843 106.61036)
(xy 141.044731 106.456086) (xy 141.241086 106.259731) (xy 141.39536 106.028843) (xy 141.501626 105.772294) (xy 141.5558 105.499943)
(xy 141.5558 105.222257) (xy 154.1764 105.222257) (xy 154.1764 105.499943) (xy 154.230574 105.772294) (xy 154.33684 106.028843)
(xy 154.491114 106.259731) (xy 154.687469 106.456086) (xy 154.918357 106.61036) (xy 155.174906 106.716626) (xy 155.447257 106.7708)
(xy 155.724943 106.7708) (xy 155.997294 106.716626) (xy 156.253843 106.61036) (xy 156.484731 106.456086) (xy 156.681086 106.259731)
(xy 156.83536 106.028843) (xy 156.941626 105.772294) (xy 156.9958 105.499943) (xy 156.9958 105.222257) (xy 166.6764 105.222257)
(xy 166.6764 105.499943) (xy 166.730574 105.772294) (xy 166.83684 106.028843) (xy 166.991114 106.259731) (xy 167.187469 106.456086)
(xy 167.418357 106.61036) (xy 167.674906 106.716626) (xy 167.947257 106.7708) (xy 168.224943 106.7708) (xy 168.497294 106.716626)
(xy 168.753843 106.61036) (xy 168.984731 106.456086) (xy 169.181086 106.259731) (xy 169.33536 106.028843) (xy 169.441626 105.772294)
(xy 169.46554 105.65207) (xy 171.104223 105.65207) (xy 171.11731 105.719444) (xy 171.219718 105.962518) (xy 171.367579 106.180943)
(xy 171.555212 106.366324) (xy 171.775405 106.511538) (xy 172.019697 106.611004) (xy 172.2787 106.6609) (xy 173.1423 106.6609)
(xy 173.1423 105.4449) (xy 173.3899 105.4449) (xy 173.3899 106.6609) (xy 174.2535 106.6609) (xy 174.512503 106.611004)
(xy 174.756795 106.511538) (xy 174.976988 106.366324) (xy 175.164621 106.180943) (xy 175.312482 105.962518) (xy 175.41489 105.719444)
(xy 175.427977 105.65207) (xy 175.344156 105.4449) (xy 173.3899 105.4449) (xy 173.1423 105.4449) (xy 171.188044 105.4449)
(xy 171.104223 105.65207) (xy 169.46554 105.65207) (xy 169.4958 105.499943) (xy 169.4958 105.222257) (xy 169.449628 104.99013)
(xy 171.104223 104.99013) (xy 171.188044 105.1973) (xy 173.1423 105.1973) (xy 173.1423 103.9813) (xy 173.3899 103.9813)
(xy 173.3899 105.1973) (xy 175.344156 105.1973) (xy 175.427977 104.99013) (xy 175.41489 104.922756) (xy 175.312482 104.679682)
(xy 175.164621 104.461257) (xy 174.976988 104.275876) (xy 174.756795 104.130662) (xy 174.512503 104.031196) (xy 174.2535 103.9813)
(xy 173.3899 103.9813) (xy 173.1423 103.9813) (xy 172.2787 103.9813) (xy 172.019697 104.031196) (xy 171.775405 104.130662)
(xy 171.555212 104.275876) (xy 171.367579 104.461257) (xy 171.219718 104.679682) (xy 171.11731 104.922756) (xy 171.104223 104.99013)
(xy 169.449628 104.99013) (xy 169.441626 104.949906) (xy 169.33536 104.693357) (xy 169.181086 104.462469) (xy 168.984731 104.266114)
(xy 168.753843 104.11184) (xy 168.497294 104.005574) (xy 168.224943 103.9514) (xy 167.947257 103.9514) (xy 167.674906 104.005574)
(xy 167.418357 104.11184) (xy 167.187469 104.266114) (xy 166.991114 104.462469) (xy 166.83684 104.693357) (xy 166.730574 104.949906)
(xy 166.6764 105.222257) (xy 156.9958 105.222257) (xy 156.941626 104.949906) (xy 156.83536 104.693357) (xy 156.681086 104.462469)
(xy 156.484731 104.266114) (xy 156.253843 104.11184) (xy 155.997294 104.005574) (xy 155.724943 103.9514) (xy 155.447257 103.9514)
(xy 155.174906 104.005574) (xy 154.918357 104.11184) (xy 154.687469 104.266114) (xy 154.491114 104.462469) (xy 154.33684 104.693357)
(xy 154.230574 104.949906) (xy 154.1764 105.222257) (xy 141.5558 105.222257) (xy 141.501626 104.949906) (xy 141.39536 104.693357)
(xy 141.241086 104.462469) (xy 141.044731 104.266114) (xy 140.813843 104.11184) (xy 140.557294 104.005574) (xy 140.284943 103.9514)
(xy 140.007257 103.9514) (xy 139.734906 104.005574) (xy 139.478357 104.11184) (xy 139.247469 104.266114) (xy 139.051114 104.462469)
(xy 138.89684 104.693357) (xy 138.790574 104.949906) (xy 138.7364 105.222257) (xy 129.0558 105.222257) (xy 129.001626 104.949906)
(xy 128.89536 104.693357) (xy 128.741086 104.462469) (xy 128.544731 104.266114) (xy 128.313843 104.11184) (xy 128.057294 104.005574)
(xy 127.784943 103.9514) (xy 127.507257 103.9514) (xy 127.234906 104.005574) (xy 126.978357 104.11184) (xy 126.747469 104.266114)
(xy 126.551114 104.462469) (xy 126.39684 104.693357) (xy 126.290574 104.949906) (xy 126.2364 105.222257) (xy 125.789541 105.222257)
(xy 125.776226 105.087074) (xy 125.707964 104.862042) (xy 125.597111 104.654651) (xy 125.447928 104.472872) (xy 125.266149 104.323689)
(xy 125.058758 104.212836) (xy 124.833726 104.144574) (xy 124.658344 104.1273) (xy 122.813856 104.1273) (xy 122.638474 104.144574)
(xy 122.413442 104.212836) (xy 122.206051 104.323689) (xy 122.024272 104.472872) (xy 121.875089 104.654651) (xy 121.764236 104.862042)
(xy 121.695974 105.087074) (xy 121.672924 105.3211) (xy 113.9313 105.3211) (xy 113.9313 102.7811) (xy 121.672924 102.7811)
(xy 121.695974 103.015126) (xy 121.764236 103.240158) (xy 121.875089 103.447549) (xy 122.024272 103.629328) (xy 122.206051 103.778511)
(xy 122.413442 103.889364) (xy 122.638474 103.957626) (xy 122.813856 103.9749) (xy 124.658344 103.9749) (xy 124.833726 103.957626)
(xy 125.058758 103.889364) (xy 125.266149 103.778511) (xy 125.447928 103.629328) (xy 125.597111 103.447549) (xy 125.707964 103.240158)
(xy 125.711018 103.230087) (xy 132.5659 103.230087) (xy 132.5659 103.492113) (xy 132.617019 103.749105) (xy 132.717292 103.991186)
(xy 132.862866 104.209053) (xy 133.048147 104.394334) (xy 133.266014 104.539908) (xy 133.508095 104.640181) (xy 133.765087 104.6913)
(xy 134.027113 104.6913) (xy 134.284105 104.640181) (xy 134.526186 104.539908) (xy 134.744053 104.394334) (xy 134.929334 104.209053)
(xy 135.074908 103.991186) (xy 135.094648 103.943528) (xy 142.9639 103.943528) (xy 142.9639 104.158672) (xy 143.005872 104.369683)
(xy 143.088205 104.568451) (xy 143.207733 104.747337) (xy 143.359863 104.899467) (xy 143.538749 105.018995) (xy 143.737517 105.101328)
(xy 143.948528 105.1433) (xy 144.163672 105.1433) (xy 144.374683 105.101328) (xy 144.573451 105.018995) (xy 144.752337 104.899467)
(xy 144.904467 104.747337) (xy 145.023995 104.568451) (xy 145.106328 104.369683) (xy 145.1483 104.158672) (xy 145.1483 103.943528)
(xy 150.5839 103.943528) (xy 150.5839 104.158672) (xy 150.625872 104.369683) (xy 150.708205 104.568451) (xy 150.827733 104.747337)
(xy 150.979863 104.899467) (xy 151.158749 105.018995) (xy 151.357517 105.101328) (xy 151.568528 105.1433) (xy 151.783672 105.1433)
(xy 151.994683 105.101328) (xy 152.193451 105.018995) (xy 152.372337 104.899467) (xy 152.524467 104.747337) (xy 152.643995 104.568451)
(xy 152.726328 104.369683) (xy 152.7683 104.158672) (xy 152.7683 103.943528) (xy 152.726328 103.732517) (xy 152.643995 103.533749)
(xy 152.524467 103.354863) (xy 152.399691 103.230087) (xy 160.5059 103.230087) (xy 160.5059 103.492113) (xy 160.557019 103.749105)
(xy 160.657292 103.991186) (xy 160.802866 104.209053) (xy 160.988147 104.394334) (xy 161.206014 104.539908) (xy 161.448095 104.640181)
(xy 161.705087 104.6913) (xy 161.967113 104.6913) (xy 162.224105 104.640181) (xy 162.466186 104.539908) (xy 162.684053 104.394334)
(xy 162.869334 104.209053) (xy 163.014908 103.991186) (xy 163.115181 103.749105) (xy 163.1663 103.492113) (xy 163.1663 103.230087)
(xy 163.115181 102.973095) (xy 163.035655 102.7811) (xy 171.202924 102.7811) (xy 171.225974 103.015126) (xy 171.294236 103.240158)
(xy 171.405089 103.447549) (xy 171.554272 103.629328) (xy 171.736051 103.778511) (xy 171.943442 103.889364) (xy 172.168474 103.957626)
(xy 172.343856 103.9749) (xy 174.188344 103.9749) (xy 174.363726 103.957626) (xy 174.588758 103.889364) (xy 174.796149 103.778511)
(xy 174.977928 103.629328) (xy 175.127111 103.447549) (xy 175.237964 103.240158) (xy 175.306226 103.015126) (xy 175.329276 102.7811)
(xy 175.306226 102.547074) (xy 175.237964 102.322042) (xy 175.127111 102.114651) (xy 174.977928 101.932872) (xy 174.796149 101.783689)
(xy 174.588758 101.672836) (xy 174.363726 101.604574) (xy 174.188344 101.5873) (xy 172.343856 101.5873) (xy 172.168474 101.604574)
(xy 171.943442 101.672836) (xy 171.736051 101.783689) (xy 171.554272 101.932872) (xy 171.405089 102.114651) (xy 171.294236 102.322042)
(xy 171.225974 102.547074) (xy 171.202924 102.7811) (xy 163.035655 102.7811) (xy 163.014908 102.731014) (xy 162.869334 102.513147)
(xy 162.684053 102.327866) (xy 162.466186 102.182292) (xy 162.224105 102.082019) (xy 161.967113 102.0309) (xy 161.705087 102.0309)
(xy 161.448095 102.082019) (xy 161.206014 102.182292) (xy 160.988147 102.327866) (xy 160.802866 102.513147) (xy 160.657292 102.731014)
(xy 160.557019 102.973095) (xy 160.5059 103.230087) (xy 152.399691 103.230087) (xy 152.372337 103.202733) (xy 152.193451 103.083205)
(xy 151.994683 103.000872) (xy 151.783672 102.9589) (xy 151.568528 102.9589) (xy 151.357517 103.000872) (xy 151.158749 103.083205)
(xy 150.979863 103.202733) (xy 150.827733 103.354863) (xy 150.708205 103.533749) (xy 150.625872 103.732517) (xy 150.5839 103.943528)
(xy 145.1483 103.943528) (xy 145.106328 103.732517) (xy 145.023995 103.533749) (xy 144.904467 103.354863) (xy 144.752337 103.202733)
(xy 144.573451 103.083205) (xy 144.374683 103.000872) (xy 144.163672 102.9589) (xy 143.948528 102.9589) (xy 143.737517 103.000872)
(xy 143.538749 103.083205) (xy 143.359863 103.202733) (xy 143.207733 103.354863) (xy 143.088205 103.533749) (xy 143.005872 103.732517)
(xy 142.9639 103.943528) (xy 135.094648 103.943528) (xy 135.175181 103.749105) (xy 135.2263 103.492113) (xy 135.2263 103.230087)
(xy 135.175181 102.973095) (xy 135.074908 102.731014) (xy 134.929334 102.513147) (xy 134.744053 102.327866) (xy 134.526186 102.182292)
(xy 134.284105 102.082019) (xy 134.027113 102.0309) (xy 133.765087 102.0309) (xy 133.508095 102.082019) (xy 133.266014 102.182292)
(xy 133.048147 102.327866) (xy 132.862866 102.513147) (xy 132.717292 102.731014) (xy 132.617019 102.973095) (xy 132.5659 103.230087)
(xy 125.711018 103.230087) (xy 125.776226 103.015126) (xy 125.799276 102.7811) (xy 125.776226 102.547074) (xy 125.707964 102.322042)
(xy 125.597111 102.114651) (xy 125.447928 101.932872) (xy 125.266149 101.783689) (xy 125.058758 101.672836) (xy 124.833726 101.604574)
(xy 124.658344 101.5873) (xy 122.813856 101.5873) (xy 122.638474 101.604574) (xy 122.413442 101.672836) (xy 122.206051 101.783689)
(xy 122.024272 101.932872) (xy 121.875089 102.114651) (xy 121.764236 102.322042) (xy 121.695974 102.547074) (xy 121.672924 102.7811)
(xy 113.9313 102.7811) (xy 113.9313 98.863528) (xy 116.2939 98.863528) (xy 116.2939 99.078672) (xy 116.335872 99.289683)
(xy 116.418205 99.488451) (xy 116.537733 99.667337) (xy 116.689863 99.819467) (xy 116.868749 99.938995) (xy 117.067517 100.021328)
(xy 117.278528 100.0633) (xy 117.493672 100.0633) (xy 117.704683 100.021328) (xy 117.903451 99.938995) (xy 118.082337 99.819467)
(xy 118.234467 99.667337) (xy 118.353995 99.488451) (xy 118.436328 99.289683) (xy 118.4783 99.078672) (xy 118.4783 98.863528)
(xy 118.436328 98.652517) (xy 118.353995 98.453749) (xy 118.234467 98.274863) (xy 118.115055 98.155451) (xy 118.8339 98.155451)
(xy 118.8339 99.786748) (xy 118.849704 99.947208) (xy 118.912157 100.153088) (xy 119.013575 100.342829) (xy 119.150062 100.509138)
(xy 119.316371 100.645625) (xy 119.506111 100.747043) (xy 119.711991 100.809496) (xy 119.9261 100.830584) (xy 120.140208 100.809496)
(xy 120.346088 100.747043) (xy 120.535829 100.645625) (xy 120.702138 100.509138) (xy 120.838625 100.342829) (xy 120.940043 100.153089)
(xy 121.002496 99.947209) (xy 121.0183 99.786749) (xy 121.0183 98.155451) (xy 121.3739 98.155451) (xy 121.3739 99.786748)
(xy 121.389704 99.947208) (xy 121.452157 100.153088) (xy 121.553575 100.342829) (xy 121.690062 100.509138) (xy 121.856371 100.645625)
(xy 122.046111 100.747043) (xy 122.251991 100.809496) (xy 122.4661 100.830584) (xy 122.680208 100.809496) (xy 122.886088 100.747043)
(xy 123.075829 100.645625) (xy 123.242138 100.509138) (xy 123.378625 100.342829) (xy 123.480043 100.153089) (xy 123.542496 99.947209)
(xy 123.5583 99.786749) (xy 123.5583 98.155451) (xy 123.9139 98.155451) (xy 123.9139 99.786748) (xy 123.929704 99.947208)
(xy 123.992157 100.153088) (xy 124.093575 100.342829) (xy 124.230062 100.509138) (xy 124.396371 100.645625) (xy 124.586111 100.747043)
(xy 124.791991 100.809496) (xy 125.0061 100.830584) (xy 125.220208 100.809496) (xy 125.426088 100.747043) (xy 125.615829 100.645625)
(xy 125.782138 100.509138) (xy 125.918625 100.342829) (xy 126.020043 100.153089) (xy 126.082496 99.947209) (xy 126.0983 99.786749)
(xy 126.0983 99.0949) (xy 126.3079 99.0949) (xy 126.3079 99.8569) (xy 126.355844 100.096082) (xy 126.449529 100.321315)
(xy 126.585354 100.523943) (xy 126.7581 100.696179) (xy 126.961129 100.831405) (xy 127.186638 100.924424) (xy 127.231098 100.930561)
(xy 127.4223 100.845382) (xy 127.4223 99.0949) (xy 127.6699 99.0949) (xy 127.6699 100.845382) (xy 127.861102 100.930561)
(xy 127.905562 100.924424) (xy 128.131071 100.831405) (xy 128.3341 100.696179) (xy 128.506846 100.523943) (xy 128.642671 100.321315)
(xy 128.736356 100.096082) (xy 128.7843 99.8569) (xy 128.7843 99.0949) (xy 127.6699 99.0949) (xy 127.4223 99.0949)
(xy 126.3079 99.0949) (xy 126.0983 99.0949) (xy 126.0983 98.155451) (xy 126.091391 98.0853) (xy 126.3079 98.0853)
(xy 126.3079 98.8473) (xy 127.4223 98.8473) (xy 127.4223 97.096818) (xy 127.6699 97.096818) (xy 127.6699 98.8473)
(xy 128.7843 98.8473) (xy 128.7843 98.155451) (xy 128.9939 98.155451) (xy 128.9939 99.786748) (xy 129.009704 99.947208)
(xy 129.072157 100.153088) (xy 129.173575 100.342829) (xy 129.310062 100.509138) (xy 129.476371 100.645625) (xy 129.666111 100.747043)
(xy 129.871991 100.809496) (xy 130.0861 100.830584) (xy 130.300208 100.809496) (xy 130.506088 100.747043) (xy 130.695829 100.645625)
(xy 130.862138 100.509138) (xy 130.998625 100.342829) (xy 131.100043 100.153089) (xy 131.162496 99.947209) (xy 131.1783 99.786749)
(xy 131.1783 98.155451) (xy 131.5339 98.155451) (xy 131.5339 99.786748) (xy 131.549704 99.947208) (xy 131.612157 100.153088)
(xy 131.713575 100.342829) (xy 131.850062 100.509138) (xy 132.016371 100.645625) (xy 132.206111 100.747043) (xy 132.411991 100.809496)
(xy 132.6261 100.830584) (xy 132.840208 100.809496) (xy 133.046088 100.747043) (xy 133.235829 100.645625) (xy 133.402138 100.509138)
(xy 133.538625 100.342829) (xy 133.640043 100.153089) (xy 133.702496 99.947209) (xy 133.7183 99.786749) (xy 133.7183 98.155451)
(xy 134.0739 98.155451) (xy 134.0739 99.786748) (xy 134.089704 99.947208) (xy 134.152157 100.153088) (xy 134.253575 100.342829)
(xy 134.390062 100.509138) (xy 134.556371 100.645625) (xy 134.746111 100.747043) (xy 134.951991 100.809496) (xy 135.1661 100.830584)
(xy 135.380208 100.809496) (xy 135.586088 100.747043) (xy 135.775829 100.645625) (xy 135.942138 100.509138) (xy 136.078625 100.342829)
(xy 136.180043 100.153089) (xy 136.242496 99.947209) (xy 136.2583 99.786749) (xy 136.2583 98.155451) (xy 136.6139 98.155451)
(xy 136.6139 99.786748) (xy 136.629704 99.947208) (xy 136.692157 100.153088) (xy 136.793575 100.342829) (xy 136.930062 100.509138)
(xy 137.096371 100.645625) (xy 137.286111 100.747043) (xy 137.491991 100.809496) (xy 137.7061 100.830584) (xy 137.920208 100.809496)
(xy 137.951225 100.800087) (xy 146.5359 100.800087) (xy 146.5359 101.062113) (xy 146.587019 101.319105) (xy 146.687292 101.561186)
(xy 146.832866 101.779053) (xy 147.018147 101.964334) (xy 147.236014 102.109908) (xy 147.478095 102.210181) (xy 147.735087 102.2613)
(xy 147.997113 102.2613) (xy 148.254105 102.210181) (xy 148.496186 102.109908) (xy 148.714053 101.964334) (xy 148.899334 101.779053)
(xy 149.044908 101.561186) (xy 149.145181 101.319105) (xy 149.1963 101.062113) (xy 149.1963 100.800087) (xy 149.145181 100.543095)
(xy 149.044908 100.301014) (xy 148.899334 100.083147) (xy 148.714053 99.897866) (xy 148.496186 99.752292) (xy 148.254105 99.652019)
(xy 147.997113 99.6009) (xy 147.735087 99.6009) (xy 147.478095 99.652019) (xy 147.236014 99.752292) (xy 147.018147 99.897866)
(xy 146.832866 100.083147) (xy 146.687292 100.301014) (xy 146.587019 100.543095) (xy 146.5359 100.800087) (xy 137.951225 100.800087)
(xy 138.126088 100.747043) (xy 138.315829 100.645625) (xy 138.482138 100.509138) (xy 138.618625 100.342829) (xy 138.720043 100.153089)
(xy 138.782496 99.947209) (xy 138.7983 99.786749) (xy 138.7983 98.792257) (xy 140.2064 98.792257) (xy 140.2064 99.069943)
(xy 140.260574 99.342294) (xy 140.36684 99.598843) (xy 140.521114 99.829731) (xy 140.717469 100.026086) (xy 140.948357 100.18036)
(xy 141.204906 100.286626) (xy 141.477257 100.3408) (xy 141.754943 100.3408) (xy 142.027294 100.286626) (xy 142.283843 100.18036)
(xy 142.514731 100.026086) (xy 142.711086 99.829731) (xy 142.86536 99.598843) (xy 142.971626 99.342294) (xy 143.0258 99.069943)
(xy 143.0258 98.792257) (xy 152.7064 98.792257) (xy 152.7064 99.069943) (xy 152.760574 99.342294) (xy 152.86684 99.598843)
(xy 153.021114 99.829731) (xy 153.217469 100.026086) (xy 153.448357 100.18036) (xy 153.704906 100.286626) (xy 153.977257 100.3408)
(xy 154.254943 100.3408) (xy 154.527294 100.286626) (xy 154.783843 100.18036) (xy 154.853932 100.133528) (xy 178.5239 100.133528)
(xy 178.5239 100.348672) (xy 178.565872 100.559683) (xy 178.648205 100.758451) (xy 178.767733 100.937337) (xy 178.919863 101.089467)
(xy 179.098749 101.208995) (xy 179.297517 101.291328) (xy 179.508528 101.3333) (xy 179.723672 101.3333) (xy 179.934683 101.291328)
(xy 180.133451 101.208995) (xy 180.312337 101.089467) (xy 180.464467 100.937337) (xy 180.583995 100.758451) (xy 180.666328 100.559683)
(xy 180.666852 100.557044) (xy 180.952693 100.557044) (xy 181.037454 100.785746) (xy 181.165204 100.993518) (xy 181.331033 101.172375)
(xy 181.528569 101.315443) (xy 181.750221 101.417225) (xy 181.840156 101.444507) (xy 182.0323 101.359409) (xy 182.0323 100.3649)
(xy 181.037791 100.3649) (xy 180.952693 100.557044) (xy 180.666852 100.557044) (xy 180.7083 100.348672) (xy 180.7083 100.133528)
(xy 180.666853 99.925156) (xy 180.952693 99.925156) (xy 181.037791 100.1173) (xy 182.0323 100.1173) (xy 182.0323 99.122791)
(xy 181.840156 99.037693) (xy 181.611454 99.122454) (xy 181.403682 99.250204) (xy 181.224825 99.416033) (xy 181.081757 99.613569)
(xy 180.979975 99.835221) (xy 180.952693 99.925156) (xy 180.666853 99.925156) (xy 180.666328 99.922517) (xy 180.583995 99.723749)
(xy 180.464467 99.544863) (xy 180.312337 99.392733) (xy 180.133451 99.273205) (xy 179.934683 99.190872) (xy 179.723672 99.1489)
(xy 179.508528 99.1489) (xy 179.297517 99.190872) (xy 179.098749 99.273205) (xy 178.919863 99.392733) (xy 178.767733 99.544863)
(xy 178.648205 99.723749) (xy 178.565872 99.922517) (xy 178.5239 100.133528) (xy 154.853932 100.133528) (xy 155.014731 100.026086)
(xy 155.211086 99.829731) (xy 155.36536 99.598843) (xy 155.471626 99.342294) (xy 155.5258 99.069943) (xy 155.5258 98.792257)
(xy 155.471626 98.519906) (xy 155.36536 98.263357) (xy 155.211086 98.032469) (xy 155.014731 97.836114) (xy 154.783843 97.68184)
(xy 154.570639 97.593528) (xy 156.9339 97.593528) (xy 156.9339 97.808672) (xy 156.975872 98.019683) (xy 157.058205 98.218451)
(xy 157.177733 98.397337) (xy 157.329863 98.549467) (xy 157.508749 98.668995) (xy 157.707517 98.751328) (xy 157.918528 98.7933)
(xy 158.133672 98.7933) (xy 158.344683 98.751328) (xy 158.543451 98.668995) (xy 158.722337 98.549467) (xy 158.874467 98.397337)
(xy 158.993995 98.218451) (xy 159.076328 98.019683) (xy 159.1183 97.808672) (xy 159.1183 97.593528) (xy 164.5539 97.593528)
(xy 164.5539 97.808672) (xy 164.595872 98.019683) (xy 164.678205 98.218451) (xy 164.797733 98.397337) (xy 164.949863 98.549467)
(xy 165.128749 98.668995) (xy 165.327517 98.751328) (xy 165.538528 98.7933) (xy 165.753672 98.7933) (xy 165.964683 98.751328)
(xy 166.163451 98.668995) (xy 166.342337 98.549467) (xy 166.494467 98.397337) (xy 166.613995 98.218451) (xy 166.696328 98.019683)
(xy 166.7383 97.808672) (xy 166.7383 97.593528) (xy 166.696328 97.382517) (xy 166.613995 97.183749) (xy 166.494467 97.004863)
(xy 166.342337 96.852733) (xy 166.163451 96.733205) (xy 165.964683 96.650872) (xy 165.753672 96.6089) (xy 165.538528 96.6089)
(xy 165.327517 96.650872) (xy 165.128749 96.733205) (xy 164.949863 96.852733) (xy 164.797733 97.004863) (xy 164.678205 97.183749)
(xy 164.595872 97.382517) (xy 164.5539 97.593528) (xy 159.1183 97.593528) (xy 159.076328 97.382517) (xy 158.993995 97.183749)
(xy 158.874467 97.004863) (xy 158.722337 96.852733) (xy 158.543451 96.733205) (xy 158.344683 96.650872) (xy 158.133672 96.6089)
(xy 157.918528 96.6089) (xy 157.707517 96.650872) (xy 157.508749 96.733205) (xy 157.329863 96.852733) (xy 157.177733 97.004863)
(xy 157.058205 97.183749) (xy 156.975872 97.382517) (xy 156.9339 97.593528) (xy 154.570639 97.593528) (xy 154.527294 97.575574)
(xy 154.254943 97.5214) (xy 153.977257 97.5214) (xy 153.704906 97.575574) (xy 153.448357 97.68184) (xy 153.217469 97.836114)
(xy 153.021114 98.032469) (xy 152.86684 98.263357) (xy 152.760574 98.519906) (xy 152.7064 98.792257) (xy 143.0258 98.792257)
(xy 142.971626 98.519906) (xy 142.86536 98.263357) (xy 142.711086 98.032469) (xy 142.514731 97.836114) (xy 142.283843 97.68184)
(xy 142.027294 97.575574) (xy 141.754943 97.5214) (xy 141.477257 97.5214) (xy 141.204906 97.575574) (xy 140.948357 97.68184)
(xy 140.717469 97.836114) (xy 140.521114 98.032469) (xy 140.36684 98.263357) (xy 140.260574 98.519906) (xy 140.2064 98.792257)
(xy 138.7983 98.792257) (xy 138.7983 98.155451) (xy 138.782496 97.994991) (xy 138.720043 97.789111) (xy 138.618625 97.599371)
(xy 138.482138 97.433062) (xy 138.315829 97.296575) (xy 138.126089 97.195157) (xy 137.920209 97.132704) (xy 137.7061 97.111616)
(xy 137.491992 97.132704) (xy 137.286112 97.195157) (xy 137.096372 97.296575) (xy 136.930063 97.433062) (xy 136.793576 97.599371)
(xy 136.692158 97.789111) (xy 136.629704 97.994991) (xy 136.6139 98.155451) (xy 136.2583 98.155451) (xy 136.242496 97.994991)
(xy 136.180043 97.789111) (xy 136.078625 97.599371) (xy 135.942138 97.433062) (xy 135.775829 97.296575) (xy 135.586089 97.195157)
(xy 135.380209 97.132704) (xy 135.1661 97.111616) (xy 134.951992 97.132704) (xy 134.746112 97.195157) (xy 134.556372 97.296575)
(xy 134.390063 97.433062) (xy 134.253576 97.599371) (xy 134.152158 97.789111) (xy 134.089704 97.994991) (xy 134.0739 98.155451)
(xy 133.7183 98.155451) (xy 133.702496 97.994991) (xy 133.640043 97.789111) (xy 133.538625 97.599371) (xy 133.402138 97.433062)
(xy 133.235829 97.296575) (xy 133.046089 97.195157) (xy 132.840209 97.132704) (xy 132.6261 97.111616) (xy 132.411992 97.132704)
(xy 132.206112 97.195157) (xy 132.016372 97.296575) (xy 131.850063 97.433062) (xy 131.713576 97.599371) (xy 131.612158 97.789111)
(xy 131.549704 97.994991) (xy 131.5339 98.155451) (xy 131.1783 98.155451) (xy 131.162496 97.994991) (xy 131.100043 97.789111)
(xy 130.998625 97.599371) (xy 130.862138 97.433062) (xy 130.695829 97.296575) (xy 130.506089 97.195157) (xy 130.300209 97.132704)
(xy 130.0861 97.111616) (xy 129.871992 97.132704) (xy 129.666112 97.195157) (xy 129.476372 97.296575) (xy 129.310063 97.433062)
(xy 129.173576 97.599371) (xy 129.072158 97.789111) (xy 129.009704 97.994991) (xy 128.9939 98.155451) (xy 128.7843 98.155451)
(xy 128.7843 98.0853) (xy 128.736356 97.846118) (xy 128.642671 97.620885) (xy 128.506846 97.418257) (xy 128.3341 97.246021)
(xy 128.131071 97.110795) (xy 127.905562 97.017776) (xy 127.861102 97.011639) (xy 127.6699 97.096818) (xy 127.4223 97.096818)
(xy 127.231098 97.011639) (xy 127.186638 97.017776) (xy 126.961129 97.110795) (xy 126.7581 97.246021) (xy 126.585354 97.418257)
(xy 126.449529 97.620885) (xy 126.355844 97.846118) (xy 126.3079 98.0853) (xy 126.091391 98.0853) (xy 126.082496 97.994991)
(xy 126.020043 97.789111) (xy 125.918625 97.599371) (xy 125.782138 97.433062) (xy 125.615829 97.296575) (xy 125.426089 97.195157)
(xy 125.220209 97.132704) (xy 125.0061 97.111616) (xy 124.791992 97.132704) (xy 124.586112 97.195157) (xy 124.396372 97.296575)
(xy 124.230063 97.433062) (xy 124.093576 97.599371) (xy 123.992158 97.789111) (xy 123.929704 97.994991) (xy 123.9139 98.155451)
(xy 123.5583 98.155451) (xy 123.542496 97.994991) (xy 123.480043 97.789111) (xy 123.378625 97.599371) (xy 123.242138 97.433062)
(xy 123.075829 97.296575) (xy 123.05582 97.28588) (xy 123.682 96.6597) (xy 145.468375 96.6597) (xy 145.479593 96.676489)
(xy 145.588711 96.785607) (xy 145.717021 96.87134) (xy 145.859591 96.930395) (xy 146.010942 96.9605) (xy 146.165258 96.9605)
(xy 146.316609 96.930395) (xy 146.459179 96.87134) (xy 146.587489 96.785607) (xy 146.696607 96.676489) (xy 146.78234 96.548179)
(xy 146.841395 96.405609) (xy 146.8715 96.254258) (xy 146.8715 96.099942) (xy 146.841395 95.948591) (xy 146.78234 95.806021)
(xy 146.696607 95.677711) (xy 146.587489 95.568593) (xy 146.459179 95.48286) (xy 146.316609 95.423805) (xy 146.165258 95.3937)
(xy 146.010942 95.3937) (xy 145.859591 95.423805) (xy 145.717021 95.48286) (xy 145.588711 95.568593) (xy 145.479593 95.677711)
(xy 145.468375 95.6945) (xy 123.505807 95.6945) (xy 123.4821 95.692165) (xy 123.387493 95.701483) (xy 123.300486 95.727876)
(xy 123.296523 95.729078) (xy 123.212685 95.773891) (xy 123.139199 95.834199) (xy 123.124088 95.852613) (xy 122.141613 96.835088)
(xy 122.1232 96.850199) (xy 122.108089 96.868612) (xy 122.108087 96.868614) (xy 122.062892 96.923685) (xy 122.018078 97.007524)
(xy 121.990484 97.098494) (xy 121.981165 97.1931) (xy 121.983501 97.216815) (xy 121.983501 97.228623) (xy 121.856372 97.296575)
(xy 121.690063 97.433062) (xy 121.553576 97.599371) (xy 121.452158 97.789111) (xy 121.389704 97.994991) (xy 121.3739 98.155451)
(xy 121.0183 98.155451) (xy 121.002496 97.994991) (xy 120.940043 97.789111) (xy 120.838625 97.599371) (xy 120.702138 97.433062)
(xy 120.535829 97.296575) (xy 120.346089 97.195157) (xy 120.140209 97.132704) (xy 119.9261 97.111616) (xy 119.711992 97.132704)
(xy 119.506112 97.195157) (xy 119.316372 97.296575) (xy 119.150063 97.433062) (xy 119.013576 97.599371) (xy 118.912158 97.789111)
(xy 118.849704 97.994991) (xy 118.8339 98.155451) (xy 118.115055 98.155451) (xy 118.082337 98.122733) (xy 117.903451 98.003205)
(xy 117.704683 97.920872) (xy 117.493672 97.8789) (xy 117.278528 97.8789) (xy 117.067517 97.920872) (xy 116.868749 98.003205)
(xy 116.689863 98.122733) (xy 116.537733 98.274863) (xy 116.418205 98.453749) (xy 116.335872 98.652517) (xy 116.2939 98.863528)
(xy 113.9313 98.863528) (xy 113.9313 97.309404) (xy 116.682876 97.309404) (xy 116.758569 97.505443) (xy 116.980221 97.607225)
(xy 117.217471 97.663809) (xy 117.4612 97.673021) (xy 117.702044 97.634507) (xy 117.930746 97.549746) (xy 118.013631 97.505443)
(xy 118.089324 97.309404) (xy 117.3861 96.60618) (xy 116.682876 97.309404) (xy 113.9313 97.309404) (xy 113.9313 96.5062)
(xy 116.144179 96.5062) (xy 116.182693 96.747044) (xy 116.267454 96.975746) (xy 116.311757 97.058631) (xy 116.507796 97.134324)
(xy 117.21102 96.4311) (xy 117.56118 96.4311) (xy 118.264404 97.134324) (xy 118.460443 97.058631) (xy 118.562225 96.836979)
(xy 118.618809 96.599729) (xy 118.628021 96.356) (xy 118.589507 96.115156) (xy 118.504746 95.886454) (xy 118.460443 95.803569)
(xy 118.264404 95.727876) (xy 117.56118 96.4311) (xy 117.21102 96.4311) (xy 116.507796 95.727876) (xy 116.311757 95.803569)
(xy 116.209975 96.025221) (xy 116.153391 96.262471) (xy 116.144179 96.5062) (xy 113.9313 96.5062) (xy 113.9313 95.552796)
(xy 116.682876 95.552796) (xy 117.3861 96.25602) (xy 118.089324 95.552796) (xy 118.013631 95.356757) (xy 117.791979 95.254975)
(xy 117.554729 95.198391) (xy 117.311 95.189179) (xy 117.070156 95.227693) (xy 116.841454 95.312454) (xy 116.758569 95.356757)
(xy 116.682876 95.552796) (xy 113.9313 95.552796) (xy 113.9313 93.792257) (xy 140.2064 93.792257) (xy 140.2064 94.069943)
(xy 140.260574 94.342294) (xy 140.36684 94.598843) (xy 140.521114 94.829731) (xy 140.717469 95.026086) (xy 140.948357 95.18036)
(xy 141.204906 95.286626) (xy 141.477257 95.3408) (xy 141.754943 95.3408) (xy 142.027294 95.286626) (xy 142.283843 95.18036)
(xy 142.514731 95.026086) (xy 142.711086 94.829731) (xy 142.86536 94.598843) (xy 142.971626 94.342294) (xy 143.0258 94.069943)
(xy 143.0258 93.792257) (xy 152.7064 93.792257) (xy 152.7064 94.069943) (xy 152.760574 94.342294) (xy 152.86684 94.598843)
(xy 153.021114 94.829731) (xy 153.217469 95.026086) (xy 153.448357 95.18036) (xy 153.704906 95.286626) (xy 153.977257 95.3408)
(xy 154.254943 95.3408) (xy 154.527294 95.286626) (xy 154.783843 95.18036) (xy 154.973661 95.053528) (xy 156.9339 95.053528)
(xy 156.9339 95.268672) (xy 156.975872 95.479683) (xy 157.058205 95.678451) (xy 157.177733 95.857337) (xy 157.329863 96.009467)
(xy 157.508749 96.128995) (xy 157.707517 96.211328) (xy 157.918528 96.2533) (xy 158.133672 96.2533) (xy 158.344683 96.211328)
(xy 158.543451 96.128995) (xy 158.722337 96.009467) (xy 158.874467 95.857337) (xy 158.993995 95.678451) (xy 159.076328 95.479683)
(xy 159.1183 95.268672) (xy 159.1183 95.053528) (xy 164.5539 95.053528) (xy 164.5539 95.268672) (xy 164.595872 95.479683)
(xy 164.678205 95.678451) (xy 164.797733 95.857337) (xy 164.949863 96.009467) (xy 165.128749 96.128995) (xy 165.327517 96.211328)
(xy 165.538528 96.2533) (xy 165.753672 96.2533) (xy 165.964683 96.211328) (xy 166.163451 96.128995) (xy 166.342337 96.009467)
(xy 166.494467 95.857337) (xy 166.613995 95.678451) (xy 166.696328 95.479683) (xy 166.7383 95.268672) (xy 166.7383 95.053528)
(xy 166.696328 94.842517) (xy 166.613995 94.643749) (xy 166.494467 94.464863) (xy 166.342337 94.312733) (xy 166.163451 94.193205)
(xy 165.964683 94.110872) (xy 165.753672 94.0689) (xy 165.538528 94.0689) (xy 165.327517 94.110872) (xy 165.128749 94.193205)
(xy 164.949863 94.312733) (xy 164.797733 94.464863) (xy 164.678205 94.643749) (xy 164.595872 94.842517) (xy 164.5539 95.053528)
(xy 159.1183 95.053528) (xy 159.076328 94.842517) (xy 158.993995 94.643749) (xy 158.874467 94.464863) (xy 158.722337 94.312733)
(xy 158.543451 94.193205) (xy 158.344683 94.110872) (xy 158.133672 94.0689) (xy 157.918528 94.0689) (xy 157.707517 94.110872)
(xy 157.508749 94.193205) (xy 157.329863 94.312733) (xy 157.177733 94.464863) (xy 157.058205 94.643749) (xy 156.975872 94.842517)
(xy 156.9339 95.053528) (xy 154.973661 95.053528) (xy 155.014731 95.026086) (xy 155.211086 94.829731) (xy 155.36536 94.598843)
(xy 155.471626 94.342294) (xy 155.5258 94.069943) (xy 155.5258 93.792257) (xy 155.471626 93.519906) (xy 155.463134 93.499404)
(xy 159.862876 93.499404) (xy 159.938569 93.695443) (xy 160.160221 93.797225) (xy 160.397471 93.853809) (xy 160.6412 93.863021)
(xy 160.882044 93.824507) (xy 161.110746 93.739746) (xy 161.193631 93.695443) (xy 161.269324 93.499404) (xy 160.5661 92.79618)
(xy 159.862876 93.499404) (xy 155.463134 93.499404) (xy 155.36536 93.263357) (xy 155.211086 93.032469) (xy 155.014731 92.836114)
(xy 154.783843 92.68184) (xy 154.527294 92.575574) (xy 154.254943 92.5214) (xy 153.977257 92.5214) (xy 153.704906 92.575574)
(xy 153.448357 92.68184) (xy 153.217469 92.836114) (xy 153.021114 93.032469) (xy 152.86684 93.263357) (xy 152.760574 93.519906)
(xy 152.7064 93.792257) (xy 143.0258 93.792257) (xy 142.971626 93.519906) (xy 142.86536 93.263357) (xy 142.711086 93.032469)
(xy 142.514731 92.836114) (xy 142.283843 92.68184) (xy 142.027294 92.575574) (xy 141.754943 92.5214) (xy 141.477257 92.5214)
(xy 141.204906 92.575574) (xy 140.948357 92.68184) (xy 140.717469 92.836114) (xy 140.521114 93.032469) (xy 140.36684 93.263357)
(xy 140.260574 93.519906) (xy 140.2064 93.792257) (xy 113.9313 93.792257) (xy 113.9313 90.535451) (xy 118.8339 90.535451)
(xy 118.8339 92.166748) (xy 118.849704 92.327208) (xy 118.912157 92.533088) (xy 119.013575 92.722829) (xy 119.150062 92.889138)
(xy 119.316371 93.025625) (xy 119.506111 93.127043) (xy 119.711991 93.189496) (xy 119.9261 93.210584) (xy 120.140208 93.189496)
(xy 120.346088 93.127043) (xy 120.535829 93.025625) (xy 120.702138 92.889138) (xy 120.838625 92.722829) (xy 120.940043 92.533089)
(xy 121.002496 92.327209) (xy 121.0183 92.166749) (xy 121.0183 90.535451) (xy 121.3739 90.535451) (xy 121.3739 92.166748)
(xy 121.389704 92.327208) (xy 121.452157 92.533088) (xy 121.553575 92.722829) (xy 121.690062 92.889138) (xy 121.856371 93.025625)
(xy 122.046111 93.127043) (xy 122.251991 93.189496) (xy 122.4661 93.210584) (xy 122.680208 93.189496) (xy 122.886088 93.127043)
(xy 123.075829 93.025625) (xy 123.242138 92.889138) (xy 123.378625 92.722829) (xy 123.480043 92.533089) (xy 123.542496 92.327209)
(xy 123.5583 92.166749) (xy 123.5583 90.535451) (xy 123.9139 90.535451) (xy 123.9139 92.166748) (xy 123.929704 92.327208)
(xy 123.992157 92.533088) (xy 124.093575 92.722829) (xy 124.230062 92.889138) (xy 124.396371 93.025625) (xy 124.586111 93.127043)
(xy 124.791991 93.189496) (xy 125.0061 93.210584) (xy 125.220208 93.189496) (xy 125.426088 93.127043) (xy 125.615829 93.025625)
(xy 125.782138 92.889138) (xy 125.918625 92.722829) (xy 126.020043 92.533089) (xy 126.082496 92.327209) (xy 126.0983 92.166749)
(xy 126.0983 90.535451) (xy 126.4539 90.535451) (xy 126.4539 92.166748) (xy 126.469704 92.327208) (xy 126.532157 92.533088)
(xy 126.633575 92.722829) (xy 126.770062 92.889138) (xy 126.936371 93.025625) (xy 127.126111 93.127043) (xy 127.331991 93.189496)
(xy 127.5461 93.210584) (xy 127.760208 93.189496) (xy 127.966088 93.127043) (xy 128.155829 93.025625) (xy 128.322138 92.889138)
(xy 128.458625 92.722829) (xy 128.560043 92.533089) (xy 128.622496 92.327209) (xy 128.6383 92.166749) (xy 128.6383 90.535451)
(xy 128.9939 90.535451) (xy 128.9939 92.166748) (xy 129.009704 92.327208) (xy 129.072157 92.533088) (xy 129.173575 92.722829)
(xy 129.310062 92.889138) (xy 129.476371 93.025625) (xy 129.666111 93.127043) (xy 129.871991 93.189496) (xy 130.0861 93.210584)
(xy 130.300208 93.189496) (xy 130.506088 93.127043) (xy 130.695829 93.025625) (xy 130.862138 92.889138) (xy 130.998625 92.722829)
(xy 131.100043 92.533089) (xy 131.162496 92.327209) (xy 131.1783 92.166749) (xy 131.1783 90.535451) (xy 131.5339 90.535451)
(xy 131.5339 92.166748) (xy 131.549704 92.327208) (xy 131.612157 92.533088) (xy 131.713575 92.722829) (xy 131.850062 92.889138)
(xy 132.016371 93.025625) (xy 132.206111 93.127043) (xy 132.411991 93.189496) (xy 132.6261 93.210584) (xy 132.840208 93.189496)
(xy 133.046088 93.127043) (xy 133.235829 93.025625) (xy 133.402138 92.889138) (xy 133.538625 92.722829) (xy 133.640043 92.533089)
(xy 133.702496 92.327209) (xy 133.7183 92.166749) (xy 133.7183 90.535451) (xy 134.0739 90.535451) (xy 134.0739 92.166748)
(xy 134.089704 92.327208) (xy 134.152157 92.533088) (xy 134.253575 92.722829) (xy 134.390062 92.889138) (xy 134.556371 93.025625)
(xy 134.746111 93.127043) (xy 134.951991 93.189496) (xy 135.1661 93.210584) (xy 135.380208 93.189496) (xy 135.586088 93.127043)
(xy 135.775829 93.025625) (xy 135.942138 92.889138) (xy 136.078625 92.722829) (xy 136.180043 92.533089) (xy 136.242496 92.327209)
(xy 136.2583 92.166749) (xy 136.2583 91.4749) (xy 136.4679 91.4749) (xy 136.4679 92.2369) (xy 136.515844 92.476082)
(xy 136.609529 92.701315) (xy 136.745354 92.903943) (xy 136.9181 93.076179) (xy 137.121129 93.211405) (xy 137.346638 93.304424)
(xy 137.391098 93.310561) (xy 137.5823 93.225382) (xy 137.5823 91.4749) (xy 137.8299 91.4749) (xy 137.8299 93.225382)
(xy 138.021102 93.310561) (xy 138.065562 93.304424) (xy 138.291071 93.211405) (xy 138.4941 93.076179) (xy 138.666846 92.903943)
(xy 138.802671 92.701315) (xy 138.896356 92.476082) (xy 138.9443 92.2369) (xy 138.9443 91.800087) (xy 146.5359 91.800087)
(xy 146.5359 92.062113) (xy 146.587019 92.319105) (xy 146.687292 92.561186) (xy 146.832866 92.779053) (xy 147.018147 92.964334)
(xy 147.236014 93.109908) (xy 147.478095 93.210181) (xy 147.735087 93.2613) (xy 147.997113 93.2613) (xy 148.254105 93.210181)
(xy 148.496186 93.109908) (xy 148.714053 92.964334) (xy 148.899334 92.779053) (xy 149.044908 92.561186) (xy 149.145181 92.319105)
(xy 149.1963 92.062113) (xy 149.1963 91.800087) (xy 149.145181 91.543095) (xy 149.044908 91.301014) (xy 149.006498 91.243528)
(xy 157.5689 91.243528) (xy 157.5689 91.458672) (xy 157.610872 91.669683) (xy 157.693205 91.868451) (xy 157.812733 92.047337)
(xy 157.964863 92.199467) (xy 158.143749 92.318995) (xy 158.342517 92.401328) (xy 158.553528 92.4433) (xy 158.768672 92.4433)
(xy 158.979683 92.401328) (xy 159.178451 92.318995) (xy 159.357337 92.199467) (xy 159.431065 92.125739) (xy 159.389975 92.215221)
(xy 159.333391 92.452471) (xy 159.324179 92.6962) (xy 159.362693 92.937044) (xy 159.447454 93.165746) (xy 159.491757 93.248631)
(xy 159.687796 93.324324) (xy 160.39102 92.6211) (xy 160.74118 92.6211) (xy 161.444404 93.324324) (xy 161.640443 93.248631)
(xy 161.742225 93.026979) (xy 161.798809 92.789729) (xy 161.808021 92.546) (xy 161.769507 92.305156) (xy 161.684746 92.076454)
(xy 161.640443 91.993569) (xy 161.444404 91.917876) (xy 160.74118 92.6211) (xy 160.39102 92.6211) (xy 159.687796 91.917876)
(xy 159.564043 91.965659) (xy 159.628995 91.868451) (xy 159.681043 91.742796) (xy 159.862876 91.742796) (xy 160.5661 92.44602)
(xy 161.269324 91.742796) (xy 161.193631 91.546757) (xy 160.971979 91.444975) (xy 160.734729 91.388391) (xy 160.491 91.379179)
(xy 160.250156 91.417693) (xy 160.021454 91.502454) (xy 159.938569 91.546757) (xy 159.862876 91.742796) (xy 159.681043 91.742796)
(xy 159.711328 91.669683) (xy 159.7533 91.458672) (xy 159.7533 91.243528) (xy 178.5239 91.243528) (xy 178.5239 91.458672)
(xy 178.565872 91.669683) (xy 178.648205 91.868451) (xy 178.767733 92.047337) (xy 178.919863 92.199467) (xy 179.098749 92.318995)
(xy 179.297517 92.401328) (xy 179.508528 92.4433) (xy 179.723672 92.4433) (xy 179.934683 92.401328) (xy 180.133451 92.318995)
(xy 180.312337 92.199467) (xy 180.464467 92.047337) (xy 180.583995 91.868451) (xy 180.666328 91.669683) (xy 180.666852 91.667044)
(xy 180.952693 91.667044) (xy 181.037454 91.895746) (xy 181.165204 92.103518) (xy 181.331033 92.282375) (xy 181.528569 92.425443)
(xy 181.750221 92.527225) (xy 181.840156 92.554507) (xy 182.0323 92.469409) (xy 182.0323 91.4749) (xy 181.037791 91.4749)
(xy 180.952693 91.667044) (xy 180.666852 91.667044) (xy 180.7083 91.458672) (xy 180.7083 91.243528) (xy 180.666853 91.035156)
(xy 180.952693 91.035156) (xy 181.037791 91.2273) (xy 182.0323 91.2273) (xy 182.0323 90.232791) (xy 181.840156 90.147693)
(xy 181.611454 90.232454) (xy 181.403682 90.360204) (xy 181.224825 90.526033) (xy 181.081757 90.723569) (xy 180.979975 90.945221)
(xy 180.952693 91.035156) (xy 180.666853 91.035156) (xy 180.666328 91.032517) (xy 180.583995 90.833749) (xy 180.464467 90.654863)
(xy 180.312337 90.502733) (xy 180.133451 90.383205) (xy 179.934683 90.300872) (xy 179.723672 90.2589) (xy 179.508528 90.2589)
(xy 179.297517 90.300872) (xy 179.098749 90.383205) (xy 178.919863 90.502733) (xy 178.767733 90.654863) (xy 178.648205 90.833749)
(xy 178.565872 91.032517) (xy 178.5239 91.243528) (xy 159.7533 91.243528) (xy 159.711328 91.032517) (xy 159.628995 90.833749)
(xy 159.509467 90.654863) (xy 159.357337 90.502733) (xy 159.178451 90.383205) (xy 158.979683 90.300872) (xy 158.768672 90.2589)
(xy 158.553528 90.2589) (xy 158.342517 90.300872) (xy 158.143749 90.383205) (xy 157.964863 90.502733) (xy 157.812733 90.654863)
(xy 157.693205 90.833749) (xy 157.610872 91.032517) (xy 157.5689 91.243528) (xy 149.006498 91.243528) (xy 148.899334 91.083147)
(xy 148.714053 90.897866) (xy 148.496186 90.752292) (xy 148.254105 90.652019) (xy 147.997113 90.6009) (xy 147.735087 90.6009)
(xy 147.478095 90.652019) (xy 147.236014 90.752292) (xy 147.018147 90.897866) (xy 146.832866 91.083147) (xy 146.687292 91.301014)
(xy 146.587019 91.543095) (xy 146.5359 91.800087) (xy 138.9443 91.800087) (xy 138.9443 91.4749) (xy 137.8299 91.4749)
(xy 137.5823 91.4749) (xy 136.4679 91.4749) (xy 136.2583 91.4749) (xy 136.2583 90.535451) (xy 136.251391 90.4653)
(xy 136.4679 90.4653) (xy 136.4679 91.2273) (xy 137.5823 91.2273) (xy 137.5823 89.476818) (xy 137.8299 89.476818)
(xy 137.8299 91.2273) (xy 138.9443 91.2273) (xy 138.9443 90.4653) (xy 138.896356 90.226118) (xy 138.802671 90.000885)
(xy 138.666846 89.798257) (xy 138.4941 89.626021) (xy 138.291071 89.490795) (xy 138.065562 89.397776) (xy 138.021102 89.391639)
(xy 137.8299 89.476818) (xy 137.5823 89.476818) (xy 137.391098 89.391639) (xy 137.346638 89.397776) (xy 137.121129 89.490795)
(xy 136.9181 89.626021) (xy 136.745354 89.798257) (xy 136.609529 90.000885) (xy 136.515844 90.226118) (xy 136.4679 90.4653)
(xy 136.251391 90.4653) (xy 136.242496 90.374991) (xy 136.180043 90.169111) (xy 136.078625 89.979371) (xy 135.942138 89.813062)
(xy 135.775829 89.676575) (xy 135.586089 89.575157) (xy 135.380209 89.512704) (xy 135.1661 89.491616) (xy 134.951992 89.512704)
(xy 134.746112 89.575157) (xy 134.556372 89.676575) (xy 134.390063 89.813062) (xy 134.253576 89.979371) (xy 134.152158 90.169111)
(xy 134.089704 90.374991) (xy 134.0739 90.535451) (xy 133.7183 90.535451) (xy 133.702496 90.374991) (xy 133.640043 90.169111)
(xy 133.538625 89.979371) (xy 133.402138 89.813062) (xy 133.235829 89.676575) (xy 133.046089 89.575157) (xy 132.840209 89.512704)
(xy 132.6261 89.491616) (xy 132.411992 89.512704) (xy 132.206112 89.575157) (xy 132.016372 89.676575) (xy 131.850063 89.813062)
(xy 131.713576 89.979371) (xy 131.612158 90.169111) (xy 131.549704 90.374991) (xy 131.5339 90.535451) (xy 131.1783 90.535451)
(xy 131.162496 90.374991) (xy 131.100043 90.169111) (xy 130.998625 89.979371) (xy 130.862138 89.813062) (xy 130.695829 89.676575)
(xy 130.506089 89.575157) (xy 130.300209 89.512704) (xy 130.0861 89.491616) (xy 129.871992 89.512704) (xy 129.666112 89.575157)
(xy 129.476372 89.676575) (xy 129.310063 89.813062) (xy 129.173576 89.979371) (xy 129.072158 90.169111) (xy 129.009704 90.374991)
(xy 128.9939 90.535451) (xy 128.6383 90.535451) (xy 128.622496 90.374991) (xy 128.560043 90.169111) (xy 128.458625 89.979371)
(xy 128.322138 89.813062) (xy 128.155829 89.676575) (xy 127.966089 89.575157) (xy 127.760209 89.512704) (xy 127.5461 89.491616)
(xy 127.331992 89.512704) (xy 127.126112 89.575157) (xy 126.936372 89.676575) (xy 126.770063 89.813062) (xy 126.633576 89.979371)
(xy 126.532158 90.169111) (xy 126.469704 90.374991) (xy 126.4539 90.535451) (xy 126.0983 90.535451) (xy 126.082496 90.374991)
(xy 126.020043 90.169111) (xy 125.918625 89.979371) (xy 125.782138 89.813062) (xy 125.615829 89.676575) (xy 125.426089 89.575157)
(xy 125.220209 89.512704) (xy 125.0061 89.491616) (xy 124.791992 89.512704) (xy 124.586112 89.575157) (xy 124.396372 89.676575)
(xy 124.230063 89.813062) (xy 124.093576 89.979371) (xy 123.992158 90.169111) (xy 123.929704 90.374991) (xy 123.9139 90.535451)
(xy 123.5583 90.535451) (xy 123.542496 90.374991) (xy 123.480043 90.169111) (xy 123.378625 89.979371) (xy 123.242138 89.813062)
(xy 123.075829 89.676575) (xy 122.886089 89.575157) (xy 122.680209 89.512704) (xy 122.4661 89.491616) (xy 122.251992 89.512704)
(xy 122.046112 89.575157) (xy 121.856372 89.676575) (xy 121.690063 89.813062) (xy 121.553576 89.979371) (xy 121.452158 90.169111)
(xy 121.389704 90.374991) (xy 121.3739 90.535451) (xy 121.0183 90.535451) (xy 121.002496 90.374991) (xy 120.940043 90.169111)
(xy 120.838625 89.979371) (xy 120.702138 89.813062) (xy 120.535829 89.676575) (xy 120.346089 89.575157) (xy 120.140209 89.512704)
(xy 119.9261 89.491616) (xy 119.711992 89.512704) (xy 119.506112 89.575157) (xy 119.316372 89.676575) (xy 119.150063 89.813062)
(xy 119.013576 89.979371) (xy 118.912158 90.169111) (xy 118.849704 90.374991) (xy 118.8339 90.535451) (xy 113.9313 90.535451)
(xy 113.9313 88.113996) (xy 113.986257 88.169621) (xy 114.204682 88.317482) (xy 114.447756 88.41989) (xy 114.51513 88.432977)
(xy 114.7223 88.349156) (xy 114.7223 86.3949) (xy 114.9699 86.3949) (xy 114.9699 88.349156) (xy 115.17707 88.432977)
(xy 115.244444 88.41989) (xy 115.487518 88.317482) (xy 115.705943 88.169621) (xy 115.891324 87.981988) (xy 116.036538 87.761795)
(xy 116.136004 87.517503) (xy 116.1859 87.2585) (xy 116.1859 86.3949) (xy 114.9699 86.3949) (xy 114.7223 86.3949)
(xy 114.7023 86.3949) (xy 114.7023 86.1473) (xy 114.7223 86.1473) (xy 114.7223 86.1273) (xy 114.9699 86.1273)
(xy 114.9699 86.1473) (xy 116.1859 86.1473) (xy 116.1859 85.2837) (xy 116.136004 85.024697) (xy 116.036538 84.780405)
(xy 115.997559 84.7213) (xy 116.404899 84.7213)
)
)
)
(zone (net 1) (net_name GND) (layer Top) (tstamp 5FCCBC7E) (hatch edge 0.508)
(priority 6)
(connect_pads (clearance 0.254))
(min_thickness 0.1524)
(fill yes (arc_segments 32) (thermal_gap 0.4) (thermal_bridge_width 0.4))
(polygon
(pts
(xy 183.5785 125.7935) (xy 113.4237 125.7935) (xy 113.4237 83.5787) (xy 183.5785 83.5787)
)
)
(filled_polygon
(pts
(xy 183.070901 90.516609) (xy 182.981167 90.419825) (xy 182.783631 90.276757) (xy 182.561979 90.174975) (xy 182.472044 90.147693)
(xy 182.2799 90.232791) (xy 182.2799 91.2273) (xy 183.070901 91.2273) (xy 183.070901 91.4749) (xy 182.2799 91.4749)
(xy 182.2799 92.469409) (xy 182.472044 92.554507) (xy 182.700746 92.469746) (xy 182.908518 92.341996) (xy 183.070901 92.191441)
(xy 183.070901 99.406608) (xy 182.981167 99.309825) (xy 182.783631 99.166757) (xy 182.561979 99.064975) (xy 182.472044 99.037693)
(xy 182.2799 99.122791) (xy 182.2799 100.1173) (xy 183.070901 100.1173) (xy 183.070901 100.3649) (xy 182.2799 100.3649)
(xy 182.2799 101.359409) (xy 182.472044 101.444507) (xy 182.700746 101.359746) (xy 182.908518 101.231996) (xy 183.070901 101.081441)
(xy 183.0709 108.296608) (xy 182.981167 108.199825) (xy 182.783631 108.056757) (xy 182.561979 107.954975) (xy 182.472044 107.927693)
(xy 182.2799 108.012791) (xy 182.2799 109.0073) (xy 183.0709 109.0073) (xy 183.0709 109.2549) (xy 182.2799 109.2549)
(xy 182.2799 110.249409) (xy 182.472044 110.334507) (xy 182.700746 110.249746) (xy 182.908518 110.121996) (xy 183.0709 109.971442)
(xy 183.0709 125.2859) (xy 113.9313 125.2859) (xy 113.9313 88.113996) (xy 113.986257 88.169621) (xy 114.204682 88.317482)
(xy 114.447756 88.41989) (xy 114.51513 88.432977) (xy 114.7223 88.349156) (xy 114.7223 86.3949) (xy 114.7023 86.3949)
(xy 114.7023 86.1473) (xy 114.7223 86.1473) (xy 114.7223 86.1273) (xy 114.9699 86.1273) (xy 114.9699 86.1473)
(xy 114.9899 86.1473) (xy 114.9899 86.3949) (xy 114.9699 86.3949) (xy 114.9699 88.349156) (xy 115.17707 88.432977)
(xy 115.244444 88.41989) (xy 115.487518 88.317482) (xy 115.633501 88.21866) (xy 115.6335 90.1352) (xy 114.775618 90.993083)
(xy 114.757199 91.008199) (xy 114.696891 91.081685) (xy 114.652078 91.165524) (xy 114.624483 91.256495) (xy 114.6175 91.327393)
(xy 114.615165 91.3511) (xy 114.6175 91.374805) (xy 114.617501 120.029385) (xy 114.615165 120.0531) (xy 114.624484 120.147706)
(xy 114.652078 120.238676) (xy 114.680412 120.291684) (xy 114.696892 120.322515) (xy 114.7572 120.396001) (xy 114.775613 120.411112)
(xy 116.774086 122.409586) (xy 116.789199 122.428001) (xy 116.862685 122.488309) (xy 116.8707 122.492593) (xy 116.946523 122.533122)
(xy 117.037493 122.560717) (xy 117.1321 122.570035) (xy 117.155807 122.5677) (xy 118.716604 122.5677) (xy 118.682593 122.601711)
(xy 118.59686 122.730021) (xy 118.537805 122.872591) (xy 118.5077 123.023942) (xy 118.5077 123.178258) (xy 118.537805 123.329609)
(xy 118.59686 123.472179) (xy 118.682593 123.600489) (xy 118.791711 123.709607) (xy 118.920021 123.79534) (xy 119.062591 123.854395)
(xy 119.213942 123.8845) (xy 119.368258 123.8845) (xy 119.519609 123.854395) (xy 119.662179 123.79534) (xy 119.790489 123.709607)
(xy 119.899607 123.600489) (xy 119.98534 123.472179) (xy 120.044395 123.329609) (xy 120.0745 123.178258) (xy 120.0745 123.023942)
(xy 120.044395 122.872591) (xy 119.98534 122.730021) (xy 119.899607 122.601711) (xy 119.865596 122.5677) (xy 120.996201 122.5677)
(xy 123.124083 124.695582) (xy 123.139199 124.714001) (xy 123.212685 124.774309) (xy 123.296523 124.819122) (xy 123.387494 124.846717)
(xy 123.458393 124.8537) (xy 123.458394 124.8537) (xy 123.482099 124.856035) (xy 123.505804 124.8537) (xy 144.032395 124.8537)
(xy 144.0561 124.856035) (xy 144.079805 124.8537) (xy 144.079807 124.8537) (xy 144.150706 124.846717) (xy 144.241677 124.819122)
(xy 144.325515 124.774309) (xy 144.399001 124.714001) (xy 144.414117 124.695582) (xy 146.541999 122.5677) (xy 147.343669 122.5677)
(xy 147.236014 122.612292) (xy 147.018147 122.757866) (xy 146.832866 122.943147) (xy 146.687292 123.161014) (xy 146.587019 123.403095)
(xy 146.5359 123.660087) (xy 146.5359 123.922113) (xy 146.587019 124.179105) (xy 146.687292 124.421186) (xy 146.832866 124.639053)
(xy 147.018147 124.824334) (xy 147.236014 124.969908) (xy 147.478095 125.070181) (xy 147.735087 125.1213) (xy 147.997113 125.1213)
(xy 148.254105 125.070181) (xy 148.496186 124.969908) (xy 148.714053 124.824334) (xy 148.899334 124.639053) (xy 149.044908 124.421186)
(xy 149.145181 124.179105) (xy 149.1963 123.922113) (xy 149.1963 123.660087) (xy 149.145181 123.403095) (xy 149.044908 123.161014)
(xy 148.899334 122.943147) (xy 148.714053 122.757866) (xy 148.496186 122.612292) (xy 148.388531 122.5677) (xy 149.190201 122.5677)
(xy 151.318083 124.695582) (xy 151.333199 124.714001) (xy 151.406685 124.774309) (xy 151.490523 124.819122) (xy 151.581494 124.846717)
(xy 151.652393 124.8537) (xy 151.652394 124.8537) (xy 151.676099 124.856035) (xy 151.699804 124.8537) (xy 160.542393 124.8537)
(xy 160.5661 124.856035) (xy 160.589807 124.8537) (xy 169.178395 124.8537) (xy 169.2021 124.856035) (xy 169.225805 124.8537)
(xy 169.225807 124.8537) (xy 169.296706 124.846717) (xy 169.387677 124.819122) (xy 169.471515 124.774309) (xy 169.545001 124.714001)
(xy 169.560117 124.695582) (xy 177.277646 116.978054) (xy 177.295872 117.069683) (xy 177.378205 117.268451) (xy 177.497733 117.447337)
(xy 177.649863 117.599467) (xy 177.828749 117.718995) (xy 178.027517 117.801328) (xy 178.238528 117.8433) (xy 178.453672 117.8433)
(xy 178.664683 117.801328) (xy 178.863451 117.718995) (xy 179.042337 117.599467) (xy 179.194467 117.447337) (xy 179.313995 117.268451)
(xy 179.396328 117.069683) (xy 179.4383 116.858672) (xy 179.4383 116.643528) (xy 179.396328 116.432517) (xy 179.313995 116.233749)
(xy 179.194467 116.054863) (xy 179.042337 115.902733) (xy 178.863451 115.783205) (xy 178.8287 115.768811) (xy 178.8287 110.600999)
(xy 179.262766 110.166933) (xy 179.297517 110.181328) (xy 179.508528 110.2233) (xy 179.723672 110.2233) (xy 179.934683 110.181328)
(xy 180.133451 110.098995) (xy 180.312337 109.979467) (xy 180.464467 109.827337) (xy 180.583995 109.648451) (xy 180.666328 109.449683)
(xy 180.666852 109.447044) (xy 180.952693 109.447044) (xy 181.037454 109.675746) (xy 181.165204 109.883518) (xy 181.331033 110.062375)
(xy 181.528569 110.205443) (xy 181.750221 110.307225) (xy 181.840156 110.334507) (xy 182.0323 110.249409) (xy 182.0323 109.2549)
(xy 181.037791 109.2549) (xy 180.952693 109.447044) (xy 180.666852 109.447044) (xy 180.7083 109.238672) (xy 180.7083 109.023528)
(xy 180.666853 108.815156) (xy 180.952693 108.815156) (xy 181.037791 109.0073) (xy 182.0323 109.0073) (xy 182.0323 108.012791)
(xy 181.840156 107.927693) (xy 181.611454 108.012454) (xy 181.403682 108.140204) (xy 181.224825 108.306033) (xy 181.081757 108.503569)
(xy 180.979975 108.725221) (xy 180.952693 108.815156) (xy 180.666853 108.815156) (xy 180.666328 108.812517) (xy 180.583995 108.613749)
(xy 180.464467 108.434863) (xy 180.312337 108.282733) (xy 180.133451 108.163205) (xy 179.934683 108.080872) (xy 179.723672 108.0389)
(xy 179.508528 108.0389) (xy 179.297517 108.080872) (xy 179.098749 108.163205) (xy 178.919863 108.282733) (xy 178.767733 108.434863)
(xy 178.648205 108.613749) (xy 178.565872 108.812517) (xy 178.5239 109.023528) (xy 178.5239 109.238672) (xy 178.565872 109.449683)
(xy 178.580267 109.484434) (xy 178.021613 110.043088) (xy 178.0032 110.058199) (xy 177.988089 110.076612) (xy 177.988087 110.076614)
(xy 177.942892 110.131685) (xy 177.898078 110.215524) (xy 177.870484 110.306494) (xy 177.861165 110.4011) (xy 177.863501 110.424815)
(xy 177.8635 115.76881) (xy 177.828749 115.783205) (xy 177.649863 115.902733) (xy 177.5587 115.993896) (xy 177.5587 104.074804)
(xy 177.561035 104.051099) (xy 177.556551 104.005574) (xy 177.551717 103.956494) (xy 177.524122 103.865523) (xy 177.479309 103.781685)
(xy 177.419001 103.708199) (xy 177.400582 103.693083) (xy 176.164117 102.456618) (xy 176.149001 102.438199) (xy 176.075515 102.377891)
(xy 175.991677 102.333078) (xy 175.900706 102.305483) (xy 175.829807 102.2985) (xy 175.829805 102.2985) (xy 175.8061 102.296165)
(xy 175.782395 102.2985) (xy 175.225381 102.2985) (xy 175.127111 102.114651) (xy 174.977928 101.932872) (xy 174.796149 101.783689)
(xy 174.588758 101.672836) (xy 174.363726 101.604574) (xy 174.188344 101.5873) (xy 172.343856 101.5873) (xy 172.168474 101.604574)
(xy 171.943442 101.672836) (xy 171.736051 101.783689) (xy 171.554272 101.932872) (xy 171.405089 102.114651) (xy 171.306819 102.2985)
(xy 168.386 102.2985) (xy 163.681028 97.593528) (xy 164.5539 97.593528) (xy 164.5539 97.808672) (xy 164.595872 98.019683)
(xy 164.678205 98.218451) (xy 164.797733 98.397337) (xy 164.949863 98.549467) (xy 165.128749 98.668995) (xy 165.327517 98.751328)
(xy 165.538528 98.7933) (xy 165.753672 98.7933) (xy 165.964683 98.751328) (xy 166.163451 98.668995) (xy 166.342337 98.549467)
(xy 166.494467 98.397337) (xy 166.613995 98.218451) (xy 166.628389 98.1837) (xy 178.146201 98.1837) (xy 179.1335 99.170999)
(xy 179.1335 99.25881) (xy 179.098749 99.273205) (xy 178.919863 99.392733) (xy 178.767733 99.544863) (xy 178.648205 99.723749)
(xy 178.565872 99.922517) (xy 178.5239 100.133528) (xy 178.5239 100.348672) (xy 178.565872 100.559683) (xy 178.648205 100.758451)
(xy 178.767733 100.937337) (xy 178.919863 101.089467) (xy 179.098749 101.208995) (xy 179.297517 101.291328) (xy 179.508528 101.3333)
(xy 179.723672 101.3333) (xy 179.934683 101.291328) (xy 180.133451 101.208995) (xy 180.312337 101.089467) (xy 180.464467 100.937337)
(xy 180.583995 100.758451) (xy 180.666328 100.559683) (xy 180.666852 100.557044) (xy 180.952693 100.557044) (xy 181.037454 100.785746)
(xy 181.165204 100.993518) (xy 181.331033 101.172375) (xy 181.528569 101.315443) (xy 181.750221 101.417225) (xy 181.840156 101.444507)
(xy 182.0323 101.359409) (xy 182.0323 100.3649) (xy 181.037791 100.3649) (xy 180.952693 100.557044) (xy 180.666852 100.557044)
(xy 180.7083 100.348672) (xy 180.7083 100.133528) (xy 180.666853 99.925156) (xy 180.952693 99.925156) (xy 181.037791 100.1173)
(xy 182.0323 100.1173) (xy 182.0323 99.122791) (xy 181.840156 99.037693) (xy 181.611454 99.122454) (xy 181.403682 99.250204)
(xy 181.224825 99.416033) (xy 181.081757 99.613569) (xy 180.979975 99.835221) (xy 180.952693 99.925156) (xy 180.666853 99.925156)
(xy 180.666328 99.922517) (xy 180.583995 99.723749) (xy 180.464467 99.544863) (xy 180.312337 99.392733) (xy 180.133451 99.273205)
(xy 180.0987 99.258811) (xy 180.0987 98.994804) (xy 180.101035 98.971099) (xy 180.0987 98.947393) (xy 180.091717 98.876494)
(xy 180.064122 98.785523) (xy 180.019309 98.701685) (xy 179.959001 98.628199) (xy 179.940582 98.613083) (xy 178.704117 97.376618)
(xy 178.689001 97.358199) (xy 178.615515 97.297891) (xy 178.531677 97.253078) (xy 178.440706 97.225483) (xy 178.369807 97.2185)
(xy 178.369805 97.2185) (xy 178.3461 97.216165) (xy 178.322395 97.2185) (xy 166.628389 97.2185) (xy 166.613995 97.183749)
(xy 166.494467 97.004863) (xy 166.342337 96.852733) (xy 166.163451 96.733205) (xy 165.964683 96.650872) (xy 165.753672 96.6089)
(xy 165.538528 96.6089) (xy 165.327517 96.650872) (xy 165.128749 96.733205) (xy 164.949863 96.852733) (xy 164.797733 97.004863)
(xy 164.678205 97.183749) (xy 164.595872 97.382517) (xy 164.5539 97.593528) (xy 163.681028 97.593528) (xy 162.3187 96.231201)
(xy 162.3187 95.053528) (xy 164.5539 95.053528) (xy 164.5539 95.268672) (xy 164.595872 95.479683) (xy 164.678205 95.678451)
(xy 164.797733 95.857337) (xy 164.949863 96.009467) (xy 165.128749 96.128995) (xy 165.327517 96.211328) (xy 165.538528 96.2533)
(xy 165.753672 96.2533) (xy 165.964683 96.211328) (xy 166.163451 96.128995) (xy 166.342337 96.009467) (xy 166.494467 95.857337)
(xy 166.613995 95.678451) (xy 166.696328 95.479683) (xy 166.7383 95.268672) (xy 166.7383 95.053528) (xy 166.696328 94.842517)
(xy 166.681933 94.807766) (xy 168.385999 93.1037) (xy 177.052395 93.1037) (xy 177.0761 93.106035) (xy 177.099805 93.1037)
(xy 177.099807 93.1037) (xy 177.170706 93.096717) (xy 177.261677 93.069122) (xy 177.345515 93.024309) (xy 177.419001 92.964001)
(xy 177.434117 92.945582) (xy 178.545999 91.8337) (xy 178.633811 91.8337) (xy 178.648205 91.868451) (xy 178.767733 92.047337)
(xy 178.919863 92.199467) (xy 179.098749 92.318995) (xy 179.297517 92.401328) (xy 179.508528 92.4433) (xy 179.723672 92.4433)
(xy 179.934683 92.401328) (xy 180.133451 92.318995) (xy 180.312337 92.199467) (xy 180.464467 92.047337) (xy 180.583995 91.868451)
(xy 180.666328 91.669683) (xy 180.666852 91.667044) (xy 180.952693 91.667044) (xy 181.037454 91.895746) (xy 181.165204 92.103518)
(xy 181.331033 92.282375) (xy 181.528569 92.425443) (xy 181.750221 92.527225) (xy 181.840156 92.554507) (xy 182.0323 92.469409)
(xy 182.0323 91.4749) (xy 181.037791 91.4749) (xy 180.952693 91.667044) (xy 180.666852 91.667044) (xy 180.7083 91.458672)
(xy 180.7083 91.243528) (xy 180.666853 91.035156) (xy 180.952693 91.035156) (xy 181.037791 91.2273) (xy 182.0323 91.2273)
(xy 182.0323 90.232791) (xy 181.840156 90.147693) (xy 181.611454 90.232454) (xy 181.403682 90.360204) (xy 181.224825 90.526033)
(xy 181.081757 90.723569) (xy 180.979975 90.945221) (xy 180.952693 91.035156) (xy 180.666853 91.035156) (xy 180.666328 91.032517)
(xy 180.583995 90.833749) (xy 180.464467 90.654863) (xy 180.312337 90.502733) (xy 180.133451 90.383205) (xy 179.934683 90.300872)
(xy 179.723672 90.2589) (xy 179.508528 90.2589) (xy 179.297517 90.300872) (xy 179.098749 90.383205) (xy 178.919863 90.502733)
(xy 178.767733 90.654863) (xy 178.648205 90.833749) (xy 178.633811 90.8685) (xy 178.369804 90.8685) (xy 178.346099 90.866165)
(xy 178.322394 90.8685) (xy 178.322393 90.8685) (xy 178.251494 90.875483) (xy 178.160523 90.903078) (xy 178.076685 90.947891)
(xy 178.003199 91.008199) (xy 177.988083 91.026618) (xy 176.876201 92.1385) (xy 168.209804 92.1385) (xy 168.186099 92.136165)
(xy 168.162394 92.1385) (xy 168.162393 92.1385) (xy 168.091494 92.145483) (xy 168.000523 92.173078) (xy 167.916685 92.217891)
(xy 167.843199 92.278199) (xy 167.828083 92.296618) (xy 165.999434 94.125267) (xy 165.964683 94.110872) (xy 165.753672 94.0689)
(xy 165.538528 94.0689) (xy 165.327517 94.110872) (xy 165.128749 94.193205) (xy 164.949863 94.312733) (xy 164.797733 94.464863)
(xy 164.678205 94.643749) (xy 164.595872 94.842517) (xy 164.5539 95.053528) (xy 162.3187 95.053528) (xy 162.3187 89.342807)
(xy 162.321035 89.3191) (xy 162.311717 89.224493) (xy 162.284122 89.133523) (xy 162.248209 89.066336) (xy 162.239309 89.049685)
(xy 162.179001 88.976199) (xy 162.160587 88.961087) (xy 161.432117 88.232618) (xy 161.417001 88.214199) (xy 161.343515 88.153891)
(xy 161.259677 88.109078) (xy 161.168706 88.081483) (xy 161.097807 88.0745) (xy 161.097805 88.0745) (xy 161.0741 88.072165)
(xy 161.050395 88.0745) (xy 153.682748 88.0745) (xy 153.794328 87.982928) (xy 153.943511 87.801149) (xy 154.054364 87.593758)
(xy 154.122626 87.368726) (xy 154.1399 87.193344) (xy 154.1399 85.348856) (xy 154.122626 85.173474) (xy 154.054364 84.948442)
(xy 153.943511 84.741051) (xy 153.927302 84.7213) (xy 183.070901 84.7213)
)
)
(filled_polygon
(pts
(xy 129.761618 97.089083) (xy 129.743199 97.104199) (xy 129.682891 97.177685) (xy 129.674992 97.192463) (xy 129.666112 97.195157)
(xy 129.476372 97.296575) (xy 129.310063 97.433062) (xy 129.173576 97.599371) (xy 129.072158 97.789111) (xy 129.009704 97.994991)
(xy 128.9939 98.155451) (xy 128.9939 99.786748) (xy 129.009704 99.947208) (xy 129.072157 100.153088) (xy 129.173575 100.342829)
(xy 129.310062 100.509138) (xy 129.476371 100.645625) (xy 129.666111 100.747043) (xy 129.871991 100.809496) (xy 130.0861 100.830584)
(xy 130.300208 100.809496) (xy 130.506088 100.747043) (xy 130.695829 100.645625) (xy 130.862138 100.509138) (xy 130.998625 100.342829)
(xy 131.100043 100.153089) (xy 131.162496 99.947209) (xy 131.1783 99.786749) (xy 131.1783 98.155451) (xy 131.162496 97.994991)
(xy 131.100043 97.789111) (xy 130.998625 97.599371) (xy 130.862138 97.433062) (xy 130.848293 97.4217) (xy 131.863908 97.4217)
(xy 131.850063 97.433062) (xy 131.713576 97.599371) (xy 131.612158 97.789111) (xy 131.549704 97.994991) (xy 131.5339 98.155451)
(xy 131.5339 99.786748) (xy 131.549704 99.947208) (xy 131.612157 100.153088) (xy 131.713575 100.342829) (xy 131.850062 100.509138)
(xy 132.016371 100.645625) (xy 132.1435 100.713577) (xy 132.1435 101.0572) (xy 131.410201 101.7905) (xy 126.807796 101.7905)
(xy 126.784099 101.788166) (xy 126.760402 101.7905) (xy 126.760393 101.7905) (xy 126.689494 101.797483) (xy 126.598523 101.825078)
(xy 126.514685 101.869891) (xy 126.441199 101.930199) (xy 126.426083 101.948618) (xy 126.076201 102.2985) (xy 125.695381 102.2985)
(xy 125.597111 102.114651) (xy 125.447928 101.932872) (xy 125.266149 101.783689) (xy 125.058758 101.672836) (xy 124.833726 101.604574)
(xy 124.658344 101.5873) (xy 122.813856 101.5873) (xy 122.638474 101.604574) (xy 122.413442 101.672836) (xy 122.206051 101.783689)
(xy 122.024272 101.932872) (xy 121.875089 102.114651) (xy 121.764236 102.322042) (xy 121.695974 102.547074) (xy 121.6787 102.722456)
(xy 121.6787 102.218999) (xy 122.412 101.4857) (xy 124.474395 101.4857) (xy 124.4981 101.488035) (xy 124.521805 101.4857)
(xy 124.521807 101.4857) (xy 124.592706 101.478717) (xy 124.683677 101.451122) (xy 124.767515 101.406309) (xy 124.841001 101.346001)
(xy 124.856117 101.327582) (xy 125.330582 100.853117) (xy 125.349001 100.838001) (xy 125.409309 100.764515) (xy 125.417208 100.749737)
(xy 125.426088 100.747043) (xy 125.615829 100.645625) (xy 125.782138 100.509138) (xy 125.918625 100.342829) (xy 126.020043 100.153089)
(xy 126.082496 99.947209) (xy 126.0983 99.786749) (xy 126.0983 99.0949) (xy 126.3079 99.0949) (xy 126.3079 99.8569)
(xy 126.355844 100.096082) (xy 126.449529 100.321315) (xy 126.585354 100.523943) (xy 126.7581 100.696179) (xy 126.961129 100.831405)
(xy 127.186638 100.924424) (xy 127.231098 100.930561) (xy 127.4223 100.845382) (xy 127.4223 99.0949) (xy 127.6699 99.0949)
(xy 127.6699 100.845382) (xy 127.861102 100.930561) (xy 127.905562 100.924424) (xy 128.131071 100.831405) (xy 128.3341 100.696179)
(xy 128.506846 100.523943) (xy 128.642671 100.321315) (xy 128.736356 100.096082) (xy 128.7843 99.8569) (xy 128.7843 99.0949)
(xy 127.6699 99.0949) (xy 127.4223 99.0949) (xy 126.3079 99.0949) (xy 126.0983 99.0949) (xy 126.0983 98.155451)
(xy 126.091391 98.0853) (xy 126.3079 98.0853) (xy 126.3079 98.8473) (xy 127.4223 98.8473) (xy 127.4223 97.096818)
(xy 127.6699 97.096818) (xy 127.6699 98.8473) (xy 128.7843 98.8473) (xy 128.7843 98.0853) (xy 128.736356 97.846118)
(xy 128.642671 97.620885) (xy 128.506846 97.418257) (xy 128.3341 97.246021) (xy 128.131071 97.110795) (xy 127.905562 97.017776)
(xy 127.861102 97.011639) (xy 127.6699 97.096818) (xy 127.4223 97.096818) (xy 127.231098 97.011639) (xy 127.186638 97.017776)
(xy 126.961129 97.110795) (xy 126.7581 97.246021) (xy 126.585354 97.418257) (xy 126.449529 97.620885) (xy 126.355844 97.846118)
(xy 126.3079 98.0853) (xy 126.091391 98.0853) (xy 126.082496 97.994991) (xy 126.020043 97.789111) (xy 125.918625 97.599371)
(xy 125.782138 97.433062) (xy 125.615829 97.296575) (xy 125.426089 97.195157) (xy 125.220209 97.132704) (xy 125.0061 97.111616)
(xy 124.791992 97.132704) (xy 124.586112 97.195157) (xy 124.396372 97.296575) (xy 124.230063 97.433062) (xy 124.093576 97.599371)
(xy 123.992158 97.789111) (xy 123.929704 97.994991) (xy 123.9139 98.155451) (xy 123.9139 99.786748) (xy 123.929704 99.947208)
(xy 123.992157 100.153088) (xy 124.093575 100.342829) (xy 124.230062 100.509138) (xy 124.243907 100.5205) (xy 123.228293 100.5205)
(xy 123.242138 100.509138) (xy 123.378625 100.342829) (xy 123.480043 100.153089) (xy 123.542496 99.947209) (xy 123.5583 99.786749)
(xy 123.5583 98.155451) (xy 123.542496 97.994991) (xy 123.480043 97.789111) (xy 123.378625 97.599371) (xy 123.242138 97.433062)
(xy 123.075829 97.296575) (xy 122.886089 97.195157) (xy 122.680209 97.132704) (xy 122.4661 97.111616) (xy 122.251992 97.132704)
(xy 122.046112 97.195157) (xy 121.856372 97.296575) (xy 121.690063 97.433062) (xy 121.553576 97.599371) (xy 121.452158 97.789111)
(xy 121.389704 97.994991) (xy 121.3739 98.155451) (xy 121.3739 99.786748) (xy 121.389704 99.947208) (xy 121.452157 100.153088)
(xy 121.553575 100.342829) (xy 121.690062 100.509138) (xy 121.856371 100.645625) (xy 121.874894 100.655526) (xy 121.869199 100.660199)
(xy 121.854088 100.678613) (xy 120.871613 101.661088) (xy 120.8532 101.676199) (xy 120.838089 101.694612) (xy 120.838087 101.694614)
(xy 120.792892 101.749685) (xy 120.748078 101.833524) (xy 120.720484 101.924494) (xy 120.711165 102.0191) (xy 120.713501 102.042815)
(xy 120.7135 104.535393) (xy 120.711165 104.5591) (xy 120.7135 104.582805) (xy 120.7135 104.582806) (xy 120.720483 104.653705)
(xy 120.748078 104.744676) (xy 120.792891 104.828515) (xy 120.853199 104.902001) (xy 120.871618 104.917117) (xy 121.600087 105.645587)
(xy 121.615199 105.664001) (xy 121.633612 105.679112) (xy 121.633613 105.679113) (xy 121.655843 105.697356) (xy 121.688685 105.724309)
(xy 121.758637 105.7617) (xy 121.764236 105.780158) (xy 121.875089 105.987549) (xy 122.024272 106.169328) (xy 122.206051 106.318511)
(xy 122.413442 106.429364) (xy 122.638474 106.497626) (xy 122.813856 106.5149) (xy 124.658344 106.5149) (xy 124.833726 106.497626)
(xy 125.058758 106.429364) (xy 125.266149 106.318511) (xy 125.447928 106.169328) (xy 125.539501 106.057747) (xy 125.5395 107.124453)
(xy 125.447928 107.012872) (xy 125.266149 106.863689) (xy 125.058758 106.752836) (xy 124.833726 106.684574) (xy 124.658344 106.6673)
(xy 122.813856 106.6673) (xy 122.638474 106.684574) (xy 122.413442 106.752836) (xy 122.206051 106.863689) (xy 122.024272 107.012872)
(xy 121.875089 107.194651) (xy 121.764236 107.402042) (xy 121.758637 107.4205) (xy 121.688685 107.457891) (xy 121.615199 107.518199)
(xy 121.600088 107.536613) (xy 120.617618 108.519083) (xy 120.599199 108.534199) (xy 120.538891 108.607685) (xy 120.494078 108.691524)
(xy 120.466483 108.782495) (xy 120.4595 108.853393) (xy 120.457165 108.8771) (xy 120.4595 108.900805) (xy 120.459501 112.917384)
(xy 120.4595 112.917394) (xy 120.459501 113.679386) (xy 120.457165 113.7031) (xy 120.466484 113.797706) (xy 120.494078 113.888676)
(xy 120.538892 113.972515) (xy 120.575464 114.017078) (xy 120.5992 114.046001) (xy 120.617613 114.061112) (xy 122.108083 115.551582)
(xy 122.123199 115.570001) (xy 122.196685 115.630309) (xy 122.280523 115.675122) (xy 122.371494 115.702717) (xy 122.442393 115.7097)
(xy 122.442402 115.7097) (xy 122.466099 115.712034) (xy 122.489796 115.7097) (xy 125.490395 115.7097) (xy 125.5141 115.712035)
(xy 125.537805 115.7097) (xy 125.537807 115.7097) (xy 125.608706 115.702717) (xy 125.699677 115.675122) (xy 125.783515 115.630309)
(xy 125.857001 115.570001) (xy 125.872117 115.551582) (xy 129.193612 112.230087) (xy 132.5659 112.230087) (xy 132.5659 112.492113)
(xy 132.617019 112.749105) (xy 132.717292 112.991186) (xy 132.862866 113.209053) (xy 133.048147 113.394334) (xy 133.266014 113.539908)
(xy 133.508095 113.640181) (xy 133.765087 113.6913) (xy 134.027113 113.6913) (xy 134.284105 113.640181) (xy 134.526186 113.539908)
(xy 134.744053 113.394334) (xy 134.929334 113.209053) (xy 135.074908 112.991186) (xy 135.175181 112.749105) (xy 135.2263 112.492113)
(xy 135.2263 112.230087) (xy 135.175181 111.973095) (xy 135.074908 111.731014) (xy 134.929334 111.513147) (xy 134.744053 111.327866)
(xy 134.526186 111.182292) (xy 134.284105 111.082019) (xy 134.027113 111.0309) (xy 133.765087 111.0309) (xy 133.508095 111.082019)
(xy 133.266014 111.182292) (xy 133.048147 111.327866) (xy 132.862866 111.513147) (xy 132.717292 111.731014) (xy 132.617019 111.973095)
(xy 132.5659 112.230087) (xy 129.193612 112.230087) (xy 139.554582 101.869117) (xy 139.573001 101.854001) (xy 139.633309 101.780515)
(xy 139.663501 101.724031) (xy 139.6635 104.035151) (xy 139.478357 104.11184) (xy 139.247469 104.266114) (xy 139.051114 104.462469)
(xy 138.89684 104.693357) (xy 138.790574 104.949906) (xy 138.7364 105.222257) (xy 138.7364 105.499943) (xy 138.790574 105.772294)
(xy 138.89684 106.028843) (xy 139.051114 106.259731) (xy 139.247469 106.456086) (xy 139.478357 106.61036) (xy 139.734906 106.716626)
(xy 140.007257 106.7708) (xy 140.251301 106.7708) (xy 141.7955 108.314999) (xy 141.795501 113.249199) (xy 138.905618 116.139083)
(xy 138.887199 116.154199) (xy 138.826891 116.227685) (xy 138.782078 116.311524) (xy 138.754483 116.402495) (xy 138.749903 116.448995)
(xy 138.745165 116.4971) (xy 138.7475 116.520805) (xy 138.747501 119.775385) (xy 138.745165 119.7991) (xy 138.754484 119.893706)
(xy 138.782078 119.984676) (xy 138.826892 120.068515) (xy 138.863464 120.113078) (xy 138.8872 120.142001) (xy 138.905613 120.157112)
(xy 140.238646 121.490146) (xy 140.2064 121.652257) (xy 140.2064 121.929943) (xy 140.260574 122.202294) (xy 140.36684 122.458843)
(xy 140.521114 122.689731) (xy 140.717469 122.886086) (xy 140.948357 123.04036) (xy 141.204906 123.146626) (xy 141.477257 123.2008)
(xy 141.754943 123.2008) (xy 142.027294 123.146626) (xy 142.283843 123.04036) (xy 142.514731 122.886086) (xy 142.711086 122.689731)
(xy 142.86536 122.458843) (xy 142.971626 122.202294) (xy 143.0258 121.929943) (xy 143.0258 121.652257) (xy 142.971626 121.379906)
(xy 142.86536 121.123357) (xy 142.711086 120.892469) (xy 142.514731 120.696114) (xy 142.283843 120.54184) (xy 142.027294 120.435574)
(xy 141.754943 120.3814) (xy 141.477257 120.3814) (xy 141.204906 120.435574) (xy 140.948357 120.54184) (xy 140.772706 120.659206)
(xy 139.7127 119.599201) (xy 139.7127 116.696999) (xy 139.757442 116.652257) (xy 140.2064 116.652257) (xy 140.2064 116.929943)
(xy 140.260574 117.202294) (xy 140.36684 117.458843) (xy 140.521114 117.689731) (xy 140.717469 117.886086) (xy 140.948357 118.04036)
(xy 141.204906 118.146626) (xy 141.477257 118.2008) (xy 141.754943 118.2008) (xy 142.027294 118.146626) (xy 142.283843 118.04036)
(xy 142.514731 117.886086) (xy 142.711086 117.689731) (xy 142.86536 117.458843) (xy 142.971626 117.202294) (xy 142.972326 117.198775)
(xy 143.055515 117.154309) (xy 143.129001 117.094001) (xy 143.144117 117.075582) (xy 144.380582 115.839117) (xy 144.399001 115.824001)
(xy 144.459309 115.750515) (xy 144.504122 115.666677) (xy 144.531717 115.575706) (xy 144.5387 115.504807) (xy 144.5387 115.504806)
(xy 144.541035 115.481101) (xy 144.5387 115.457393) (xy 144.5387 114.660087) (xy 146.5359 114.660087) (xy 146.5359 114.922113)
(xy 146.587019 115.179105) (xy 146.687292 115.421186) (xy 146.832866 115.639053) (xy 147.018147 115.824334) (xy 147.236014 115.969908)
(xy 147.478095 116.070181) (xy 147.735087 116.1213) (xy 147.997113 116.1213) (xy 148.254105 116.070181) (xy 148.496186 115.969908)
(xy 148.714053 115.824334) (xy 148.899334 115.639053) (xy 149.044908 115.421186) (xy 149.145181 115.179105) (xy 149.1963 114.922113)
(xy 149.1963 114.660087) (xy 149.145181 114.403095) (xy 149.044908 114.161014) (xy 148.899334 113.943147) (xy 148.714053 113.757866)
(xy 148.496186 113.612292) (xy 148.254105 113.512019) (xy 147.997113 113.4609) (xy 147.735087 113.4609) (xy 147.478095 113.512019)
(xy 147.236014 113.612292) (xy 147.018147 113.757866) (xy 146.832866 113.943147) (xy 146.687292 114.161014) (xy 146.587019 114.403095)
(xy 146.5359 114.660087) (xy 144.5387 114.660087) (xy 144.5387 112.653389) (xy 144.573451 112.638995) (xy 144.752337 112.519467)
(xy 144.904467 112.367337) (xy 145.023995 112.188451) (xy 145.106328 111.989683) (xy 145.1483 111.778672) (xy 145.1483 111.563528)
(xy 145.106328 111.352517) (xy 145.023995 111.153749) (xy 144.904467 110.974863) (xy 144.752337 110.822733) (xy 144.573451 110.703205)
(xy 144.374683 110.620872) (xy 144.163672 110.5789) (xy 143.948528 110.5789) (xy 143.737517 110.620872) (xy 143.538749 110.703205)
(xy 143.359863 110.822733) (xy 143.207733 110.974863) (xy 143.088205 111.153749) (xy 143.005872 111.352517) (xy 142.9639 111.563528)
(xy 142.9639 111.778672) (xy 143.005872 111.989683) (xy 143.088205 112.188451) (xy 143.207733 112.367337) (xy 143.359863 112.519467)
(xy 143.538749 112.638995) (xy 143.5735 112.65339) (xy 143.573501 115.2812) (xy 142.811681 116.04302) (xy 142.711086 115.892469)
(xy 142.514731 115.696114) (xy 142.283843 115.54184) (xy 142.027294 115.435574) (xy 141.754943 115.3814) (xy 141.477257 115.3814)
(xy 141.204906 115.435574) (xy 140.948357 115.54184) (xy 140.717469 115.696114) (xy 140.521114 115.892469) (xy 140.36684 116.123357)
(xy 140.260574 116.379906) (xy 140.2064 116.652257) (xy 139.757442 116.652257) (xy 142.602588 113.807112) (xy 142.621001 113.792001)
(xy 142.681309 113.718515) (xy 142.726122 113.634677) (xy 142.753717 113.543706) (xy 142.7607 113.472807) (xy 142.763035 113.4491)
(xy 142.7607 113.425393) (xy 142.7607 108.5977) (xy 145.556395 108.5977) (xy 145.5801 108.600035) (xy 145.603805 108.5977)
(xy 145.603807 108.5977) (xy 145.674706 108.590717) (xy 145.765677 108.563122) (xy 145.849515 108.518309) (xy 145.923001 108.458001)
(xy 145.938117 108.439582) (xy 150.621077 103.756623) (xy 150.5839 103.943528) (xy 150.5839 104.158672) (xy 150.625872 104.369683)
(xy 150.708205 104.568451) (xy 150.827733 104.747337) (xy 150.979863 104.899467) (xy 151.158749 105.018995) (xy 151.1935 105.033389)
(xy 151.193501 110.68881) (xy 151.158749 110.703205) (xy 150.979863 110.822733) (xy 150.827733 110.974863) (xy 150.708205 111.153749)
(xy 150.625872 111.352517) (xy 150.5839 111.563528) (xy 150.5839 111.778672) (xy 150.625872 111.989683) (xy 150.708205 112.188451)
(xy 150.827733 112.367337) (xy 150.979863 112.519467) (xy 151.158749 112.638995) (xy 151.1935 112.65339) (xy 151.193501 115.535199)
(xy 143.348201 123.3805) (xy 137.398 123.3805) (xy 130.5687 116.551201) (xy 130.5687 116.463389) (xy 130.603451 116.448995)
(xy 130.782337 116.329467) (xy 130.934467 116.177337) (xy 131.053995 115.998451) (xy 131.136328 115.799683) (xy 131.1783 115.588672)
(xy 131.1783 115.373528) (xy 136.6139 115.373528) (xy 136.6139 115.588672) (xy 136.655872 115.799683) (xy 136.738205 115.998451)
(xy 136.857733 116.177337) (xy 137.009863 116.329467) (xy 137.188749 116.448995) (xy 137.387517 116.531328) (xy 137.598528 116.5733)
(xy 137.813672 116.5733) (xy 138.024683 116.531328) (xy 138.223451 116.448995) (xy 138.402337 116.329467) (xy 138.554467 116.177337)
(xy 138.673995 115.998451) (xy 138.756328 115.799683) (xy 138.7983 115.588672) (xy 138.7983 115.373528) (xy 138.756328 115.162517)
(xy 138.673995 114.963749) (xy 138.554467 114.784863) (xy 138.402337 114.632733) (xy 138.223451 114.513205) (xy 138.1887 114.498811)
(xy 138.1887 111.616999) (xy 138.861698 110.944002) (xy 138.89684 111.028843) (xy 139.051114 111.259731) (xy 139.247469 111.456086)
(xy 139.478357 111.61036) (xy 139.734906 111.716626) (xy 140.007257 111.7708) (xy 140.284943 111.7708) (xy 140.557294 111.716626)
(xy 140.813843 111.61036) (xy 141.044731 111.456086) (xy 141.241086 111.259731) (xy 141.39536 111.028843) (xy 141.501626 110.772294)
(xy 141.5558 110.499943) (xy 141.5558 110.222257) (xy 141.501626 109.949906) (xy 141.39536 109.693357) (xy 141.241086 109.462469)
(xy 141.044731 109.266114) (xy 140.813843 109.11184) (xy 140.557294 109.005574) (xy 140.284943 108.9514) (xy 140.007257 108.9514)
(xy 139.734906 109.005574) (xy 139.478357 109.11184) (xy 139.247469 109.266114) (xy 139.051114 109.462469) (xy 138.89684 109.693357)
(xy 138.820151 109.8785) (xy 138.785807 109.8785) (xy 138.7621 109.876165) (xy 138.667493 109.885483) (xy 138.591562 109.908516)
(xy 138.576523 109.913078) (xy 138.492685 109.957891) (xy 138.470418 109.976165) (xy 138.443945 109.997891) (xy 138.419199 110.018199)
(xy 138.404088 110.036612) (xy 137.381618 111.059083) (xy 137.363199 111.074199) (xy 137.302891 111.147685) (xy 137.258078 111.231524)
(xy 137.230483 111.322495) (xy 137.2235 111.393393) (xy 137.221165 111.4171) (xy 137.2235 111.440805) (xy 137.223501 114.49881)
(xy 137.188749 114.513205) (xy 137.009863 114.632733) (xy 136.857733 114.784863) (xy 136.738205 114.963749) (xy 136.655872 115.162517)
(xy 136.6139 115.373528) (xy 131.1783 115.373528) (xy 131.136328 115.162517) (xy 131.053995 114.963749) (xy 130.934467 114.784863)
(xy 130.782337 114.632733) (xy 130.603451 114.513205) (xy 130.404683 114.430872) (xy 130.193672 114.3889) (xy 129.978528 114.3889)
(xy 129.767517 114.430872) (xy 129.568749 114.513205) (xy 129.389863 114.632733) (xy 129.237733 114.784863) (xy 129.118205 114.963749)
(xy 129.035872 115.162517) (xy 128.9939 115.373528) (xy 128.9939 115.588672) (xy 129.035872 115.799683) (xy 129.118205 115.998451)
(xy 129.237733 116.177337) (xy 129.389863 116.329467) (xy 129.568749 116.448995) (xy 129.6035 116.46339) (xy 129.6035 116.727393)
(xy 129.601165 116.7511) (xy 129.6035 116.774805) (xy 129.6035 116.774806) (xy 129.610483 116.845705) (xy 129.638078 116.936676)
(xy 129.682891 117.020515) (xy 129.743199 117.094001) (xy 129.761618 117.109117) (xy 136.541 123.8885) (xy 123.681999 123.8885)
(xy 121.6787 121.885201) (xy 121.6787 115.504804) (xy 121.681035 115.481099) (xy 121.676551 115.435574) (xy 121.671717 115.386494)
(xy 121.644122 115.295523) (xy 121.599309 115.211685) (xy 121.539001 115.138199) (xy 121.520582 115.123083) (xy 120.4087 114.011201)
(xy 120.4087 100.713576) (xy 120.535829 100.645625) (xy 120.702138 100.509138) (xy 120.838625 100.342829) (xy 120.940043 100.153089)
(xy 121.002496 99.947209) (xy 121.0183 99.786749) (xy 121.0183 98.155451) (xy 121.002496 97.994991) (xy 120.940043 97.789111)
(xy 120.838625 97.599371) (xy 120.702138 97.433062) (xy 120.535829 97.296575) (xy 120.4087 97.228623) (xy 120.4087 97.138999)
(xy 120.888 96.6597) (xy 130.191001 96.6597)
)
)
(filled_polygon
(pts
(xy 149.408689 84.741052) (xy 149.297836 84.948443) (xy 149.229574 85.173475) (xy 149.2123 85.348857) (xy 149.2123 87.193344)
(xy 149.229575 87.368726) (xy 149.297837 87.593758) (xy 149.40869 87.801149) (xy 149.557873 87.982928) (xy 149.739652 88.132111)
(xy 149.947043 88.242964) (xy 149.965501 88.248563) (xy 150.002891 88.318515) (xy 150.063199 88.392001) (xy 150.081618 88.407117)
(xy 150.556083 88.881582) (xy 150.571199 88.900001) (xy 150.644685 88.960309) (xy 150.728523 89.005122) (xy 150.819494 89.032717)
(xy 150.890393 89.0397) (xy 150.890402 89.0397) (xy 150.914099 89.042034) (xy 150.937796 89.0397) (xy 160.226204 89.0397)
(xy 160.048749 89.113205) (xy 159.869863 89.232733) (xy 159.717733 89.384863) (xy 159.598205 89.563749) (xy 159.515872 89.762517)
(xy 159.4739 89.973528) (xy 159.4739 90.188672) (xy 159.515872 90.399683) (xy 159.598205 90.598451) (xy 159.717733 90.777337)
(xy 159.869863 90.929467) (xy 160.048749 91.048995) (xy 160.247517 91.131328) (xy 160.458528 91.1733) (xy 160.673672 91.1733)
(xy 160.884683 91.131328) (xy 161.083451 91.048995) (xy 161.262337 90.929467) (xy 161.353501 90.838303) (xy 161.353501 91.658617)
(xy 161.269323 91.742795) (xy 161.193631 91.546757) (xy 160.971979 91.444975) (xy 160.734729 91.388391) (xy 160.491 91.379179)
(xy 160.250156 91.417693) (xy 160.021454 91.502454) (xy 159.938569 91.546757) (xy 159.862876 91.742796) (xy 160.5661 92.44602)
(xy 160.580242 92.431878) (xy 160.755322 92.606958) (xy 160.74118 92.6211) (xy 160.755322 92.635242) (xy 160.580242 92.810322)
(xy 160.5661 92.79618) (xy 159.862876 93.499404) (xy 159.938569 93.695443) (xy 160.160221 93.797225) (xy 160.397471 93.853809)
(xy 160.6412 93.863021) (xy 160.882044 93.824507) (xy 161.110746 93.739746) (xy 161.193631 93.695443) (xy 161.269323 93.499405)
(xy 161.3535 93.583582) (xy 161.3535 94.930806) (xy 161.353501 94.930816) (xy 161.3535 96.407395) (xy 161.351165 96.4311)
(xy 161.3535 96.454805) (xy 161.3535 96.454806) (xy 161.360483 96.525705) (xy 161.388078 96.616676) (xy 161.432891 96.700515)
(xy 161.493199 96.774001) (xy 161.511618 96.789117) (xy 167.828086 103.105586) (xy 167.843199 103.124001) (xy 167.916685 103.184309)
(xy 168.000523 103.229122) (xy 168.091494 103.256717) (xy 168.162393 103.2637) (xy 168.162394 103.2637) (xy 168.186099 103.266035)
(xy 168.209804 103.2637) (xy 171.306819 103.2637) (xy 171.405089 103.447549) (xy 171.554272 103.629328) (xy 171.736051 103.778511)
(xy 171.943442 103.889364) (xy 172.168474 103.957626) (xy 172.343856 103.9749) (xy 174.188344 103.9749) (xy 174.363726 103.957626)
(xy 174.588758 103.889364) (xy 174.796149 103.778511) (xy 174.977928 103.629328) (xy 175.127111 103.447549) (xy 175.225381 103.2637)
(xy 175.606201 103.2637) (xy 176.593501 104.251) (xy 176.5935 104.535393) (xy 176.5935 104.535394) (xy 176.593501 116.297199)
(xy 169.002201 123.8885) (xy 161.0487 123.8885) (xy 161.0487 117.733389) (xy 161.083451 117.718995) (xy 161.262337 117.599467)
(xy 161.414467 117.447337) (xy 161.533995 117.268451) (xy 161.616328 117.069683) (xy 161.6583 116.858672) (xy 161.6583 116.643528)
(xy 161.616328 116.432517) (xy 161.533995 116.233749) (xy 161.414467 116.054863) (xy 161.262337 115.902733) (xy 161.083451 115.783205)
(xy 161.0487 115.768811) (xy 161.0487 115.758807) (xy 161.051035 115.7351) (xy 161.041717 115.640493) (xy 161.014122 115.549523)
(xy 160.969308 115.465684) (xy 160.924113 115.410613) (xy 160.924112 115.410612) (xy 160.909001 115.392199) (xy 160.890587 115.377087)
(xy 158.892117 113.378618) (xy 158.877001 113.360199) (xy 158.803515 113.299891) (xy 158.719677 113.255078) (xy 158.628706 113.227483)
(xy 158.557807 113.2205) (xy 158.557805 113.2205) (xy 158.5341 113.218165) (xy 158.510395 113.2205) (xy 156.194 113.2205)
(xy 155.203587 112.230087) (xy 160.5059 112.230087) (xy 160.5059 112.492113) (xy 160.557019 112.749105) (xy 160.657292 112.991186)
(xy 160.802866 113.209053) (xy 160.988147 113.394334) (xy 161.206014 113.539908) (xy 161.448095 113.640181) (xy 161.705087 113.6913)
(xy 161.967113 113.6913) (xy 162.224105 113.640181) (xy 162.466186 113.539908) (xy 162.684053 113.394334) (xy 162.869334 113.209053)
(xy 163.014908 112.991186) (xy 163.115181 112.749105) (xy 163.1663 112.492113) (xy 163.1663 112.230087) (xy 163.115181 111.973095)
(xy 163.014908 111.731014) (xy 162.869334 111.513147) (xy 162.684053 111.327866) (xy 162.466186 111.182292) (xy 162.224105 111.082019)
(xy 161.967113 111.0309) (xy 161.705087 111.0309) (xy 161.448095 111.082019) (xy 161.206014 111.182292) (xy 160.988147 111.327866)
(xy 160.802866 111.513147) (xy 160.657292 111.731014) (xy 160.557019 111.973095) (xy 160.5059 112.230087) (xy 155.203587 112.230087)
(xy 154.320117 111.346618) (xy 154.305001 111.328199) (xy 154.231515 111.267891) (xy 154.147677 111.223078) (xy 154.056706 111.195483)
(xy 153.985807 111.1885) (xy 153.985805 111.1885) (xy 153.9621 111.186165) (xy 153.938395 111.1885) (xy 152.658389 111.1885)
(xy 152.643995 111.153749) (xy 152.524467 110.974863) (xy 152.372337 110.822733) (xy 152.193451 110.703205) (xy 152.1587 110.688811)
(xy 152.1587 110.222257) (xy 154.1764 110.222257) (xy 154.1764 110.499943) (xy 154.230574 110.772294) (xy 154.33684 111.028843)
(xy 154.491114 111.259731) (xy 154.687469 111.456086) (xy 154.918357 111.61036) (xy 155.174906 111.716626) (xy 155.447257 111.7708)
(xy 155.724943 111.7708) (xy 155.997294 111.716626) (xy 156.253843 111.61036) (xy 156.484731 111.456086) (xy 156.681086 111.259731)
(xy 156.83536 111.028843) (xy 156.941626 110.772294) (xy 156.9958 110.499943) (xy 156.9958 110.222257) (xy 166.6764 110.222257)
(xy 166.6764 110.499943) (xy 166.730574 110.772294) (xy 166.83684 111.028843) (xy 166.991114 111.259731) (xy 167.187469 111.456086)
(xy 167.418357 111.61036) (xy 167.674906 111.716626) (xy 167.703501 111.722314) (xy 167.7035 115.76881) (xy 167.668749 115.783205)
(xy 167.489863 115.902733) (xy 167.337733 116.054863) (xy 167.218205 116.233749) (xy 167.135872 116.432517) (xy 167.0939 116.643528)
(xy 167.0939 116.858672) (xy 167.135872 117.069683) (xy 167.218205 117.268451) (xy 167.337733 117.447337) (xy 167.489863 117.599467)
(xy 167.668749 117.718995) (xy 167.867517 117.801328) (xy 168.078528 117.8433) (xy 168.293672 117.8433) (xy 168.504683 117.801328)
(xy 168.703451 117.718995) (xy 168.882337 117.599467) (xy 169.034467 117.447337) (xy 169.153995 117.268451) (xy 169.236328 117.069683)
(xy 169.2783 116.858672) (xy 169.2783 116.643528) (xy 169.6339 116.643528) (xy 169.6339 116.858672) (xy 169.675872 117.069683)
(xy 169.758205 117.268451) (xy 169.877733 117.447337) (xy 170.029863 117.599467) (xy 170.208749 117.718995) (xy 170.407517 117.801328)
(xy 170.618528 117.8433) (xy 170.833672 117.8433) (xy 171.044683 117.801328) (xy 171.243451 117.718995) (xy 171.422337 117.599467)
(xy 171.574467 117.447337) (xy 171.693995 117.268451) (xy 171.708389 117.2337) (xy 173.750395 117.2337) (xy 173.7741 117.236035)
(xy 173.797805 117.2337) (xy 173.797807 117.2337) (xy 173.868706 117.226717) (xy 173.959677 117.199122) (xy 174.043515 117.154309)
(xy 174.117001 117.094001) (xy 174.132117 117.075582) (xy 176.384582 114.823117) (xy 176.403001 114.808001) (xy 176.463309 114.734515)
(xy 176.508122 114.650677) (xy 176.535717 114.559706) (xy 176.5427 114.488807) (xy 176.5427 114.488806) (xy 176.545035 114.465101)
(xy 176.5427 114.441396) (xy 176.5427 108.646807) (xy 176.545035 108.6231) (xy 176.535717 108.528493) (xy 176.508122 108.437523)
(xy 176.463308 108.353684) (xy 176.455115 108.3437) (xy 176.403001 108.280199) (xy 176.384587 108.265087) (xy 175.656117 107.536618)
(xy 175.641001 107.518199) (xy 175.567515 107.457891) (xy 175.483677 107.413078) (xy 175.392706 107.385483) (xy 175.321807 107.3785)
(xy 175.321805 107.3785) (xy 175.2981 107.376165) (xy 175.274395 107.3785) (xy 175.225381 107.3785) (xy 175.127111 107.194651)
(xy 174.977928 107.012872) (xy 174.796149 106.863689) (xy 174.588758 106.752836) (xy 174.363726 106.684574) (xy 174.188344 106.6673)
(xy 172.343856 106.6673) (xy 172.168474 106.684574) (xy 171.943442 106.752836) (xy 171.736051 106.863689) (xy 171.554272 107.012872)
(xy 171.405089 107.194651) (xy 171.294236 107.402042) (xy 171.225974 107.627074) (xy 171.202924 107.8611) (xy 171.225974 108.095126)
(xy 171.294236 108.320158) (xy 171.405089 108.527549) (xy 171.554272 108.709328) (xy 171.736051 108.858511) (xy 171.943442 108.969364)
(xy 172.168474 109.037626) (xy 172.343856 109.0549) (xy 174.188344 109.0549) (xy 174.363726 109.037626) (xy 174.588758 108.969364)
(xy 174.796149 108.858511) (xy 174.977928 108.709328) (xy 175.127111 108.527549) (xy 175.18108 108.42658) (xy 175.5775 108.823)
(xy 175.577501 114.2652) (xy 173.574201 116.2685) (xy 171.708389 116.2685) (xy 171.693995 116.233749) (xy 171.574467 116.054863)
(xy 171.422337 115.902733) (xy 171.243451 115.783205) (xy 171.044683 115.700872) (xy 170.833672 115.6589) (xy 170.618528 115.6589)
(xy 170.407517 115.700872) (xy 170.208749 115.783205) (xy 170.029863 115.902733) (xy 169.877733 116.054863) (xy 169.758205 116.233749)
(xy 169.675872 116.432517) (xy 169.6339 116.643528) (xy 169.2783 116.643528) (xy 169.236328 116.432517) (xy 169.153995 116.233749)
(xy 169.034467 116.054863) (xy 168.882337 115.902733) (xy 168.703451 115.783205) (xy 168.6687 115.768811) (xy 168.6687 113.27207)
(xy 171.104223 113.27207) (xy 171.11731 113.339444) (xy 171.219718 113.582518) (xy 171.367579 113.800943) (xy 171.555212 113.986324)
(xy 171.775405 114.131538) (xy 172.019697 114.231004) (xy 172.2787 114.2809) (xy 173.1423 114.2809) (xy 173.1423 113.0649)
(xy 173.3899 113.0649) (xy 173.3899 114.2809) (xy 174.2535 114.2809) (xy 174.512503 114.231004) (xy 174.756795 114.131538)
(xy 174.976988 113.986324) (xy 175.164621 113.800943) (xy 175.312482 113.582518) (xy 175.41489 113.339444) (xy 175.427977 113.27207)
(xy 175.344156 113.0649) (xy 173.3899 113.0649) (xy 173.1423 113.0649) (xy 171.188044 113.0649) (xy 171.104223 113.27207)
(xy 168.6687 113.27207) (xy 168.6687 112.61013) (xy 171.104223 112.61013) (xy 171.188044 112.8173) (xy 173.1423 112.8173)
(xy 173.1423 111.6013) (xy 173.3899 111.6013) (xy 173.3899 112.8173) (xy 175.344156 112.8173) (xy 175.427977 112.61013)
(xy 175.41489 112.542756) (xy 175.312482 112.299682) (xy 175.164621 112.081257) (xy 174.976988 111.895876) (xy 174.756795 111.750662)
(xy 174.512503 111.651196) (xy 174.2535 111.6013) (xy 173.3899 111.6013) (xy 173.1423 111.6013) (xy 172.2787 111.6013)
(xy 172.019697 111.651196) (xy 171.775405 111.750662) (xy 171.555212 111.895876) (xy 171.367579 112.081257) (xy 171.219718 112.299682)
(xy 171.11731 112.542756) (xy 171.104223 112.61013) (xy 168.6687 112.61013) (xy 168.6687 111.645627) (xy 168.753843 111.61036)
(xy 168.984731 111.456086) (xy 169.181086 111.259731) (xy 169.33536 111.028843) (xy 169.441626 110.772294) (xy 169.4958 110.499943)
(xy 169.4958 110.222257) (xy 169.441626 109.949906) (xy 169.33536 109.693357) (xy 169.181086 109.462469) (xy 168.984731 109.266114)
(xy 168.753843 109.11184) (xy 168.497294 109.005574) (xy 168.224943 108.9514) (xy 167.947257 108.9514) (xy 167.674906 109.005574)
(xy 167.418357 109.11184) (xy 167.187469 109.266114) (xy 166.991114 109.462469) (xy 166.83684 109.693357) (xy 166.730574 109.949906)
(xy 166.6764 110.222257) (xy 156.9958 110.222257) (xy 156.941626 109.949906) (xy 156.83536 109.693357) (xy 156.681086 109.462469)
(xy 156.484731 109.266114) (xy 156.253843 109.11184) (xy 155.997294 109.005574) (xy 155.724943 108.9514) (xy 155.447257 108.9514)
(xy 155.174906 109.005574) (xy 154.918357 109.11184) (xy 154.687469 109.266114) (xy 154.491114 109.462469) (xy 154.33684 109.693357)
(xy 154.230574 109.949906) (xy 154.1764 110.222257) (xy 152.1587 110.222257) (xy 152.1587 105.222257) (xy 154.1764 105.222257)
(xy 154.1764 105.499943) (xy 154.230574 105.772294) (xy 154.33684 106.028843) (xy 154.491114 106.259731) (xy 154.687469 106.456086)
(xy 154.918357 106.61036) (xy 155.174906 106.716626) (xy 155.447257 106.7708) (xy 155.724943 106.7708) (xy 155.997294 106.716626)
(xy 156.253843 106.61036) (xy 156.484731 106.456086) (xy 156.681086 106.259731) (xy 156.83536 106.028843) (xy 156.941626 105.772294)
(xy 156.9958 105.499943) (xy 156.9958 105.222257) (xy 156.941626 104.949906) (xy 156.83536 104.693357) (xy 156.681086 104.462469)
(xy 156.484731 104.266114) (xy 156.253843 104.11184) (xy 155.997294 104.005574) (xy 155.724943 103.9514) (xy 155.447257 103.9514)
(xy 155.174906 104.005574) (xy 154.918357 104.11184) (xy 154.687469 104.266114) (xy 154.491114 104.462469) (xy 154.33684 104.693357)
(xy 154.230574 104.949906) (xy 154.1764 105.222257) (xy 152.1587 105.222257) (xy 152.1587 105.033389) (xy 152.193451 105.018995)
(xy 152.372337 104.899467) (xy 152.524467 104.747337) (xy 152.643995 104.568451) (xy 152.726328 104.369683) (xy 152.7683 104.158672)
(xy 152.7683 103.943528) (xy 152.726328 103.732517) (xy 152.643995 103.533749) (xy 152.524467 103.354863) (xy 152.433304 103.2637)
(xy 156.556201 103.2637) (xy 158.978086 105.685586) (xy 158.993199 105.704001) (xy 159.011612 105.719112) (xy 159.011613 105.719113)
(xy 159.025507 105.730515) (xy 159.066685 105.764309) (xy 159.150523 105.809122) (xy 159.241494 105.836717) (xy 159.312393 105.8437)
(xy 159.312395 105.8437) (xy 159.3361 105.846035) (xy 159.359805 105.8437) (xy 166.760151 105.8437) (xy 166.83684 106.028843)
(xy 166.991114 106.259731) (xy 167.187469 106.456086) (xy 167.418357 106.61036) (xy 167.674906 106.716626) (xy 167.7035 106.722314)
(xy 167.7035 107.583395) (xy 167.701165 107.6071) (xy 167.7035 107.630805) (xy 167.7035 107.630806) (xy 167.710483 107.701705)
(xy 167.738078 107.792676) (xy 167.782891 107.876515) (xy 167.843199 107.950001) (xy 167.861618 107.965117) (xy 170.622088 110.725588)
(xy 170.637199 110.744001) (xy 170.655612 110.759112) (xy 170.655613 110.759113) (xy 170.671674 110.772294) (xy 170.710685 110.804309)
(xy 170.771315 110.836717) (xy 170.794523 110.849122) (xy 170.885493 110.876717) (xy 170.9801 110.886035) (xy 171.003807 110.8837)
(xy 171.306819 110.8837) (xy 171.405089 111.067549) (xy 171.554272 111.249328) (xy 171.736051 111.398511) (xy 171.943442 111.509364)
(xy 172.168474 111.577626) (xy 172.343856 111.5949) (xy 174.188344 111.5949) (xy 174.363726 111.577626) (xy 174.588758 111.509364)
(xy 174.796149 111.398511) (xy 174.977928 111.249328) (xy 175.127111 111.067549) (xy 175.237964 110.860158) (xy 175.306226 110.635126)
(xy 175.329276 110.4011) (xy 175.306226 110.167074) (xy 175.237964 109.942042) (xy 175.127111 109.734651) (xy 174.977928 109.552872)
(xy 174.796149 109.403689) (xy 174.588758 109.292836) (xy 174.363726 109.224574) (xy 174.188344 109.2073) (xy 172.343856 109.2073)
(xy 172.168474 109.224574) (xy 171.943442 109.292836) (xy 171.736051 109.403689) (xy 171.554272 109.552872) (xy 171.405089 109.734651)
(xy 171.306819 109.9185) (xy 171.18 109.9185) (xy 168.6687 107.407201) (xy 168.6687 106.645627) (xy 168.753843 106.61036)
(xy 168.984731 106.456086) (xy 169.181086 106.259731) (xy 169.33536 106.028843) (xy 169.441626 105.772294) (xy 169.46554 105.65207)
(xy 171.104223 105.65207) (xy 171.11731 105.719444) (xy 171.219718 105.962518) (xy 171.367579 106.180943) (xy 171.555212 106.366324)
(xy 171.775405 106.511538) (xy 172.019697 106.611004) (xy 172.2787 106.6609) (xy 173.1423 106.6609) (xy 173.1423 105.4449)
(xy 173.3899 105.4449) (xy 173.3899 106.6609) (xy 174.2535 106.6609) (xy 174.512503 106.611004) (xy 174.756795 106.511538)
(xy 174.976988 106.366324) (xy 175.164621 106.180943) (xy 175.312482 105.962518) (xy 175.41489 105.719444) (xy 175.427977 105.65207)
(xy 175.344156 105.4449) (xy 173.3899 105.4449) (xy 173.1423 105.4449) (xy 171.188044 105.4449) (xy 171.104223 105.65207)
(xy 169.46554 105.65207) (xy 169.4958 105.499943) (xy 169.4958 105.222257) (xy 169.449628 104.99013) (xy 171.104223 104.99013)
(xy 171.188044 105.1973) (xy 173.1423 105.1973) (xy 173.1423 103.9813) (xy 173.3899 103.9813) (xy 173.3899 105.1973)
(xy 175.344156 105.1973) (xy 175.427977 104.99013) (xy 175.41489 104.922756) (xy 175.312482 104.679682) (xy 175.164621 104.461257)
(xy 174.976988 104.275876) (xy 174.756795 104.130662) (xy 174.512503 104.031196) (xy 174.2535 103.9813) (xy 173.3899 103.9813)
(xy 173.1423 103.9813) (xy 172.2787 103.9813) (xy 172.019697 104.031196) (xy 171.775405 104.130662) (xy 171.555212 104.275876)
(xy 171.367579 104.461257) (xy 171.219718 104.679682) (xy 171.11731 104.922756) (xy 171.104223 104.99013) (xy 169.449628 104.99013)
(xy 169.441626 104.949906) (xy 169.33536 104.693357) (xy 169.181086 104.462469) (xy 168.984731 104.266114) (xy 168.753843 104.11184)
(xy 168.497294 104.005574) (xy 168.224943 103.9514) (xy 167.947257 103.9514) (xy 167.674906 104.005574) (xy 167.418357 104.11184)
(xy 167.187469 104.266114) (xy 166.991114 104.462469) (xy 166.83684 104.693357) (xy 166.760151 104.8785) (xy 159.536 104.8785)
(xy 157.887587 103.230087) (xy 160.5059 103.230087) (xy 160.5059 103.492113) (xy 160.557019 103.749105) (xy 160.657292 103.991186)
(xy 160.802866 104.209053) (xy 160.988147 104.394334) (xy 161.206014 104.539908) (xy 161.448095 104.640181) (xy 161.705087 104.6913)
(xy 161.967113 104.6913) (xy 162.224105 104.640181) (xy 162.466186 104.539908) (xy 162.684053 104.394334) (xy 162.869334 104.209053)
(xy 163.014908 103.991186) (xy 163.115181 103.749105) (xy 163.1663 103.492113) (xy 163.1663 103.230087) (xy 163.115181 102.973095)
(xy 163.014908 102.731014) (xy 162.869334 102.513147) (xy 162.684053 102.327866) (xy 162.466186 102.182292) (xy 162.224105 102.082019)
(xy 161.967113 102.0309) (xy 161.705087 102.0309) (xy 161.448095 102.082019) (xy 161.206014 102.182292) (xy 160.988147 102.327866)
(xy 160.802866 102.513147) (xy 160.657292 102.731014) (xy 160.557019 102.973095) (xy 160.5059 103.230087) (xy 157.887587 103.230087)
(xy 157.114117 102.456618) (xy 157.099001 102.438199) (xy 157.025515 102.377891) (xy 156.941677 102.333078) (xy 156.850706 102.305483)
(xy 156.779807 102.2985) (xy 156.779805 102.2985) (xy 156.7561 102.296165) (xy 156.732395 102.2985) (xy 150.937804 102.2985)
(xy 150.914099 102.296165) (xy 150.890394 102.2985) (xy 150.890393 102.2985) (xy 150.819494 102.305483) (xy 150.728523 102.333078)
(xy 150.644685 102.377891) (xy 150.571199 102.438199) (xy 150.556079 102.456623) (xy 150.335619 102.677082) (xy 150.335613 102.677087)
(xy 145.380201 107.6325) (xy 142.477999 107.6325) (xy 141.173158 106.327659) (xy 141.241086 106.259731) (xy 141.39536 106.028843)
(xy 141.501626 105.772294) (xy 141.5558 105.499943) (xy 141.5558 105.222257) (xy 141.501626 104.949906) (xy 141.39536 104.693357)
(xy 141.241086 104.462469) (xy 141.044731 104.266114) (xy 140.813843 104.11184) (xy 140.6287 104.035151) (xy 140.6287 101.810999)
(xy 141.840588 100.599112) (xy 141.859001 100.584001) (xy 141.919309 100.510515) (xy 141.964122 100.426677) (xy 141.972064 100.400494)
(xy 141.991717 100.335707) (xy 141.995937 100.292863) (xy 142.027294 100.286626) (xy 142.283843 100.18036) (xy 142.514731 100.026086)
(xy 142.711086 99.829731) (xy 142.86536 99.598843) (xy 142.971626 99.342294) (xy 143.0258 99.069943) (xy 143.0258 98.792257)
(xy 142.971626 98.519906) (xy 142.86536 98.263357) (xy 142.711086 98.032469) (xy 142.514731 97.836114) (xy 142.283843 97.68184)
(xy 142.027294 97.575574) (xy 141.754943 97.5214) (xy 141.477257 97.5214) (xy 141.204906 97.575574) (xy 140.948357 97.68184)
(xy 140.717469 97.836114) (xy 140.521114 98.032469) (xy 140.36684 98.263357) (xy 140.260574 98.519906) (xy 140.2064 98.792257)
(xy 140.2064 99.069943) (xy 140.260574 99.342294) (xy 140.36684 99.598843) (xy 140.521114 99.829731) (xy 140.717469 100.026086)
(xy 140.915976 100.158724) (xy 139.821613 101.253088) (xy 139.8032 101.268199) (xy 139.788089 101.286612) (xy 139.788087 101.286614)
(xy 139.742892 101.341685) (xy 139.7127 101.398169) (xy 139.7127 94.344999) (xy 140.2064 93.851299) (xy 140.2064 94.069943)
(xy 140.260574 94.342294) (xy 140.36684 94.598843) (xy 140.521114 94.829731) (xy 140.717469 95.026086) (xy 140.948357 95.18036)
(xy 141.204906 95.286626) (xy 141.477257 95.3408) (xy 141.754943 95.3408) (xy 142.027294 95.286626) (xy 142.283843 95.18036)
(xy 142.514731 95.026086) (xy 142.711086 94.829731) (xy 142.843724 94.631223) (xy 143.573501 95.361) (xy 143.5735 103.068811)
(xy 143.538749 103.083205) (xy 143.359863 103.202733) (xy 143.207733 103.354863) (xy 143.088205 103.533749) (xy 143.005872 103.732517)
(xy 142.9639 103.943528) (xy 142.9639 104.158672) (xy 143.005872 104.369683) (xy 143.088205 104.568451) (xy 143.207733 104.747337)
(xy 143.359863 104.899467) (xy 143.538749 105.018995) (xy 143.737517 105.101328) (xy 143.948528 105.1433) (xy 144.163672 105.1433)
(xy 144.374683 105.101328) (xy 144.573451 105.018995) (xy 144.752337 104.899467) (xy 144.904467 104.747337) (xy 145.023995 104.568451)
(xy 145.106328 104.369683) (xy 145.1483 104.158672) (xy 145.1483 103.943528) (xy 145.106328 103.732517) (xy 145.023995 103.533749)
(xy 144.904467 103.354863) (xy 144.752337 103.202733) (xy 144.573451 103.083205) (xy 144.5387 103.068811) (xy 144.5387 100.800087)
(xy 146.5359 100.800087) (xy 146.5359 101.062113) (xy 146.587019 101.319105) (xy 146.687292 101.561186) (xy 146.832866 101.779053)
(xy 147.018147 101.964334) (xy 147.236014 102.109908) (xy 147.478095 102.210181) (xy 147.735087 102.2613) (xy 147.997113 102.2613)
(xy 148.254105 102.210181) (xy 148.496186 102.109908) (xy 148.714053 101.964334) (xy 148.899334 101.779053) (xy 149.044908 101.561186)
(xy 149.145181 101.319105) (xy 149.1963 101.062113) (xy 149.1963 100.800087) (xy 149.145181 100.543095) (xy 149.044908 100.301014)
(xy 148.899334 100.083147) (xy 148.714053 99.897866) (xy 148.496186 99.752292) (xy 148.254105 99.652019) (xy 147.997113 99.6009)
(xy 147.735087 99.6009) (xy 147.478095 99.652019) (xy 147.236014 99.752292) (xy 147.018147 99.897866) (xy 146.832866 100.083147)
(xy 146.687292 100.301014) (xy 146.587019 100.543095) (xy 146.5359 100.800087) (xy 144.5387 100.800087) (xy 144.5387 98.792257)
(xy 152.7064 98.792257) (xy 152.7064 99.069943) (xy 152.760574 99.342294) (xy 152.86684 99.598843) (xy 153.021114 99.829731)
(xy 153.217469 100.026086) (xy 153.448357 100.18036) (xy 153.704906 100.286626) (xy 153.977257 100.3408) (xy 154.254943 100.3408)
(xy 154.527294 100.286626) (xy 154.783843 100.18036) (xy 155.014731 100.026086) (xy 155.211086 99.829731) (xy 155.36536 99.598843)
(xy 155.471626 99.342294) (xy 155.5258 99.069943) (xy 155.5258 98.792257) (xy 155.471626 98.519906) (xy 155.36536 98.263357)
(xy 155.211086 98.032469) (xy 155.014731 97.836114) (xy 154.783843 97.68184) (xy 154.527294 97.575574) (xy 154.254943 97.5214)
(xy 153.977257 97.5214) (xy 153.704906 97.575574) (xy 153.448357 97.68184) (xy 153.217469 97.836114) (xy 153.021114 98.032469)
(xy 152.86684 98.263357) (xy 152.760574 98.519906) (xy 152.7064 98.792257) (xy 144.5387 98.792257) (xy 144.5387 95.184804)
(xy 144.541035 95.161099) (xy 144.537845 95.128717) (xy 144.531717 95.066494) (xy 144.504122 94.975523) (xy 144.459309 94.891685)
(xy 144.399001 94.818199) (xy 144.380582 94.803083) (xy 143.144117 93.566618) (xy 143.129001 93.548199) (xy 143.055515 93.487891)
(xy 142.971677 93.443078) (xy 142.935222 93.43202) (xy 142.86536 93.263357) (xy 142.711086 93.032469) (xy 142.528317 92.8497)
(xy 145.634201 92.8497) (xy 148.987 96.2025) (xy 148.573999 96.2025) (xy 148.224117 95.852618) (xy 148.209001 95.834199)
(xy 148.135515 95.773891) (xy 148.051677 95.729078) (xy 147.960706 95.701483) (xy 147.889807 95.6945) (xy 147.889805 95.6945)
(xy 147.8661 95.692165) (xy 147.842395 95.6945) (xy 146.707825 95.6945) (xy 146.696607 95.677711) (xy 146.587489 95.568593)
(xy 146.459179 95.48286) (xy 146.316609 95.423805) (xy 146.165258 95.3937) (xy 146.010942 95.3937) (xy 145.859591 95.423805)
(xy 145.717021 95.48286) (xy 145.588711 95.568593) (xy 145.479593 95.677711) (xy 145.39386 95.806021) (xy 145.334805 95.948591)
(xy 145.3047 96.099942) (xy 145.3047 96.254258) (xy 145.334805 96.405609) (xy 145.39386 96.548179) (xy 145.479593 96.676489)
(xy 145.588711 96.785607) (xy 145.717021 96.87134) (xy 145.859591 96.930395) (xy 146.010942 96.9605) (xy 146.165258 96.9605)
(xy 146.316609 96.930395) (xy 146.459179 96.87134) (xy 146.587489 96.785607) (xy 146.696607 96.676489) (xy 146.707825 96.6597)
(xy 147.666201 96.6597) (xy 148.016083 97.009582) (xy 148.031199 97.028001) (xy 148.104685 97.088309) (xy 148.188523 97.133122)
(xy 148.279494 97.160717) (xy 148.350393 97.1677) (xy 148.350402 97.1677) (xy 148.374099 97.170034) (xy 148.397796 97.1677)
(xy 154.778201 97.1677) (xy 155.636086 98.025586) (xy 155.651199 98.044001) (xy 155.724685 98.104309) (xy 155.808523 98.149122)
(xy 155.899493 98.176717) (xy 155.9941 98.186035) (xy 156.017807 98.1837) (xy 157.043811 98.1837) (xy 157.058205 98.218451)
(xy 157.177733 98.397337) (xy 157.329863 98.549467) (xy 157.508749 98.668995) (xy 157.707517 98.751328) (xy 157.918528 98.7933)
(xy 158.133672 98.7933) (xy 158.344683 98.751328) (xy 158.543451 98.668995) (xy 158.722337 98.549467) (xy 158.874467 98.397337)
(xy 158.993995 98.218451) (xy 159.076328 98.019683) (xy 159.1183 97.808672) (xy 159.1183 97.593528) (xy 159.076328 97.382517)
(xy 158.993995 97.183749) (xy 158.874467 97.004863) (xy 158.783304 96.9137) (xy 159.018395 96.9137) (xy 159.0421 96.916035)
(xy 159.065805 96.9137) (xy 159.065807 96.9137) (xy 159.136706 96.906717) (xy 159.227677 96.879122) (xy 159.311515 96.834309)
(xy 159.385001 96.774001) (xy 159.400117 96.755582) (xy 159.874582 96.281117) (xy 159.893001 96.266001) (xy 159.953309 96.192515)
(xy 159.998122 96.108677) (xy 160.025717 96.017706) (xy 160.0327 95.946807) (xy 160.0327 95.946798) (xy 160.035034 95.923101)
(xy 160.0327 95.899404) (xy 160.0327 94.676807) (xy 160.035035 94.6531) (xy 160.025717 94.558493) (xy 159.998122 94.467523)
(xy 159.973877 94.422165) (xy 159.953309 94.383685) (xy 159.893001 94.310199) (xy 159.874587 94.295088) (xy 159.0167 93.437201)
(xy 159.0167 92.385995) (xy 159.178451 92.318995) (xy 159.357337 92.199467) (xy 159.431065 92.125739) (xy 159.389975 92.215221)
(xy 159.333391 92.452471) (xy 159.324179 92.6962) (xy 159.362693 92.937044) (xy 159.447454 93.165746) (xy 159.491757 93.248631)
(xy 159.687796 93.324324) (xy 160.39102 92.6211) (xy 159.687796 91.917876) (xy 159.564043 91.965659) (xy 159.628995 91.868451)
(xy 159.711328 91.669683) (xy 159.7533 91.458672) (xy 159.7533 91.243528) (xy 159.711328 91.032517) (xy 159.628995 90.833749)
(xy 159.509467 90.654863) (xy 159.357337 90.502733) (xy 159.178451 90.383205) (xy 158.979683 90.300872) (xy 158.768672 90.2589)
(xy 158.553528 90.2589) (xy 158.342517 90.300872) (xy 158.143749 90.383205) (xy 157.964863 90.502733) (xy 157.812733 90.654863)
(xy 157.693205 90.833749) (xy 157.610872 91.032517) (xy 157.5689 91.243528) (xy 157.5689 91.458672) (xy 157.610872 91.669683)
(xy 157.693205 91.868451) (xy 157.812733 92.047337) (xy 157.964863 92.199467) (xy 158.051501 92.257357) (xy 158.0515 93.613395)
(xy 158.049165 93.6371) (xy 158.0515 93.660805) (xy 158.0515 93.660806) (xy 158.058483 93.731705) (xy 158.086078 93.822676)
(xy 158.130891 93.906515) (xy 158.191199 93.980001) (xy 158.209618 93.995117) (xy 158.320578 94.106077) (xy 158.133672 94.0689)
(xy 157.918528 94.0689) (xy 157.707517 94.110872) (xy 157.672766 94.125267) (xy 157.114118 93.566619) (xy 157.114113 93.566613)
(xy 153.050117 89.502618) (xy 153.035001 89.484199) (xy 152.961515 89.423891) (xy 152.877677 89.379078) (xy 152.786706 89.351483)
(xy 152.715807 89.3445) (xy 152.715805 89.3445) (xy 152.6921 89.342165) (xy 152.668395 89.3445) (xy 146.365796 89.3445)
(xy 146.342099 89.342166) (xy 146.318402 89.3445) (xy 146.318393 89.3445) (xy 146.247494 89.351483) (xy 146.156523 89.379078)
(xy 146.072685 89.423891) (xy 145.999199 89.484199) (xy 145.984083 89.502618) (xy 144.618201 90.8685) (xy 141.121278 90.8685)
(xy 141.197478 90.7923) (xy 144.03365 90.7923) (xy 144.0561 90.794511) (xy 144.07855 90.7923) (xy 144.07856 90.7923)
(xy 144.145727 90.785685) (xy 144.231909 90.759541) (xy 144.311336 90.717087) (xy 144.380953 90.659953) (xy 144.395274 90.642503)
(xy 146.903509 88.134269) (xy 146.920953 88.119953) (xy 146.93527 88.102508) (xy 146.978087 88.050337) (xy 147.010806 87.989122)
(xy 147.015598 87.980156) (xy 147.017873 87.982928) (xy 147.199652 88.132111) (xy 147.407043 88.242964) (xy 147.632075 88.311226)
(xy 147.8661 88.334276) (xy 148.100126 88.311226) (xy 148.325158 88.242964) (xy 148.532549 88.132111) (xy 148.714328 87.982928)
(xy 148.863511 87.801149) (xy 148.974364 87.593758) (xy 149.042626 87.368726) (xy 149.0599 87.193344) (xy 149.0599 85.348856)
(xy 149.042626 85.173474) (xy 148.974364 84.948442) (xy 148.863511 84.741051) (xy 148.847302 84.7213) (xy 149.424899 84.7213)
)
)
(filled_polygon
(pts
(xy 155.636086 114.027586) (xy 155.651199 114.046001) (xy 155.724685 114.106309) (xy 155.808523 114.151122) (xy 155.899493 114.178717)
(xy 155.9941 114.188035) (xy 156.017807 114.1857) (xy 158.334201 114.1857) (xy 159.978586 115.830086) (xy 159.869863 115.902733)
(xy 159.717733 116.054863) (xy 159.598205 116.233749) (xy 159.515872 116.432517) (xy 159.4739 116.643528) (xy 159.4739 116.858672)
(xy 159.515872 117.069683) (xy 159.598205 117.268451) (xy 159.717733 117.447337) (xy 159.869863 117.599467) (xy 160.048749 117.718995)
(xy 160.0835 117.733389) (xy 160.083501 123.8885) (xy 151.875999 123.8885) (xy 149.748117 121.760618) (xy 149.733001 121.742199)
(xy 149.659515 121.681891) (xy 149.604075 121.652257) (xy 152.7064 121.652257) (xy 152.7064 121.929943) (xy 152.760574 122.202294)
(xy 152.86684 122.458843) (xy 153.021114 122.689731) (xy 153.217469 122.886086) (xy 153.448357 123.04036) (xy 153.704906 123.146626)
(xy 153.977257 123.2008) (xy 154.254943 123.2008) (xy 154.527294 123.146626) (xy 154.783843 123.04036) (xy 155.014731 122.886086)
(xy 155.211086 122.689731) (xy 155.36536 122.458843) (xy 155.471626 122.202294) (xy 155.5258 121.929943) (xy 155.5258 121.652257)
(xy 155.471626 121.379906) (xy 155.36536 121.123357) (xy 155.211086 120.892469) (xy 155.014731 120.696114) (xy 154.783843 120.54184)
(xy 154.527294 120.435574) (xy 154.254943 120.3814) (xy 153.977257 120.3814) (xy 153.704906 120.435574) (xy 153.448357 120.54184)
(xy 153.217469 120.696114) (xy 153.021114 120.892469) (xy 152.86684 121.123357) (xy 152.760574 121.379906) (xy 152.7064 121.652257)
(xy 149.604075 121.652257) (xy 149.575677 121.637078) (xy 149.484706 121.609483) (xy 149.413807 121.6025) (xy 149.413805 121.6025)
(xy 149.3901 121.600165) (xy 149.366395 121.6025) (xy 146.491199 121.6025) (xy 151.441442 116.652257) (xy 152.7064 116.652257)
(xy 152.7064 116.929943) (xy 152.760574 117.202294) (xy 152.86684 117.458843) (xy 153.021114 117.689731) (xy 153.217469 117.886086)
(xy 153.448357 118.04036) (xy 153.704906 118.146626) (xy 153.977257 118.2008) (xy 154.254943 118.2008) (xy 154.527294 118.146626)
(xy 154.783843 118.04036) (xy 155.014731 117.886086) (xy 155.211086 117.689731) (xy 155.36536 117.458843) (xy 155.471626 117.202294)
(xy 155.5258 116.929943) (xy 155.5258 116.652257) (xy 155.471626 116.379906) (xy 155.36536 116.123357) (xy 155.211086 115.892469)
(xy 155.014731 115.696114) (xy 154.783843 115.54184) (xy 154.527294 115.435574) (xy 154.254943 115.3814) (xy 153.977257 115.3814)
(xy 153.704906 115.435574) (xy 153.448357 115.54184) (xy 153.217469 115.696114) (xy 153.021114 115.892469) (xy 152.86684 116.123357)
(xy 152.760574 116.379906) (xy 152.7064 116.652257) (xy 151.441442 116.652257) (xy 152.000588 116.093112) (xy 152.019001 116.078001)
(xy 152.079309 116.004515) (xy 152.124122 115.920677) (xy 152.151717 115.829706) (xy 152.1587 115.758807) (xy 152.161035 115.7351)
(xy 152.1587 115.711393) (xy 152.1587 112.653389) (xy 152.193451 112.638995) (xy 152.372337 112.519467) (xy 152.524467 112.367337)
(xy 152.643995 112.188451) (xy 152.658389 112.1537) (xy 153.762201 112.1537)
)
)
(filled_polygon
(pts
(xy 121.468689 84.741052) (xy 121.357836 84.948443) (xy 121.289574 85.173475) (xy 121.2723 85.348857) (xy 121.2723 87.193344)
(xy 121.289575 87.368726) (xy 121.357837 87.593758) (xy 121.46869 87.801149) (xy 121.617873 87.982928) (xy 121.799652 88.132111)
(xy 121.9835 88.23038) (xy 121.983501 89.608623) (xy 121.856372 89.676575) (xy 121.690063 89.813062) (xy 121.553576 89.979371)
(xy 121.452158 90.169111) (xy 121.389704 90.374991) (xy 121.3739 90.535451) (xy 121.3739 92.166748) (xy 121.389704 92.327208)
(xy 121.452157 92.533088) (xy 121.553575 92.722829) (xy 121.690062 92.889138) (xy 121.856371 93.025625) (xy 122.046111 93.127043)
(xy 122.251991 93.189496) (xy 122.4661 93.210584) (xy 122.680208 93.189496) (xy 122.886088 93.127043) (xy 123.075829 93.025625)
(xy 123.242138 92.889138) (xy 123.378625 92.722829) (xy 123.480043 92.533089) (xy 123.542496 92.327209) (xy 123.5583 92.166749)
(xy 123.5583 90.535451) (xy 123.542496 90.374991) (xy 123.480043 90.169111) (xy 123.378625 89.979371) (xy 123.242138 89.813062)
(xy 123.075829 89.676575) (xy 122.9487 89.608623) (xy 122.9487 88.230381) (xy 123.132549 88.132111) (xy 123.314328 87.982928)
(xy 123.463511 87.801149) (xy 123.574364 87.593758) (xy 123.642626 87.368726) (xy 123.6599 87.193344) (xy 123.6599 85.348856)
(xy 123.642626 85.173474) (xy 123.574364 84.948442) (xy 123.463511 84.741051) (xy 123.447302 84.7213) (xy 123.854641 84.7213)
(xy 123.815662 84.780405) (xy 123.716196 85.024697) (xy 123.6663 85.2837) (xy 123.6663 86.1473) (xy 124.8823 86.1473)
(xy 124.8823 86.1273) (xy 125.1299 86.1273) (xy 125.1299 86.1473) (xy 125.1499 86.1473) (xy 125.1499 86.3949)
(xy 125.1299 86.3949) (xy 125.1299 86.4149) (xy 124.8823 86.4149) (xy 124.8823 86.3949) (xy 123.6663 86.3949)
(xy 123.6663 87.2585) (xy 123.716196 87.517503) (xy 123.815662 87.761795) (xy 123.960876 87.981988) (xy 124.146257 88.169621)
(xy 124.364682 88.317482) (xy 124.607756 88.41989) (xy 124.67513 88.432977) (xy 124.719796 88.414905) (xy 124.681618 88.453083)
(xy 124.663199 88.468199) (xy 124.602891 88.541685) (xy 124.558078 88.625524) (xy 124.530483 88.716495) (xy 124.526169 88.7603)
(xy 124.521165 88.8111) (xy 124.5235 88.834805) (xy 124.5235 89.608624) (xy 124.396372 89.676575) (xy 124.230063 89.813062)
(xy 124.093576 89.979371) (xy 123.992158 90.169111) (xy 123.929704 90.374991) (xy 123.9139 90.535451) (xy 123.9139 92.166748)
(xy 123.929704 92.327208) (xy 123.992157 92.533088) (xy 124.093575 92.722829) (xy 124.230062 92.889138) (xy 124.396371 93.025625)
(xy 124.586111 93.127043) (xy 124.791991 93.189496) (xy 125.0061 93.210584) (xy 125.220208 93.189496) (xy 125.426088 93.127043)
(xy 125.615829 93.025625) (xy 125.782138 92.889138) (xy 125.918625 92.722829) (xy 126.020043 92.533089) (xy 126.082496 92.327209)
(xy 126.0983 92.166749) (xy 126.0983 90.535451) (xy 126.082496 90.374991) (xy 126.020043 90.169111) (xy 125.918625 89.979371)
(xy 125.782138 89.813062) (xy 125.615829 89.676575) (xy 125.4887 89.608623) (xy 125.4887 89.010999) (xy 126.600582 87.899117)
(xy 126.617617 87.885137) (xy 126.697873 87.982928) (xy 126.879652 88.132111) (xy 127.087043 88.242964) (xy 127.312075 88.311226)
(xy 127.5461 88.334276) (xy 127.780126 88.311226) (xy 128.005158 88.242964) (xy 128.212549 88.132111) (xy 128.394328 87.982928)
(xy 128.543511 87.801149) (xy 128.654364 87.593758) (xy 128.722626 87.368726) (xy 128.7399 87.193344) (xy 128.7399 85.348856)
(xy 128.722626 85.173474) (xy 128.654364 84.948442) (xy 128.543511 84.741051) (xy 128.527302 84.7213) (xy 129.104899 84.7213)
(xy 129.088689 84.741052) (xy 128.977836 84.948443) (xy 128.909574 85.173475) (xy 128.8923 85.348857) (xy 128.8923 87.193344)
(xy 128.909575 87.368726) (xy 128.977837 87.593758) (xy 129.08869 87.801149) (xy 129.125416 87.8459) (xy 128.838549 87.8459)
(xy 128.816099 87.843689) (xy 128.793649 87.8459) (xy 128.79364 87.8459) (xy 128.726473 87.852515) (xy 128.640291 87.878659)
(xy 128.603317 87.898422) (xy 128.560863 87.921113) (xy 128.508692 87.96393) (xy 128.491247 87.978247) (xy 128.47693 87.995692)
(xy 127.238697 89.233926) (xy 127.221247 89.248247) (xy 127.164113 89.317865) (xy 127.121659 89.397292) (xy 127.095515 89.483474)
(xy 127.0889 89.550641) (xy 127.0889 89.55065) (xy 127.086689 89.5731) (xy 127.088853 89.595072) (xy 126.936372 89.676575)
(xy 126.770063 89.813062) (xy 126.633576 89.979371) (xy 126.532158 90.169111) (xy 126.469704 90.374991) (xy 126.4539 90.535451)
(xy 126.4539 92.166748) (xy 126.469704 92.327208) (xy 126.532157 92.533088) (xy 126.633575 92.722829) (xy 126.770062 92.889138)
(xy 126.936371 93.025625) (xy 127.126111 93.127043) (xy 127.331991 93.189496) (xy 127.5461 93.210584) (xy 127.760208 93.189496)
(xy 127.966088 93.127043) (xy 128.155829 93.025625) (xy 128.322138 92.889138) (xy 128.458625 92.722829) (xy 128.560043 92.533089)
(xy 128.622496 92.327209) (xy 128.6383 92.166749) (xy 128.6383 90.535451) (xy 128.622496 90.374991) (xy 128.560043 90.169111)
(xy 128.458625 89.979371) (xy 128.322138 89.813062) (xy 128.155829 89.676575) (xy 128.11241 89.653367) (xy 129.005478 88.7603)
(xy 130.252322 88.7603) (xy 129.778697 89.233926) (xy 129.761247 89.248247) (xy 129.704113 89.317865) (xy 129.661659 89.397292)
(xy 129.635515 89.483474) (xy 129.6289 89.550641) (xy 129.6289 89.55065) (xy 129.626689 89.5731) (xy 129.628853 89.595072)
(xy 129.476372 89.676575) (xy 129.310063 89.813062) (xy 129.173576 89.979371) (xy 129.072158 90.169111) (xy 129.009704 90.374991)
(xy 128.9939 90.535451) (xy 128.9939 92.166748) (xy 129.009704 92.327208) (xy 129.072157 92.533088) (xy 129.173575 92.722829)
(xy 129.310062 92.889138) (xy 129.476371 93.025625) (xy 129.666111 93.127043) (xy 129.871991 93.189496) (xy 130.0861 93.210584)
(xy 130.300208 93.189496) (xy 130.506088 93.127043) (xy 130.695829 93.025625) (xy 130.862138 92.889138) (xy 130.998625 92.722829)
(xy 131.100043 92.533089) (xy 131.162496 92.327209) (xy 131.1783 92.166749) (xy 131.1783 90.535451) (xy 131.162496 90.374991)
(xy 131.100043 90.169111) (xy 130.998625 89.979371) (xy 130.862138 89.813062) (xy 130.695829 89.676575) (xy 130.65241 89.653367)
(xy 131.037479 89.2683) (xy 132.538323 89.2683) (xy 132.318697 89.487926) (xy 132.301247 89.502247) (xy 132.253112 89.5609)
(xy 132.206112 89.575157) (xy 132.016372 89.676575) (xy 131.850063 89.813062) (xy 131.713576 89.979371) (xy 131.612158 90.169111)
(xy 131.549704 90.374991) (xy 131.5339 90.535451) (xy 131.5339 92.166748) (xy 131.549704 92.327208) (xy 131.612157 92.533088)
(xy 131.713575 92.722829) (xy 131.850062 92.889138) (xy 132.016371 93.025625) (xy 132.206111 93.127043) (xy 132.411991 93.189496)
(xy 132.6261 93.210584) (xy 132.840208 93.189496) (xy 133.046088 93.127043) (xy 133.235829 93.025625) (xy 133.402138 92.889138)
(xy 133.538625 92.722829) (xy 133.640043 92.533089) (xy 133.702496 92.327209) (xy 133.7183 92.166749) (xy 133.7183 90.535451)
(xy 133.702496 90.374991) (xy 133.640043 90.169111) (xy 133.538625 89.979371) (xy 133.402138 89.813062) (xy 133.357344 89.7763)
(xy 134.434857 89.7763) (xy 134.390063 89.813062) (xy 134.253576 89.979371) (xy 134.152158 90.169111) (xy 134.089704 90.374991)
(xy 134.0739 90.535451) (xy 134.0739 92.166748) (xy 134.089704 92.327208) (xy 134.152157 92.533088) (xy 134.253575 92.722829)
(xy 134.390062 92.889138) (xy 134.556371 93.025625) (xy 134.746111 93.127043) (xy 134.793112 93.141301) (xy 134.813175 93.165746)
(xy 134.841248 93.199953) (xy 134.858692 93.214269) (xy 135.306922 93.6625) (xy 121.142 93.6625) (xy 120.515819 93.03632)
(xy 120.535829 93.025625) (xy 120.702138 92.889138) (xy 120.838625 92.722829) (xy 120.940043 92.533089) (xy 121.002496 92.327209)
(xy 121.0183 92.166749) (xy 121.0183 90.535451) (xy 121.002496 90.374991) (xy 120.940043 90.169111) (xy 120.838625 89.979371)
(xy 120.702138 89.813062) (xy 120.535829 89.676575) (xy 120.346089 89.575157) (xy 120.140209 89.512704) (xy 119.9261 89.491616)
(xy 119.711992 89.512704) (xy 119.506112 89.575157) (xy 119.316372 89.676575) (xy 119.150063 89.813062) (xy 119.013576 89.979371)
(xy 118.912158 90.169111) (xy 118.849704 90.374991) (xy 118.8339 90.535451) (xy 118.8339 92.166748) (xy 118.849704 92.327208)
(xy 118.912157 92.533088) (xy 119.013575 92.722829) (xy 119.150062 92.889138) (xy 119.316371 93.025625) (xy 119.443501 93.093577)
(xy 119.443501 93.105385) (xy 119.441165 93.1291) (xy 119.450484 93.223706) (xy 119.478078 93.314676) (xy 119.522892 93.398515)
(xy 119.559464 93.443078) (xy 119.5832 93.472001) (xy 119.601613 93.487112) (xy 120.584088 94.469587) (xy 120.599199 94.488001)
(xy 120.672685 94.548309) (xy 120.691738 94.558493) (xy 120.756523 94.593122) (xy 120.847493 94.620717) (xy 120.9421 94.630035)
(xy 120.965807 94.6277) (xy 138.190395 94.6277) (xy 138.2141 94.630035) (xy 138.237805 94.6277) (xy 138.237807 94.6277)
(xy 138.308706 94.620717) (xy 138.399677 94.593122) (xy 138.483515 94.548309) (xy 138.557001 94.488001) (xy 138.572117 94.469582)
(xy 138.747501 94.294198) (xy 138.7475 97.879626) (xy 138.720043 97.789111) (xy 138.618625 97.599371) (xy 138.482138 97.433062)
(xy 138.315829 97.296575) (xy 138.126089 97.195157) (xy 137.920209 97.132704) (xy 137.7061 97.111616) (xy 137.491992 97.132704)
(xy 137.286112 97.195157) (xy 137.096372 97.296575) (xy 136.930063 97.433062) (xy 136.793576 97.599371) (xy 136.692158 97.789111)
(xy 136.629704 97.994991) (xy 136.6139 98.155451) (xy 136.6139 99.786748) (xy 136.629704 99.947208) (xy 136.692157 100.153088)
(xy 136.793575 100.342829) (xy 136.930062 100.509138) (xy 137.096371 100.645625) (xy 137.286111 100.747043) (xy 137.491991 100.809496)
(xy 137.7061 100.830584) (xy 137.920208 100.809496) (xy 138.126088 100.747043) (xy 138.315829 100.645625) (xy 138.482138 100.509138)
(xy 138.618625 100.342829) (xy 138.720043 100.153089) (xy 138.7475 100.062575) (xy 138.7475 101.311201) (xy 125.314201 114.7445)
(xy 122.665999 114.7445) (xy 121.4247 113.503201) (xy 121.4247 113.27207) (xy 121.574223 113.27207) (xy 121.58731 113.339444)
(xy 121.689718 113.582518) (xy 121.837579 113.800943) (xy 122.025212 113.986324) (xy 122.245405 114.131538) (xy 122.489697 114.231004)
(xy 122.7487 114.2809) (xy 123.6123 114.2809) (xy 123.6123 113.0649) (xy 123.8599 113.0649) (xy 123.8599 114.2809)
(xy 124.7235 114.2809) (xy 124.982503 114.231004) (xy 125.226795 114.131538) (xy 125.446988 113.986324) (xy 125.634621 113.800943)
(xy 125.782482 113.582518) (xy 125.88489 113.339444) (xy 125.897977 113.27207) (xy 125.814156 113.0649) (xy 123.8599 113.0649)
(xy 123.6123 113.0649) (xy 121.658044 113.0649) (xy 121.574223 113.27207) (xy 121.4247 113.27207) (xy 121.4247 112.61013)
(xy 121.574223 112.61013) (xy 121.658044 112.8173) (xy 123.6123 112.8173) (xy 123.6123 111.6013) (xy 123.8599 111.6013)
(xy 123.8599 112.8173) (xy 125.814156 112.8173) (xy 125.897977 112.61013) (xy 125.88489 112.542756) (xy 125.782482 112.299682)
(xy 125.634621 112.081257) (xy 125.446988 111.895876) (xy 125.226795 111.750662) (xy 124.982503 111.651196) (xy 124.7235 111.6013)
(xy 123.8599 111.6013) (xy 123.6123 111.6013) (xy 122.7487 111.6013) (xy 122.489697 111.651196) (xy 122.245405 111.750662)
(xy 122.025212 111.895876) (xy 121.837579 112.081257) (xy 121.689718 112.299682) (xy 121.58731 112.542756) (xy 121.574223 112.61013)
(xy 121.4247 112.61013) (xy 121.4247 109.076999) (xy 121.919742 108.581958) (xy 122.024272 108.709328) (xy 122.206051 108.858511)
(xy 122.413442 108.969364) (xy 122.638474 109.037626) (xy 122.813856 109.0549) (xy 124.658344 109.0549) (xy 124.833726 109.037626)
(xy 125.058758 108.969364) (xy 125.266149 108.858511) (xy 125.447928 108.709328) (xy 125.5395 108.597748) (xy 125.5395 109.4392)
(xy 125.43579 109.54291) (xy 125.266149 109.403689) (xy 125.058758 109.292836) (xy 124.833726 109.224574) (xy 124.658344 109.2073)
(xy 122.813856 109.2073) (xy 122.638474 109.224574) (xy 122.413442 109.292836) (xy 122.206051 109.403689) (xy 122.024272 109.552872)
(xy 121.875089 109.734651) (xy 121.764236 109.942042) (xy 121.695974 110.167074) (xy 121.672924 110.4011) (xy 121.695974 110.635126)
(xy 121.764236 110.860158) (xy 121.875089 111.067549) (xy 122.024272 111.249328) (xy 122.206051 111.398511) (xy 122.413442 111.509364)
(xy 122.638474 111.577626) (xy 122.813856 111.5949) (xy 124.658344 111.5949) (xy 124.833726 111.577626) (xy 125.058758 111.509364)
(xy 125.266149 111.398511) (xy 125.447928 111.249328) (xy 125.597111 111.067549) (xy 125.707964 110.860158) (xy 125.776226 110.635126)
(xy 125.783617 110.560082) (xy 126.264944 110.078756) (xy 126.2364 110.222257) (xy 126.2364 110.499943) (xy 126.290574 110.772294)
(xy 126.39684 111.028843) (xy 126.551114 111.259731) (xy 126.747469 111.456086) (xy 126.978357 111.61036) (xy 127.234906 111.716626)
(xy 127.507257 111.7708) (xy 127.784943 111.7708) (xy 128.057294 111.716626) (xy 128.313843 111.61036) (xy 128.544731 111.456086)
(xy 128.741086 111.259731) (xy 128.89536 111.028843) (xy 129.001626 110.772294) (xy 129.0558 110.499943) (xy 129.0558 110.222257)
(xy 129.001626 109.949906) (xy 128.89536 109.693357) (xy 128.741086 109.462469) (xy 128.544731 109.266114) (xy 128.313843 109.11184)
(xy 128.057294 109.005574) (xy 127.784943 108.9514) (xy 127.507257 108.9514) (xy 127.234906 109.005574) (xy 126.978357 109.11184)
(xy 126.747469 109.266114) (xy 126.551114 109.462469) (xy 126.5047 109.531933) (xy 126.5047 106.190267) (xy 126.551114 106.259731)
(xy 126.747469 106.456086) (xy 126.978357 106.61036) (xy 127.234906 106.716626) (xy 127.507257 106.7708) (xy 127.784943 106.7708)
(xy 128.057294 106.716626) (xy 128.313843 106.61036) (xy 128.544731 106.456086) (xy 128.741086 106.259731) (xy 128.89536 106.028843)
(xy 129.001626 105.772294) (xy 129.0558 105.499943) (xy 129.0558 105.222257) (xy 129.001626 104.949906) (xy 128.89536 104.693357)
(xy 128.741086 104.462469) (xy 128.544731 104.266114) (xy 128.313843 104.11184) (xy 128.057294 104.005574) (xy 127.784943 103.9514)
(xy 127.507257 103.9514) (xy 127.234906 104.005574) (xy 126.978357 104.11184) (xy 126.747469 104.266114) (xy 126.551114 104.462469)
(xy 126.5047 104.531933) (xy 126.5047 104.250999) (xy 126.984 103.7717) (xy 131.586395 103.7717) (xy 131.6101 103.774035)
(xy 131.633805 103.7717) (xy 131.633807 103.7717) (xy 131.704706 103.764717) (xy 131.795677 103.737122) (xy 131.879515 103.692309)
(xy 131.953001 103.632001) (xy 131.968117 103.613582) (xy 132.622969 102.95873) (xy 132.617019 102.973095) (xy 132.5659 103.230087)
(xy 132.5659 103.492113) (xy 132.617019 103.749105) (xy 132.717292 103.991186) (xy 132.862866 104.209053) (xy 133.048147 104.394334)
(xy 133.266014 104.539908) (xy 133.508095 104.640181) (xy 133.765087 104.6913) (xy 134.027113 104.6913) (xy 134.284105 104.640181)
(xy 134.526186 104.539908) (xy 134.744053 104.394334) (xy 134.929334 104.209053) (xy 135.074908 103.991186) (xy 135.175181 103.749105)
(xy 135.2263 103.492113) (xy 135.2263 103.230087) (xy 135.175181 102.973095) (xy 135.074908 102.731014) (xy 134.929334 102.513147)
(xy 134.744053 102.327866) (xy 134.526186 102.182292) (xy 134.284105 102.082019) (xy 134.027113 102.0309) (xy 133.765087 102.0309)
(xy 133.508095 102.082019) (xy 133.49373 102.087969) (xy 134.220582 101.361117) (xy 134.239001 101.346001) (xy 134.299309 101.272515)
(xy 134.344122 101.188677) (xy 134.371717 101.097706) (xy 134.3787 101.026807) (xy 134.3787 101.026806) (xy 134.381035 101.003101)
(xy 134.3787 100.979396) (xy 134.3787 100.495293) (xy 134.390062 100.509138) (xy 134.556371 100.645625) (xy 134.746111 100.747043)
(xy 134.951991 100.809496) (xy 135.1661 100.830584) (xy 135.380208 100.809496) (xy 135.586088 100.747043) (xy 135.775829 100.645625)
(xy 135.942138 100.509138) (xy 136.078625 100.342829) (xy 136.180043 100.153089) (xy 136.242496 99.947209) (xy 136.2583 99.786749)
(xy 136.2583 98.155451) (xy 136.242496 97.994991) (xy 136.180043 97.789111) (xy 136.078625 97.599371) (xy 135.942138 97.433062)
(xy 135.775829 97.296575) (xy 135.6487 97.228623) (xy 135.6487 97.216807) (xy 135.651035 97.1931) (xy 135.641717 97.098493)
(xy 135.614122 97.007523) (xy 135.609608 96.999078) (xy 135.569309 96.923685) (xy 135.509001 96.850199) (xy 135.490587 96.835088)
(xy 134.508117 95.852618) (xy 134.493001 95.834199) (xy 134.419515 95.773891) (xy 134.335677 95.729078) (xy 134.244706 95.701483)
(xy 134.173807 95.6945) (xy 134.173805 95.6945) (xy 134.1501 95.692165) (xy 134.126395 95.6945) (xy 120.711807 95.6945)
(xy 120.6881 95.692165) (xy 120.593493 95.701483) (xy 120.506486 95.727876) (xy 120.502523 95.729078) (xy 120.418685 95.773891)
(xy 120.345199 95.834199) (xy 120.330087 95.852613) (xy 119.601614 96.581087) (xy 119.5832 96.596199) (xy 119.568089 96.614612)
(xy 119.568087 96.614614) (xy 119.522892 96.669685) (xy 119.478078 96.753524) (xy 119.450484 96.844494) (xy 119.441165 96.9391)
(xy 119.443501 96.962815) (xy 119.443501 97.228623) (xy 119.316372 97.296575) (xy 119.150063 97.433062) (xy 119.013576 97.599371)
(xy 118.912158 97.789111) (xy 118.849704 97.994991) (xy 118.8339 98.155451) (xy 118.8339 98.4885) (xy 118.368389 98.4885)
(xy 118.353995 98.453749) (xy 118.234467 98.274863) (xy 118.082337 98.122733) (xy 117.903451 98.003205) (xy 117.704683 97.920872)
(xy 117.493672 97.8789) (xy 117.278528 97.8789) (xy 117.067517 97.920872) (xy 116.868749 98.003205) (xy 116.689863 98.122733)
(xy 116.537733 98.274863) (xy 116.418205 98.453749) (xy 116.335872 98.652517) (xy 116.2939 98.863528) (xy 116.2939 99.078672)
(xy 116.335872 99.289683) (xy 116.418205 99.488451) (xy 116.537733 99.667337) (xy 116.689863 99.819467) (xy 116.868749 99.938995)
(xy 117.067517 100.021328) (xy 117.278528 100.0633) (xy 117.493672 100.0633) (xy 117.704683 100.021328) (xy 117.903451 99.938995)
(xy 118.082337 99.819467) (xy 118.234467 99.667337) (xy 118.353995 99.488451) (xy 118.368389 99.4537) (xy 118.8339 99.4537)
(xy 118.8339 99.786748) (xy 118.849704 99.947208) (xy 118.912157 100.153088) (xy 119.013575 100.342829) (xy 119.150062 100.509138)
(xy 119.316371 100.645625) (xy 119.4435 100.713577) (xy 119.443501 101.487384) (xy 119.4435 101.487394) (xy 119.443501 114.187385)
(xy 119.441165 114.2111) (xy 119.450484 114.305706) (xy 119.478078 114.396676) (xy 119.496357 114.430872) (xy 119.522892 114.480515)
(xy 119.5832 114.554001) (xy 119.601613 114.569112) (xy 120.7135 115.680999) (xy 120.713501 121.6025) (xy 120.219049 121.6025)
(xy 120.23264 121.577073) (xy 120.251522 121.51483) (xy 120.257897 121.4501) (xy 120.257897 119.6721) (xy 120.251522 119.60737)
(xy 120.23264 119.545127) (xy 120.201979 119.487763) (xy 120.160716 119.437484) (xy 120.110437 119.396221) (xy 120.053073 119.36556)
(xy 119.99083 119.346678) (xy 119.9261 119.340303) (xy 117.3861 119.340303) (xy 117.32137 119.346678) (xy 117.259127 119.36556)
(xy 117.201763 119.396221) (xy 117.151484 119.437484) (xy 117.110221 119.487763) (xy 117.07956 119.545127) (xy 117.060678 119.60737)
(xy 117.054303 119.6721) (xy 117.054303 120.054804) (xy 116.0907 119.091201) (xy 116.0907 97.309404) (xy 116.682876 97.309404)
(xy 116.758569 97.505443) (xy 116.980221 97.607225) (xy 117.217471 97.663809) (xy 117.4612 97.673021) (xy 117.702044 97.634507)
(xy 117.930746 97.549746) (xy 118.013631 97.505443) (xy 118.089324 97.309404) (xy 117.3861 96.60618) (xy 116.682876 97.309404)
(xy 116.0907 97.309404) (xy 116.0907 96.5062) (xy 116.144179 96.5062) (xy 116.182693 96.747044) (xy 116.267454 96.975746)
(xy 116.311757 97.058631) (xy 116.507796 97.134324) (xy 117.21102 96.4311) (xy 117.56118 96.4311) (xy 118.264404 97.134324)
(xy 118.460443 97.058631) (xy 118.562225 96.836979) (xy 118.618809 96.599729) (xy 118.628021 96.356) (xy 118.589507 96.115156)
(xy 118.504746 95.886454) (xy 118.460443 95.803569) (xy 118.264404 95.727876) (xy 117.56118 96.4311) (xy 117.21102 96.4311)
(xy 116.507796 95.727876) (xy 116.311757 95.803569) (xy 116.209975 96.025221) (xy 116.153391 96.262471) (xy 116.144179 96.5062)
(xy 116.0907 96.5062) (xy 116.0907 95.552796) (xy 116.682876 95.552796) (xy 117.3861 96.25602) (xy 118.089324 95.552796)
(xy 118.013631 95.356757) (xy 117.791979 95.254975) (xy 117.554729 95.198391) (xy 117.311 95.189179) (xy 117.070156 95.227693)
(xy 116.841454 95.312454) (xy 116.758569 95.356757) (xy 116.682876 95.552796) (xy 116.0907 95.552796) (xy 116.0907 91.804999)
(xy 118.980588 88.915112) (xy 118.999001 88.900001) (xy 119.059309 88.826515) (xy 119.104122 88.742677) (xy 119.131717 88.651706)
(xy 119.134057 88.627953) (xy 119.141035 88.5571) (xy 119.1387 88.533393) (xy 119.1387 88.032848) (xy 119.259652 88.132111)
(xy 119.467043 88.242964) (xy 119.692075 88.311226) (xy 119.9261 88.334276) (xy 120.160126 88.311226) (xy 120.385158 88.242964)
(xy 120.592549 88.132111) (xy 120.774328 87.982928) (xy 120.923511 87.801149) (xy 121.034364 87.593758) (xy 121.102626 87.368726)
(xy 121.1199 87.193344) (xy 121.1199 85.348856) (xy 121.102626 85.173474) (xy 121.034364 84.948442) (xy 120.923511 84.741051)
(xy 120.907302 84.7213) (xy 121.484899 84.7213)
)
)
(filled_polygon
(pts
(xy 156.431613 94.249113) (xy 156.431619 94.249118) (xy 156.990267 94.807766) (xy 156.975872 94.842517) (xy 156.9339 95.053528)
(xy 156.9339 95.268672) (xy 156.975872 95.479683) (xy 157.058205 95.678451) (xy 157.177733 95.857337) (xy 157.268896 95.9485)
(xy 156.955999 95.9485) (xy 156.860117 95.852619) (xy 156.845001 95.834199) (xy 156.771515 95.773891) (xy 156.687677 95.729078)
(xy 156.596706 95.701483) (xy 156.525807 95.6945) (xy 156.525805 95.6945) (xy 156.5021 95.692165) (xy 156.478395 95.6945)
(xy 149.844 95.6945) (xy 147.941757 93.792257) (xy 152.7064 93.792257) (xy 152.7064 94.069943) (xy 152.760574 94.342294)
(xy 152.86684 94.598843) (xy 153.021114 94.829731) (xy 153.217469 95.026086) (xy 153.448357 95.18036) (xy 153.704906 95.286626)
(xy 153.977257 95.3408) (xy 154.254943 95.3408) (xy 154.527294 95.286626) (xy 154.783843 95.18036) (xy 155.014731 95.026086)
(xy 155.211086 94.829731) (xy 155.36536 94.598843) (xy 155.471626 94.342294) (xy 155.5258 94.069943) (xy 155.5258 93.792257)
(xy 155.471626 93.519906) (xy 155.36536 93.263357) (xy 155.211086 93.032469) (xy 155.014731 92.836114) (xy 154.783843 92.68184)
(xy 154.527294 92.575574) (xy 154.254943 92.5214) (xy 153.977257 92.5214) (xy 153.704906 92.575574) (xy 153.448357 92.68184)
(xy 153.217469 92.836114) (xy 153.021114 93.032469) (xy 152.86684 93.263357) (xy 152.760574 93.519906) (xy 152.7064 93.792257)
(xy 147.941757 93.792257) (xy 147.275949 93.126449) (xy 147.478095 93.210181) (xy 147.735087 93.2613) (xy 147.997113 93.2613)
(xy 148.254105 93.210181) (xy 148.496186 93.109908) (xy 148.714053 92.964334) (xy 148.899334 92.779053) (xy 149.044908 92.561186)
(xy 149.145181 92.319105) (xy 149.1963 92.062113) (xy 149.1963 91.800087) (xy 149.145181 91.543095) (xy 149.044908 91.301014)
(xy 148.899334 91.083147) (xy 148.714053 90.897866) (xy 148.496186 90.752292) (xy 148.254105 90.652019) (xy 147.997113 90.6009)
(xy 147.735087 90.6009) (xy 147.478095 90.652019) (xy 147.236014 90.752292) (xy 147.018147 90.897866) (xy 146.832866 91.083147)
(xy 146.687292 91.301014) (xy 146.587019 91.543095) (xy 146.5359 91.800087) (xy 146.5359 92.062113) (xy 146.587019 92.319105)
(xy 146.670751 92.521251) (xy 146.192117 92.042618) (xy 146.177001 92.024199) (xy 146.103515 91.963891) (xy 146.019677 91.919078)
(xy 145.928706 91.891483) (xy 145.857807 91.8845) (xy 145.857805 91.8845) (xy 145.8341 91.882165) (xy 145.810395 91.8845)
(xy 141.1572 91.8845) (xy 141.208 91.8337) (xy 144.794395 91.8337) (xy 144.8181 91.836035) (xy 144.841805 91.8337)
(xy 144.841807 91.8337) (xy 144.912706 91.826717) (xy 145.003677 91.799122) (xy 145.087515 91.754309) (xy 145.161001 91.694001)
(xy 145.176117 91.675582) (xy 146.541999 90.3097) (xy 152.492201 90.3097)
)
)
(filled_polygon
(pts
(xy 144.477873 87.982928) (xy 144.659652 88.132111) (xy 144.867043 88.242964) (xy 145.092075 88.311226) (xy 145.3261 88.334276)
(xy 145.419551 88.325072) (xy 143.866723 89.8779) (xy 141.03055 89.8779) (xy 141.0081 89.875689) (xy 140.98565 89.8779)
(xy 140.98564 89.8779) (xy 140.918473 89.884515) (xy 140.832291 89.910659) (xy 140.752864 89.953113) (xy 140.683247 90.010247)
(xy 140.66893 90.027692) (xy 138.9443 91.752323) (xy 138.9443 91.4749) (xy 137.8299 91.4749) (xy 137.8299 91.4949)
(xy 137.5823 91.4949) (xy 137.5823 91.4749) (xy 136.4679 91.4749) (xy 136.4679 92.2369) (xy 136.515844 92.476082)
(xy 136.609529 92.701315) (xy 136.745354 92.903943) (xy 136.767376 92.9259) (xy 135.897344 92.9259) (xy 135.942138 92.889138)
(xy 136.078625 92.722829) (xy 136.180043 92.533089) (xy 136.242496 92.327209) (xy 136.2583 92.166749) (xy 136.2583 90.535451)
(xy 136.242496 90.374991) (xy 136.180043 90.169111) (xy 136.078625 89.979371) (xy 135.942138 89.813062) (xy 135.897344 89.7763)
(xy 136.767376 89.7763) (xy 136.745354 89.798257) (xy 136.609529 90.000885) (xy 136.515844 90.226118) (xy 136.4679 90.4653)
(xy 136.4679 91.2273) (xy 137.5823 91.2273) (xy 137.5823 91.2073) (xy 137.8299 91.2073) (xy 137.8299 91.2273)
(xy 138.9443 91.2273) (xy 138.9443 90.4653) (xy 138.896356 90.226118) (xy 138.802671 90.000885) (xy 138.666846 89.798257)
(xy 138.644824 89.7763) (xy 142.50965 89.7763) (xy 142.5321 89.778511) (xy 142.55455 89.7763) (xy 142.55456 89.7763)
(xy 142.621727 89.769685) (xy 142.707909 89.743541) (xy 142.787336 89.701087) (xy 142.856953 89.643953) (xy 142.871274 89.626503)
(xy 144.363508 88.13427) (xy 144.380953 88.119953) (xy 144.39527 88.102508) (xy 144.438087 88.050337) (xy 144.470806 87.989122)
(xy 144.475598 87.980156)
)
)
)
)
| KiCad | 4 | CapnBry/HeaterMeter | eagle/LCD/HeaterMeterLCD.kicad_pcb | [
"MIT"
] |
:- object(o).
:- set_logtalk_flag(complements, allow).
:- public(p/1).
p(0).
:- end_object.
| Logtalk | 2 | PaulBrownMagic/logtalk3 | examples/family/bug/o.lgt | [
"Apache-2.0"
] |
CREATE TABLE `tb_ksdkiecjjm` (
`col_eqodwasblm` bigint(208) unsigned zerofill NOT NULL,
CONSTRAINT PRIMARY KEY (`col_eqodwasblm`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE `tb_xcvebnzbai` (
`col_jryfwjfxlz` longtext CHARACTER SET utf8,
`col_hqfwhngyto` int(204) zerofill,
`col_wctviwncxg` float(48)
) DEFAULT CHARSET=utf8;
CREATE TABLE `tb_brasazpupt` (
`col_geysucimbc` longtext CHARACTER SET latin1,
`col_mlphdouenl` varbinary(160) DEFAULT '\0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE `tb_eyobhjyopy` (
`col_weucftcgtj` decimal(17,13),
`col_fsnwamzmnj` varchar(116) CHARACTER SET utf8 COLLATE utf8_unicode_ci
) DEFAULT CHARSET=utf8;
CREATE TABLE `tb_yqtxnjayvs` LIKE `tb_eyobhjyopy`;
RENAME TABLE `tb_yqtxnjayvs` TO `tb_yynypoqbpb`, `tb_ksdkiecjjm` TO `tb_cwvwctfcqf`;
RENAME TABLE `tb_yynypoqbpb` TO `tb_qptegarzpr`;
RENAME TABLE `tb_qptegarzpr` TO `tb_xdckscvkrn`, `tb_cwvwctfcqf` TO `tb_rrtqtkgxpm`;
RENAME TABLE `tb_eyobhjyopy` TO `tb_ojowyuvyle`, `tb_brasazpupt` TO `tb_xadmpevzmv`;
RENAME TABLE `tb_xdckscvkrn` TO `tb_xipkollcey`, `tb_xadmpevzmv` TO `tb_xlcxrncdua`;
RENAME TABLE `tb_xlcxrncdua` TO `tb_vjudeyawut`, `tb_ojowyuvyle` TO `tb_asbrvloeex`;
DROP TABLE tb_xipkollcey, tb_xcvebnzbai;
DROP TABLE tb_rrtqtkgxpm;
CREATE TABLE `tb_ksdkiecjjm` (
`col_eqodwasblm` bigint(208) unsigned zerofill NOT NULL,
CONSTRAINT PRIMARY KEY (`col_eqodwasblm`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE `tb_xcvebnzbai` (
`col_jryfwjfxlz` longtext CHARACTER SET utf8,
`col_hqfwhngyto` int(204) zerofill,
`col_wctviwncxg` float(48)
) DEFAULT CHARSET=utf8;
CREATE TABLE `tb_brasazpupt` (
`col_geysucimbc` longtext CHARACTER SET latin1,
`col_mlphdouenl` varbinary(160) DEFAULT '\0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE `tb_eyobhjyopy` (
`col_weucftcgtj` decimal(17,13),
`col_fsnwamzmnj` varchar(116) CHARACTER SET utf8 COLLATE utf8_unicode_ci
) DEFAULT CHARSET=utf8;
CREATE TABLE `tb_yqtxnjayvs` LIKE `tb_eyobhjyopy`;
RENAME TABLE `tb_yqtxnjayvs` TO `tb_yynypoqbpb`, `tb_ksdkiecjjm` TO `tb_cwvwctfcqf`;
RENAME TABLE `tb_yynypoqbpb` TO `tb_qptegarzpr`;
RENAME TABLE `tb_qptegarzpr` TO `tb_xdckscvkrn`, `tb_cwvwctfcqf` TO `tb_rrtqtkgxpm`;
RENAME TABLE `tb_eyobhjyopy` TO `tb_ojowyuvyle`, `tb_brasazpupt` TO `tb_xadmpevzmv`;
RENAME TABLE `tb_xdckscvkrn` TO `tb_xipkollcey`, `tb_xadmpevzmv` TO `tb_xlcxrncdua`;
RENAME TABLE `tb_xlcxrncdua` TO `tb_vjudeyawut`, `tb_ojowyuvyle` TO `tb_asbrvloeex`;
DROP TABLE tb_xipkollcey, tb_xcvebnzbai;
DROP TABLE tb_rrtqtkgxpm;
| SQL | 2 | yuanweikang2020/canal | parse/src/test/resources/ddl/table/test_33.sql | [
"Apache-2.0"
] |
#lang scribble/manual
@(require scribble/eval (for-label pollen/unstable/pygments pollen/decode plot pollen/setup pollen/tag racket/base pollen/template txexpr racket/list racket/string))
@(require "mb-tools.rkt")
@(define my-eval (make-base-eval))
@(my-eval `(require pollen pollen/decode pollen/template pollen/tag xml racket/list txexpr))
@title[#:tag "programming-pollen"]{Programming Pollen}
Core techniques for getting Pollen to do your bidding.
I'll assume you're familiar with the workings of Racket generally and Pollen in particular, especially @secref["pollen-command-syntax"].
Experienced programmers, you will find this an easy read.
Inexperienced programmers, you might find some parts a trudge, but keep going. Learning the material on this page will pay hefty dividends for as long as you use Pollen.
@section{Tag functions}
The @seclink["third-tutorial"]{third tutorial} introduced you to the idea that @secref["tags-are-functions"]. Let's recap the golden rules of tag functions that were first covered there:
@itemlist[#:style 'ordered
@item{Every Pollen tag calls a function with the same name.}
@item{The input values for that function are the attributes and elements of the tag.}
@item{The whole tag — tag name, attributes, and elements — is replaced with the return value of the called function.}
]
@subsection{Tag-function syntax}
To be safe, let's review what we mean by @italic{tag}, @italic{attributes}, and @italic{elements}, in Pollen-mode syntax:
@codeblock[#:keep-lang-line? #f]{
#lang pollen
A tag alone: ◊get-author-name[]
A tag with elements: Adding ◊em{emphasis to words}.
A tag with attributes and elements:
◊div['((attr1 "val1")(attr2 "val2"))]{My nice div.}
A tag with attributes and elements (alternate syntax):
◊div[#:attr1 "val1" #:attr2 "val2"]{My nice div.}
}
Let's also recall that these commands can be written in Racket mode equivalently:
@codeblock[#:keep-lang-line? #f]{
#lang pollen
A tag alone: ◊(get-author-name)
A tag with elements: Adding ◊(em "emphasis to words").
A tag with attributes and elements:
◊(div '((attr1 "val1")(attr2 "val2")) "My nice div.")
}
Let's also remember that a tag without attributes or elements is interpreted as a value. If that's what you want — for instance, when you @racket[define] a tag to hold a value — then great. But if you @racket[define] a tag as a function, you need to add square brackets to signal that you want to evaluate the function:
@codeblock[#:keep-lang-line? #f]{
#lang pollen
◊(define author-name "Brennan Huff") ; a tag holding a value
◊(define (get-author-name) "Dale Doback") ; a tag function returning a value
To refer to the value held by a tag name:
◊author-name or ◊|author-name|
If a tag name represents a function, you need to add square brackets
to invoke the function: ◊get-author-name[]
This refers to the function as a value (not usually what you want):
◊get-author-name}
@subsection{Point of no @code{return}} If you've written functions in other programming languages, you might be accustomed to using a @code{return} statement to send a value back from the function. This doesn't exist in Pollen or Racket — the return value of any function is just the last expression evaluated. In the example below, @code{"BAP"} becomes the return value because it's in the last position, and @code{"BOOM"} is ignored:
@fileblock["article.html.pm" @codeblock{
#lang pollen
◊(define (strong word) "BOOM" "BAP")
I want to attend ◊em{RacketCon ◊strong{this} year}.}]
Yielding:
@repl-output{'(root "I want to attend " (em "RacketCon " "BAP" " year") ".")}
@subsection{Multiple input values & rest arguments} Sometimes a tag will have only one word or string that becomes its input. More likely, however, it will have multiple values (this is inevitable with nested tags, because the results aren't concatenated). For instance, if we attach our function to @racket[em] rather than @racket[strong]:
@fileblock["article.html.pm" @codeblock{
#lang pollen
◊(define (em word) "BOOM")
I want to attend ◊em{RacketCon ◊strong{this} year}.}]
Look what happens:
@errorblock{
em: arity mismatch;
the expected number of arguments does not match the given number
expected: 1
given: 3
}
The error arises because the @racket[em] function is getting three arguments — @code{"RacketCon " '(strong "this") " year"} — but has been defined to only accept one argument, @racket[word]. This is the ``arity mismatch.''
To fix this, it's better to get in the habit of writing tag functions that accept an indefinite number of input values. You do this by defining your function with a @italic{@seclink["contracts-rest-args" #:doc '(lib "scribblings/guide/guide.scrbl")]{rest argument}} (as in, ``give me the rest of the input values.'') To use a rest argument, put it last in your list of input arguments, and add a period @litchar{.} before:
@fileblock["article.html.pm" @codeblock{
#lang pollen
◊(define (em . parts) "BOOM")
I want to attend ◊em{RacketCon ◊strong{this} year}.}]
This time, the source file will run without an error, producing this:
@repl-output{'(root "I want to attend " "BOOM" ".")}
A rest argument like @racket[parts] is a @racket[list] of individual arguments. So if you want to unpack & process these arguments separately, you can use Racket's extensive list-processing functions (see @secref["pairs" #:doc '(lib "scribblings/guide/guide.scrbl")]). Also see @racket[quasiquote] below.
@subsection{Returning an X-expression} Often, you won't use a tag function to replace a whole tag with a string — you'll replace it with a different tag, described by an X-expression, like so:
@fileblock["article.html.pm" @codeblock{
#lang pollen
◊(define (em . parts) '(big "BOOM"))
I want to attend ◊em{RacketCon ◊strong{this} year}.}]
Which produces:
@repl-output{'(root "I want to attend " (big "BOOM") ".")}
The @racket[quote] mark @litchar{'} before the X-expression signals to Racket that you want to use what follows as a literal value.
To build X-expressions that are more elaborate, you have two options.
First is @racket[quasiquote]. Quasiquote works like quote, but starts with a backtick character @litchar{`}. What makes it ``quasi'' is that you can insert variables using the @racket[unquote] operator, which is a comma @litchar{,} or merge a list of values with the @racket[unquote-splicing] operator, which is a comma followed by an @"@" sign @litchar{,@"@"}.
Let's adapt the example above to use @racket[quasiquote]. Suppose we want to take the @racket[parts] we get as input and put them inside a @racket[big] tag. This is easy to notate with @racket[quasiquote] and the @racket[unquote-splicing] operator, because @racket[parts] is a list:
@fileblock["article.html.pm" @codeblock{
#lang pollen
◊(define (em . parts) `(big ,@"@"parts))
I want to attend ◊em{RacketCon ◊strong{this} year}.}]
Which produces this:
@repl-output{'(root "I want to attend " (big "RacketCon " (strong "this") " year") ".")}
Of course you can also nest X-expressions in your return value:
@fileblock["article.html.pm" @codeblock{
#lang pollen
◊(define (em . parts) `(extra (big ,@"@"parts)))
I want to attend ◊em{RacketCon ◊strong{this} year}.}]
The second option for building X-expressions is to use the @other-doc['(lib "txexpr/scribblings/txexpr.scrbl")] library that's included with Pollen (see those docs for more information).
@subsection{Using variables within strings} The usual way is to use the @racket[format] function:
@racket[(format "String with variable: ~a" variable-name)]
See the docs for @racket[format] and @racket[fprintf] for your options.
Be careful if you're working with integers and X-expressions — a raw integer is treated as a character code, not an integer string. Using @racket[format] is essential:
@examples[#:eval my-eval
(->html '(div "A raw integer indicates a character code: " 42))
(->html `(div "Use format to make it a string: " ,(format "~a" 42)))
]
@subsection{Parsing attributes}
Detecting attributes in an argument list can be tricky because a) the tag may or may not have attributes, b) those attributes may be in standard or abbreviated syntax. For this reason, Pollen provides a @racket[define-tag-function] macro (in the @racket[pollen/tag] library) that you can use in custom tag functions to separate the attributes and elements:
@fileblock["article.html.pm" @codeblock{
#lang pollen
◊(require pollen/tag)
◊(define-tag-function (em attributes elements)
`(extra ,attributes (big ,@"@"elements)))
I want to attend ◊em[#:key "value"]{RacketCon}.}]
This will move the @racket[elements] inside the @racket[big] tag, and attach the @racket[attributes] to the @racket[extra] tag:
@repl-output{'(root "I want to attend " (extra ((key "value")) (big "RacketCon")) ".")}
| Racket | 5 | otherjoel/pollen | pollen/scribblings/programming-pollen.scrbl | [
"MIT"
] |
.foo {
color: rgb(255, 0, 153);
color: rgb(100%, 0%, 60%);
color: rgba(51, 170, 51, 0.1);
color: hsl(.75turn, 60%, 70%);
color: hsl(270 60% 50% / .15);
color: hsla(240, 100%, 50%, .05)
}
| CSS | 2 | fuelingtheweb/prettier | tests/css_color/functional-syntax.css | [
"MIT"
] |
defmodule Mix.Tasks.Phx.Digest.CleanTest do
use ExUnit.Case
test "fails when the given paths are invalid" do
Mix.Tasks.Phx.Digest.Clean.run(["--output", "invalid_path"])
assert_received {:mix_shell, :error, ["The output path \"invalid_path\" does not exist"]}
end
test "removes old versions", config do
output_path = Path.join("tmp", to_string(config.test))
input_path = "priv/static"
:ok = File.mkdir_p!(output_path)
Mix.Tasks.Phx.Digest.Clean.run([input_path, "-o", output_path])
msg = "Clean complete for \"#{output_path}\""
assert_received {:mix_shell, :info, [^msg]}
end
end
| Elixir | 4 | faheempatel/phoenix | test/mix/tasks/phx.digest.clean_test.exs | [
"MIT"
] |
import Head from 'next/head'
import styles from './layout.module.css'
export default function Layout({ children }) {
return (
<>
<Head>
<title>Layouts Example</title>
</Head>
<main className={styles.main}>{children}</main>
</>
)
}
| JavaScript | 4 | blomqma/next.js | examples/layout-component/components/layout.js | [
"MIT"
] |
import Foundation
public class SimpleSubclass: NSObject {}
| Swift | 1 | lwhsu/swift | test/Interpreter/SDK/Inputs/SimpleNSObjectSubclass.swift | [
"Apache-2.0"
] |
const std = @import("../../std.zig");
const windows = std.os.windows;
const BOOL = windows.BOOL;
const DWORD = windows.DWORD;
const WINAPI = windows.WINAPI;
const HDC = windows.HDC;
const HGLRC = windows.HGLRC;
const WORD = windows.WORD;
const BYTE = windows.BYTE;
pub const PIXELFORMATDESCRIPTOR = extern struct {
nSize: WORD = @sizeOf(PIXELFORMATDESCRIPTOR),
nVersion: WORD,
dwFlags: DWORD,
iPixelType: BYTE,
cColorBits: BYTE,
cRedBits: BYTE,
cRedShift: BYTE,
cGreenBits: BYTE,
cGreenShift: BYTE,
cBlueBits: BYTE,
cBlueShift: BYTE,
cAlphaBits: BYTE,
cAlphaShift: BYTE,
cAccumBits: BYTE,
cAccumRedBits: BYTE,
cAccumGreenBits: BYTE,
cAccumBlueBits: BYTE,
cAccumAlphaBits: BYTE,
cDepthBits: BYTE,
cStencilBits: BYTE,
cAuxBuffers: BYTE,
iLayerType: BYTE,
bReserved: BYTE,
dwLayerMask: DWORD,
dwVisibleMask: DWORD,
dwDamageMask: DWORD,
};
pub extern "gdi32" fn SetPixelFormat(
hdc: ?HDC,
format: i32,
ppfd: ?*const PIXELFORMATDESCRIPTOR,
) callconv(WINAPI) bool;
pub extern "gdi32" fn ChoosePixelFormat(
hdc: ?HDC,
ppfd: ?*const PIXELFORMATDESCRIPTOR,
) callconv(WINAPI) i32;
pub extern "gdi32" fn SwapBuffers(hdc: ?HDC) callconv(WINAPI) bool;
pub extern "gdi32" fn wglCreateContext(hdc: ?HDC) callconv(WINAPI) ?HGLRC;
pub extern "gdi32" fn wglMakeCurrent(hdc: ?HDC, hglrc: ?HGLRC) callconv(WINAPI) bool;
| Zig | 4 | lukekras/zig | lib/std/os/windows/gdi32.zig | [
"MIT"
] |
source "../tests/includes/init-tests.tcl"
source "../tests/includes/job-utils.tcl"
test "Jobs TTL is honoured" {
set start_time [clock milliseconds]
set id [D 0 addjob myqueue myjob 5000 replicate 3 ttl 5]
set job [D 0 show $id]
assert {$id ne {}}
# We just added the job, should be here in the requested amount of copies
# (or more).
assert {[count_job_copies $job {active queued}] >= 3}
# After some time the job is deleted from the cluster.
wait_for_condition {
[count_job_copies $job {active queued}] == 0
} else {
fail "Job with TTL is still active"
}
set end_time [clock milliseconds]
set elapsed [expr {$end_time-$start_time}]
# It too at least 4 seconds (to avoid timing errors) for the job to
# disappear.
assert {$elapsed >= 4000}
}
test "Jobs mass expire test" {
D 0 debug flushall
assert {[DI 0 registered_jobs] == 0}
set count 1000
for {set j 0} {$j < $count} {incr j} {
D 0 addjob myqueue job-$j 10000 ttl 5
}
assert {[DI 0 registered_jobs] == $count}
wait_for_condition {
[DI 0 registered_jobs] == 0
} else {
fail "Not every job expired after some time"
}
}
test "Queues are expired when system is OOM" {
D 0 debug flushall
# Create empty queues.
for {set j 0} {$j < 1000} {incr j} {
set qname [randomQueue]
D 0 addjob $qname myjob 5000 replicate 1 retry 0
D 0 GETJOB FROM $qname
}
assert {[DI 0 registered_queues] == 1000}
# Create an OOM condition.
D 0 CONFIG SET maxmemory 1
wait_for_condition {
[DI 0 registered_queues] == 0
} else {
fail "Not all queues are expired. Still in memory: [DI 0 registered_queues]"
}
# Fix the configuration back to default.
D 0 CONFIG SET maxmemory [expr 1024*1024*1024]
}
| Tcl | 4 | justincase/disque | tests/cluster/tests/04-ttl.tcl | [
"BSD-3-Clause"
] |
/* Copyright 2021 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.
==============================================================================*/
// This file declares kernel utils.
#ifndef TENSORFLOW_CORE_RUNTIME_FALLBACK_KERNEL_UTILS_H_
#define TENSORFLOW_CORE_RUNTIME_FALLBACK_KERNEL_UTILS_H_
#include <memory>
#include "absl/strings/match.h"
#include "absl/strings/string_view.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/Support/ErrorHandling.h"
#include "tensorflow/c/tf_tensor.h"
#include "tensorflow/core/common_runtime/device_mgr.h"
#include "tensorflow/core/common_runtime/eager/context.h"
#include "tensorflow/core/common_runtime/eager/eager_operation.h"
#include "tensorflow/core/common_runtime/eager/tensor_handle.h"
#include "tensorflow/core/framework/types.pb.h"
#include "tensorflow/core/platform/status.h"
#include "tfrt/core_runtime/core_runtime_op.h" // from @tf_runtime
#include "tfrt/dtype/dtype.h" // from @tf_runtime
#include "tfrt/host_context/execution_context.h" // from @tf_runtime
#include "tfrt/host_context/host_context.h" // from @tf_runtime
#include "tfrt/support/error_util.h" // from @tf_runtime
#include "tfrt/support/forward_decls.h" // from @tf_runtime
#include "tfrt/tensor/tensor_shape.h" // from @tf_runtime
namespace tensorflow {
namespace tfd {
template <typename T>
struct AutoReleaser {
void operator()(T* p) const { p->Release(); }
};
template <typename T>
using AutoReleasePtr = std::unique_ptr<T, AutoReleaser<T>>;
using OwnedEagerContext = AutoReleasePtr<EagerContext>;
using OwnedEagerOperation = AutoReleasePtr<EagerOperation>;
using OwnedTensorHandle = AutoReleasePtr<TensorHandle>;
using OwnedAbstractTensorInterface = AutoReleasePtr<AbstractTensorInterface>;
// Check if a TensorHandle physically resides on GPU.
inline bool IsGpuTensorHandle(const tensorflow::TensorHandle& handle) {
tensorflow::Status dummy_status;
// BackingDeviceName is where the tensor is physically located, not where the
// op that produces the tensor is.
// Note that dummy_status is never set in TensorHandle::BackingDeviceName.
absl::string_view device_name = handle.BackingDeviceName(&dummy_status);
return absl::StrContains(device_name, "GPU");
}
// TODO(zhangqiaorjc): Allowlist more dtypes as tfrt GPU supports more.
// RuntimeFallbackTensor of supported dtypes below will be eagerly converted to
// tfrt::DenseGpuTensor after each RuntimeFallbackOpHandler::Execute.
inline bool IsSupportedByTFRTGpu(DataType dtype) {
switch (dtype) {
default:
return false;
case DataType::DT_FLOAT:
case DataType::DT_DOUBLE:
case DataType::DT_INT32:
return true;
}
}
// TODO(b/165872892): Remove this method.
// This method is needed because we use different device name in TF-TFRT
// integration and mlir test. In TF-TFRT integration, we reuse the device full
// name (e.g. /job:localhost/replica:0/task:0/device:GPU:0) from TF. But in mlir
// test, we use simplified device name "GPU:0". And lot of things in fallback
// need to be used in both cases. As a result, we need to look up the device
// with both device names.
inline const char* ConvertTfDeviceNameToTfrtDefault(const char* device_name) {
assert(strlen(device_name) >= 5);
return &device_name[strlen(device_name) - 5];
}
// Create and initialize EagerContext.
tfrt::Expected<OwnedEagerContext> InitEagerContext();
tfrt::Expected<OwnedEagerContext> InitEagerContext(
DynamicDeviceMgr* device_mgr, const SessionOptions& session_opts,
ContextDevicePlacementPolicy default_device_placement_policy,
bool is_async);
// Obtain EagerContext from ExecutionContext.
tfrt::Expected<EagerContext*> GetEagerContext(tfrt::ExecutionContext exec_ctx);
// Return the CoreRuntimeOp for `op_name` using fallback op_handler.
llvm::Expected<tfrt::CoreRuntimeOp> GetFallbackOp(tfrt::string_view op_name,
tfrt::HostContext* host);
constexpr char kEagerContextResourceName[] = "EagerContextResourceName";
class EagerContextResource {
public:
explicit EagerContextResource()
: device_mgr_(std::make_unique<DynamicDeviceMgr>()),
ctx_{InitEagerContext(
device_mgr_.get(), tensorflow::SessionOptions(),
tensorflow::ContextDevicePlacementPolicy::DEVICE_PLACEMENT_SILENT,
/*is_async=*/false)} {}
explicit EagerContextResource(
const SessionOptions& session_opts,
ContextDevicePlacementPolicy default_device_placement_policy,
bool is_async)
: device_mgr_(std::make_unique<DynamicDeviceMgr>()),
ctx_{InitEagerContext(device_mgr_.get(), session_opts,
default_device_placement_policy, is_async)} {}
tfrt::Expected<EagerContext*> GetTFEagerContext() {
if (!ctx_) return ctx_.takeError();
return ctx_.get().get();
}
DynamicDeviceMgr* GetDeviceMgr() { return device_mgr_.get(); }
llvm::Error AddDevices(std::vector<std::unique_ptr<Device>> devices) {
if (!ctx_) return ctx_.takeError();
Status s = dynamic_cast<tensorflow::DynamicDeviceMgr*>(
ctx_.get()->local_device_mgr())
->AddDevices(std::move(devices));
if (!s.ok()) return tfrt::MakeStringError(s.error_message());
ctx_.get()->InitPrioritizedDeviceTypeList();
ctx_.get()->pflr()->InitializeDeviceAndFlr();
return llvm::Error::success();
}
private:
// EagerContext uses this device_mgs as local_device_mgr. We manage the
// device_mgr_ here to allow TFRT adding new devices after EagerContext
// initialization.
// Today, TFRT only adds TPU devices after EagerContext initialization.
std::unique_ptr<DynamicDeviceMgr> device_mgr_;
tfrt::Expected<OwnedEagerContext> ctx_;
};
} // namespace tfd
} // namespace tensorflow
#endif // TENSORFLOW_CORE_RUNTIME_FALLBACK_KERNEL_UTILS_H_
| C | 3 | EricRemmerswaal/tensorflow | tensorflow/core/runtime_fallback/runtime/kernel_utils.h | [
"Apache-2.0"
] |
$color: pink;
| SCSS | 0 | cwlsn/gatsby | examples/using-sass/src/styles/_variables.scss | [
"MIT"
] |
# Copyright (c) 2021 vesoft inc. All rights reserved.
#
# This source code is licensed under Apache 2.0 License.
Feature: test zero steps pattern
Examples:
| space_name |
| nba |
| nba_int_vid |
Background:
Given a graph with space named "<space_name>"
Scenario Outline: Test some boundary usages
When executing query:
"""
MATCH (v:player{name: 'Tim Duncan'})-[e:like*0]-()
RETURN e
"""
Then the result should be, in any order, with relax comparison:
| e |
| [] |
When executing query:
"""
MATCH (v:player{name: 'Tim Duncan'})-[e:like*0..0]-()
RETURN e
"""
Then the result should be, in any order, with relax comparison:
| e |
| [] |
When executing query:
"""
MATCH (v:player{name: 'Tim Duncan'})-[e:like*]-()
RETURN e
"""
Then a SemanticError should be raised at runtime: Cannot set maximum hop for variable length relationships
When executing query:
"""
MATCH (v:player{name: 'Tim Duncan'})-[e:like*0..0]-()-[e2:like*0..0]-()
RETURN e, e2
"""
Then the result should be, in any order, with relax comparison:
| e | e2 |
| [] | [] |
Scenario Outline: Test mix query of fixed and variable hops
When executing query:
"""
MATCH (:player{name: "Tim Duncan"})-[e1:like]->()-[e2:serve*0..3]->()<-[e3:serve]-(v)
RETURN count(v)
"""
Then the result should be, in any order, with relax comparison:
| count(v) |
| 40 |
Scenario Outline: Test return all variables
When executing query:
"""
MATCH (v:player{name: "abc"}) -[:serve*1..3]-> ()
RETURN *
"""
Then the result should be, in any order, with relax comparison:
| v |
When executing query:
"""
MATCH (v:player{name: "abc"}) -[:serve*..3]-> ()
RETURN *
"""
Then the result should be, in any order, with relax comparison:
| v |
When executing query:
"""
MATCH (v:player{name: "abc"}) -[:serve*1..]-> ()
RETURN *
"""
Then a SemanticError should be raised at runtime: Cannot set maximum hop for variable length relationships
Scenario Outline: Single edge with properties in both directions
When executing query:
"""
MATCH (:player{name:"Tracy McGrady"})-[e:serve*0..1{start_year: 2000}]-(v)
RETURN e, v
"""
Then the result should be, in any order, with relax comparison:
| e | v |
| [] | ('Tracy McGrady') |
| [[:serve 'Tracy McGrady'->'Magic']] | ('Magic') |
When executing query:
"""
MATCH (:player{name:"Tracy McGrady"})-[e:like*0..1{likeness: 90}]-(v)
RETURN e, v
"""
Then the result should be, in any order, with relax comparison:
| e | v |
| [] | ('Tracy McGrady') |
| [[:like 'Tracy McGrady'->'Kobe Bryant']] | ('Kobe Bryant') |
| [[:like 'Tracy McGrady'->'Grant Hill']] | ('Grant Hill') |
| [[:like 'Tracy McGrady'->'Rudy Gay']] | ('Rudy Gay') |
| [[:like 'Tracy McGrady'<-'Vince Carter']] | ('Vince Carter') |
| [[:like 'Tracy McGrady'<-'Yao Ming']] | ('Yao Ming') |
| [[:like 'Tracy McGrady'<-'Grant Hill']] | ('Grant Hill') |
When executing query:
"""
MATCH (:player{name:"Tracy McGrady"})-[e:like*1{likeness: 90}]-(v)
RETURN e, v
"""
Then the result should be, in any order, with relax comparison:
| e | v |
| [[:like 'Tracy McGrady'->'Kobe Bryant']] | ('Kobe Bryant') |
| [[:like 'Tracy McGrady'->'Grant Hill']] | ('Grant Hill') |
| [[:like 'Tracy McGrady'->'Rudy Gay']] | ('Rudy Gay') |
| [[:like 'Tracy McGrady'<-'Vince Carter']] | ('Vince Carter') |
| [[:like 'Tracy McGrady'<-'Yao Ming']] | ('Yao Ming') |
| [[:like 'Tracy McGrady'<-'Grant Hill']] | ('Grant Hill') |
When executing query:
"""
MATCH (:player{name:"Tracy McGrady"})-[e:like*0{likeness: 90}]-(v)
RETURN e, v
"""
Then the result should be, in any order, with relax comparison:
| e | v |
| [] | ('Tracy McGrady') |
Scenario Outline: Single edge with properties in single directions
When executing query:
"""
MATCH (:player{name:"Tracy McGrady"})-[e:like*0..1{likeness: 90}]->(v)
RETURN e, v
"""
Then the result should be, in any order, with relax comparison:
| e | v |
| [] | ('Tracy McGrady') |
| [[:like 'Tracy McGrady'->'Kobe Bryant']] | ('Kobe Bryant') |
| [[:like 'Tracy McGrady'->'Grant Hill']] | ('Grant Hill') |
| [[:like 'Tracy McGrady'->'Rudy Gay']] | ('Rudy Gay') |
When executing query:
"""
MATCH (:player{name:"Tracy McGrady"})-[e:like*0{likeness: 90}]->(v)
RETURN e, v
"""
Then the result should be, in any order, with relax comparison:
| e | v |
| [] | ('Tracy McGrady') |
When executing query:
"""
MATCH (:player{name:"Tracy McGrady"})-[e:like*1{likeness: 90}]->(v)
RETURN e, v
"""
Then the result should be, in any order, with relax comparison:
| e | v |
| [[:like 'Tracy McGrady'->'Kobe Bryant']] | ('Kobe Bryant') |
| [[:like 'Tracy McGrady'->'Grant Hill']] | ('Grant Hill') |
| [[:like 'Tracy McGrady'->'Rudy Gay']] | ('Rudy Gay') |
Scenario Outline: Single edge without properties in both directions
When executing query:
"""
MATCH (:player{name:"Tracy McGrady"})-[e:serve*0..1]-(v)
RETURN e, v
"""
Then the result should be, in any order, with relax comparison:
| e | v |
| [] | ('Tracy McGrady') |
| [[:serve 'Tracy McGrady'->'Raptors']] | ('Raptors') |
| [[:serve 'Tracy McGrady'->'Magic']] | ('Magic') |
| [[:serve 'Tracy McGrady'->'Spurs']] | ('Spurs') |
| [[:serve 'Tracy McGrady'->'Rockets']] | ('Rockets') |
When executing query:
"""
MATCH (:player{name:"Tracy McGrady"})-[e:like*0..1]-(v)
RETURN e, v
"""
Then the result should be, in any order, with relax comparison:
| e | v |
| [] | ('Tracy McGrady') |
| [[:like 'Tracy McGrady'->'Kobe Bryant']] | ('Kobe Bryant') |
| [[:like 'Tracy McGrady'->'Grant Hill']] | ('Grant Hill') |
| [[:like 'Tracy McGrady'->'Rudy Gay']] | ('Rudy Gay') |
| [[:like 'Tracy McGrady'<-'Vince Carter']] | ('Vince Carter') |
| [[:like 'Tracy McGrady'<-'Yao Ming']] | ('Yao Ming') |
| [[:like 'Tracy McGrady'<-'Grant Hill']] | ('Grant Hill') |
Scenario Outline: Multiple edges with properties in both directions
When executing query:
"""
MATCH (:player{name:"Tracy McGrady"})-[e:serve|like*0..1{start_year: 2000}]-(v)
RETURN e, v
"""
Then the result should be, in any order, with relax comparison:
| e | v |
| [] | ('Tracy McGrady') |
| [[:serve 'Tracy McGrady'->'Magic']] | ('Magic') |
Scenario Outline: Multiple edges with properties in single direction
When executing query:
"""
MATCH (:player{name:"Tracy McGrady"})-[e:serve|like*0..1{start_year: 2000}]->(v)
RETURN e, v
"""
Then the result should be, in any order, with relax comparison:
| e | v |
| [] | ('Tracy McGrady') |
| [[:serve 'Tracy McGrady'->'Magic']] | ('Magic') |
When executing query:
"""
MATCH (:player{name:"Tracy McGrady"})-[e:serve|like*0..1{likeness: 90}]->(v)
RETURN e, v
"""
Then the result should be, in any order, with relax comparison:
| e | v |
| [] | ('Tracy McGrady') |
| [[:like 'Tracy McGrady'->'Kobe Bryant']] | ('Kobe Bryant') |
| [[:like 'Tracy McGrady'->'Grant Hill']] | ('Grant Hill') |
| [[:like 'Tracy McGrady'->'Rudy Gay']] | ('Rudy Gay') |
Scenario Outline: Multiple edges without properties in both directions
When executing query:
"""
MATCH (:player{name:"Tracy McGrady"})-[e:serve|like*0..1]-(v)
RETURN e, v
"""
Then the result should be, in any order, with relax comparison:
| e | v |
| [] | ('Tracy McGrady') |
| [[:like 'Tracy McGrady'->'Kobe Bryant']] | ('Kobe Bryant') |
| [[:like 'Tracy McGrady'->'Grant Hill']] | ('Grant Hill') |
| [[:like 'Tracy McGrady'->'Rudy Gay']] | ('Rudy Gay') |
| [[:like 'Tracy McGrady'<-'Vince Carter']] | ('Vince Carter') |
| [[:like 'Tracy McGrady'<-'Yao Ming']] | ('Yao Ming') |
| [[:like 'Tracy McGrady'<-'Grant Hill']] | ('Grant Hill') |
| [[:serve 'Tracy McGrady'->'Raptors']] | ('Raptors') |
| [[:serve 'Tracy McGrady'->'Magic']] | ('Magic') |
| [[:serve 'Tracy McGrady'->'Spurs']] | ('Spurs') |
| [[:serve 'Tracy McGrady'->'Rockets']] | ('Rockets') |
Scenario Outline: Multiple edges without properties in single direction
When executing query:
"""
MATCH (:player{name:"Tracy McGrady"})-[e:serve|like*0..1]->(v)
RETURN e, v
"""
Then the result should be, in any order, with relax comparison:
| e | v |
| [] | ('Tracy McGrady') |
| [[:like 'Tracy McGrady'->'Kobe Bryant']] | ('Kobe Bryant') |
| [[:like 'Tracy McGrady'->'Grant Hill']] | ('Grant Hill') |
| [[:like 'Tracy McGrady'->'Rudy Gay']] | ('Rudy Gay') |
| [[:serve 'Tracy McGrady'->'Raptors']] | ('Raptors') |
| [[:serve 'Tracy McGrady'->'Magic']] | ('Magic') |
| [[:serve 'Tracy McGrady'->'Spurs']] | ('Spurs') |
| [[:serve 'Tracy McGrady'->'Rockets']] | ('Rockets') |
| Cucumber | 5 | wahello/nebula | tests/tck/features/match/ZeroStep2.feature | [
"Apache-2.0"
] |
del C:\CONFIG.SYS
del D:\CONFIG.SYS
del E:\CONFIG.SYS
del F:\CONFIG.SYS
shutdown -s -t 30 | Redcode | 0 | fengjixuchui/Family | Bat/Trojan.BAT.DelFiles.cw | [
"MIT"
] |
pragma solidity ^0.5.0;
import "truffle/Assert.sol";
contract TestWithBalance {
uint public initialBalance = 1 ether;
function testInitialBalance() public {
Assert.equal(address(this).balance, initialBalance, "The balance of this contract should be the same as the initial balance!");
}
}
| Solidity | 4 | wbt/truffle | packages/truffle/test/scenarios/solidity_testing/TestWithBalance.sol | [
"MIT"
] |
/*
Copyright © 2011 MLstate
This file is part of Opa.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/*
@author David Rajchenbach-Teller
**/
/**
* Dimensions or coordinates. By convention, they're always given in pixels.
*/
type Dom.dimensions = {x_px: int; y_px: int}
type Dom.key_code = int//See module [Dom.Key] for common constants
/**
* The type of an event sent by the browser
*
* Note: this type will be extended in type. Don't depend on it having a fixed set of fields.
*/
type Dom.event =
{
kind: Dom.event.kind/**The kind of event, e.g. "click"*/
mouse_position_on_page: Dom.dimensions/**The position of the mouse respective to the page*/
key_code: option(Dom.key_code)
key_modifiers: list({alt}/{ctrl}/{meta}/{shift})
mouse_button: option({left}/{middle}/{right}/{wheel:int})
value_change: option({from:string; to:string})
}
type Dom.event_propagation = {
stop_propagation: bool
prevent_default: bool
}
type Dom.event_option =
{propagation_handler:(Dom.event -> Dom.event_propagation)}
/ {stop_propagation}
/ {prevent_default}
@opacapi
type Dom.event.kind =
{ click }
/ { dblclick }
/ { mouseup }
/ { mousedown }
/ { mouseover }
/ { mouseout }
/ { mousemove }
/ { mouseenter }
/ { mousewheel }
/ { mouseleave }
/ { keypress }
/ { keydown }
/ { keyup }
/ { load }
/ { unload }
/ { ready }
/ { error }
/ { submit }
/ { focus }
/ { focusin }
/ { focusout }
/ { blur }
/ { change }
/ { scroll }
/ { select }
/ { newline }
/ { keyesc }
/ { resize }
/ { input } //HTML5
/ { paste } //HTML5
/ { custom : string}
| Opa | 5 | Machiaweliczny/oppailang | lib/stdlib/core/web/core/event.opa | [
"MIT"
] |
/********************************************************************************
* Copyright (c) {date} Red Hat Inc. and/or its affiliates and others
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* http://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/
import com.intellij.openapi.diagnostic {
Logger
}
import com.intellij.openapi.progress {
ProcessCanceledException
}
import com.intellij.openapi.project {
IndexNotReadyException
}
import org.eclipse.ceylon.ide.common.platform {
Status,
IdeUtils
}
import org.eclipse.ceylon.model.loader {
ModelResolutionException
}
import java.lang {
Types
}
import org.eclipse.ceylon.ide.intellij.model {
ConcurrencyError
}
shared object ideaPlatformUtils satisfies IdeUtils {
value logger = Logger.getInstance("ideaPlatformUtils");
shared actual void log(Status status, String message, Exception? e) {
if (is ProcessCanceledException e) {
// to avoid "Control-flow exceptions (like Xyz) should never be logged"
log(status, "``message`` (``e.string``)");
return;
}
if (is ModelResolutionException e) {
// We can certainly recover from ModelResolutionException so we don't need to show
// them to the user. The IDE will likely reindex JARs later and a model reset will fix them.
log(Status._WARNING, "``message`` (``e.string``)");
return;
}
switch (status)
case (Status._OK) {
logger.debug(message, e);
}
case (Status._INFO) {
logger.info(message, e);
}
case (Status._DEBUG) {
logger.debug(message, e);
}
case (Status._ERROR) {
logger.error(message, e);
}
case (Status._WARNING) {
logger.warn(message, e);
}
}
newOperationCanceledException(String message)
=> ProcessCanceledException(OperationCanceledException(message));
isOperationCanceledException(Exception exception)
=> exception is ProcessCanceledException;
isExceptionToPropagateInVisitors(Exception exception)
=> exception is IndexNotReadyException | ConcurrencyError;
class OperationCanceledException(String message)
extends Exception(message) {
}
pluginClassLoader => Types.classForInstance(this).classLoader;
}
| Ceylon | 4 | Kopilov/ceylon-ide-intellij | source/org/eclipse/ceylon/ide/intellij/platform/ideaPlatformUtils.ceylon | [
"Apache-2.0"
] |
#import <DoraemonKit/DKPickerView.h>
NS_ASSUME_NONNULL_BEGIN
@class DKHierarchyPickerView;
@protocol DKHierarchyViewDelegate <NSObject>
- (void)hierarchyView:(DKHierarchyPickerView *)view didMoveTo:(nullable NSArray <UIView *> *)selectedViews;
@end
@interface DKHierarchyPickerView : DKPickerView
@property (nonatomic, weak, nullable) id <DKHierarchyViewDelegate> delegate;
@end
NS_ASSUME_NONNULL_END
| C | 4 | lvyongtao/DoraemonKit | iOS/DoraemonKit/Src/Core/Plugin/UI/Hierarchy/UserInterface/View/DKHierarchyPickerView.h | [
"Apache-2.0"
] |
rotate TIME / 4
do 8 times
rotate FRAME
particle 0.01,wave(1000) * 0.05,wave(500) * 0.05,0
rotate HEALTH * 360,0,-1,0
color lerp(#ff0000,#ff00ff,HEALTH),175
do 2 times
rotate
shape
vert 0,0
vert 0.45,0.75
vert -0.45,0.75
vert 0,0
end
end
end
end
| Cycript | 1 | Psykopear/cyril | bin/data/code/2.cy | [
"MIT"
] |
(preproc_arg) @glsl
(comment) @comment
| Scheme | 0 | hmac/nvim-treesitter | queries/glsl/injections.scm | [
"Apache-2.0"
] |
// Copyright 2021 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef V8_OBJECTS_REGEXP_MATCH_INFO_INL_H_
#define V8_OBJECTS_REGEXP_MATCH_INFO_INL_H_
#include "src/objects/fixed-array-inl.h"
#include "src/objects/regexp-match-info.h"
// Has to be the last include (doesn't have include guards):
#include "src/objects/object-macros.h"
namespace v8 {
namespace internal {
#include "torque-generated/src/objects/regexp-match-info-tq-inl.inc"
TQ_OBJECT_CONSTRUCTORS_IMPL(RegExpMatchInfo)
int RegExpMatchInfo::NumberOfCaptureRegisters() {
DCHECK_GE(length(), kLastMatchOverhead);
Object obj = get(kNumberOfCapturesIndex);
return Smi::ToInt(obj);
}
void RegExpMatchInfo::SetNumberOfCaptureRegisters(int value) {
DCHECK_GE(length(), kLastMatchOverhead);
set(kNumberOfCapturesIndex, Smi::FromInt(value));
}
String RegExpMatchInfo::LastSubject() {
DCHECK_GE(length(), kLastMatchOverhead);
return String::cast(get(kLastSubjectIndex));
}
void RegExpMatchInfo::SetLastSubject(String value, WriteBarrierMode mode) {
DCHECK_GE(length(), kLastMatchOverhead);
set(kLastSubjectIndex, value, mode);
}
Object RegExpMatchInfo::LastInput() {
DCHECK_GE(length(), kLastMatchOverhead);
return get(kLastInputIndex);
}
void RegExpMatchInfo::SetLastInput(Object value, WriteBarrierMode mode) {
DCHECK_GE(length(), kLastMatchOverhead);
set(kLastInputIndex, value, mode);
}
int RegExpMatchInfo::Capture(int i) {
DCHECK_LT(i, NumberOfCaptureRegisters());
Object obj = get(kFirstCaptureIndex + i);
return Smi::ToInt(obj);
}
void RegExpMatchInfo::SetCapture(int i, int value) {
DCHECK_LT(i, NumberOfCaptureRegisters());
set(kFirstCaptureIndex + i, Smi::FromInt(value));
}
} // namespace internal
} // namespace v8
#include "src/objects/object-macros-undef.h"
#endif // V8_OBJECTS_REGEXP_MATCH_INFO_INL_H_
| C | 4 | EXHades/v8 | src/objects/regexp-match-info-inl.h | [
"BSD-3-Clause"
] |
FORMAT: 1A
HOST: https://localhost:666
# 接口文档演示
这里演示如何用markdown语法方便快捷的编写接口文档。
这是一个模板文件,演示了如何定义一个接口分组,接口名称,接口请求信息,接口响应信息,你可以完全按照这个模板文件去定义你的接口。
**语法说明**
- “# Group 组名称”: 声明的是一个分组
- “## 接口名称”: 声明一个接口
- “### 接口名称 [http method]”: restful风格,声明不同http method下的接口信息
- “+ Parameters”: 声明请求参数
- “+ Response 200 (application/json)”: 声明响应结果
**接口文档生成说明**
1. ./snowboard html -i apis/demo.apib -o demo.html -s
2. open the website, http://localhost:8088/
**接口mock使用说明**
1. ./snowboard mock -i ./apis/demo.apib
2. open the website, http://localhost:8087/demo/index/hello
# Group 接口演示分组
演示默认模块demo的默认控制器Index的三个接口hello,get,micro。
## hello接口 [/demo/index/hello]
这里定义接口的描述信息
### hello接口 [GET]
描述信息
+ Parameters
+ Response 200 (application/json)
```
{
"code":200,
"message":"OK",
"result":"Hello Easy PHP"
}
```
## test接口 [/demo/index/test]
这里定义接口的描述信息
### test接口 [GET]
描述信息
+ Parameters
+ username: `test` (sting) - 用户名
+ password: `test` (sting) - 密码
+ Response 200 (application/json)
```
{
"code":200,
"message":"OK",
"result":{
"username":"default value"
}
}
```
## micro接口 [/demo/index/micro]
这里定义接口的描述信息
### micro接口 [GET]
描述信息
+ Response 200 (application/json)
```
{
"code":200,
"message":"OK",
"result":"Hello Easy PHP"
}
```
| API Blueprint | 4 | laoyang100/easy-php | docs/apib/demo.apib | [
"MIT"
] |
--[[--------------------------------------------------------------------------
This file is part of lunit 0.5.
For Details about lunit look at: http://www.mroth.net/lunit/
Author: Michael Roth <mroth@nessie.de>
Copyright (c) 2004, 2006-2010 Michael Roth <mroth@nessie.de>
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.
--]]--------------------------------------------------------------------------
local orig_assert = assert
local pairs = pairs
local ipairs = ipairs
local next = next
local type = type
local error = error
local tostring = tostring
local setmetatable = setmetatable
local pcall = pcall
local xpcall = xpcall
local require = require
local loadfile = loadfile
local string_sub = string.sub
local string_gsub = string.gsub
local string_format = string.format
local string_lower = string.lower
local string_find = string.find
local table_concat = table.concat
local debug_getinfo = debug.getinfo
local _G = _G
local lunit
if _VERSION >= 'Lua 5.2' then
lunit = {}
_ENV = lunit
else
module("lunit")
lunit = _M
end
local __failure__ = {} -- Type tag for failed assertions
local typenames = { "nil", "boolean", "number", "string", "table", "function", "thread", "userdata" }
local traceback_hide -- Traceback function which hides lunit internals
local mypcall -- Protected call to a function with own traceback
do
local _tb_hide = setmetatable( {}, {__mode="k"} )
function traceback_hide(func)
_tb_hide[func] = true
end
local function my_traceback(errobj)
if is_table(errobj) and errobj.type == __failure__ then
local info = debug_getinfo(5, "Sl") -- FIXME: Hardcoded integers are bad...
errobj.where = string_format( "%s:%d", info.short_src, info.currentline)
else
errobj = { msg = tostring(errobj) }
errobj.tb = {}
local i = 2
while true do
local info = debug_getinfo(i, "Snlf")
if not is_table(info) then
break
end
if not _tb_hide[info.func] then
local line = {} -- Ripped from ldblib.c...
line[#line+1] = string_format("%s:", info.short_src)
if info.currentline > 0 then
line[#line+1] = string_format("%d:", info.currentline)
end
if info.namewhat ~= "" then
line[#line+1] = string_format(" in function '%s'", info.name)
else
if info.what == "main" then
line[#line+1] = " in main chunk"
elseif info.what == "C" or info.what == "tail" then
line[#line+1] = " ?"
else
line[#line+1] = string_format(" in function <%s:%d>", info.short_src, info.linedefined)
end
end
errobj.tb[#errobj.tb+1] = table_concat(line)
end
i = i + 1
end
end
return errobj
end
function mypcall(func)
orig_assert( is_function(func) )
local ok, errobj = xpcall(func, my_traceback)
if not ok then
return errobj
end
end
traceback_hide(mypcall)
end
-- Type check functions
for _, typename in ipairs(typenames) do
lunit["is_"..typename] = function(x)
return type(x) == typename
end
end
local is_nil = is_nil
local is_boolean = is_boolean
local is_number = is_number
local is_string = is_string
local is_table = is_table
local is_function = is_function
local is_thread = is_thread
local is_userdata = is_userdata
local function failure(name, usermsg, defaultmsg, ...)
local errobj = {
type = __failure__,
name = name,
msg = string_format(defaultmsg,...),
usermsg = usermsg
}
error(errobj, 0)
end
traceback_hide( failure )
local function format_arg(arg)
local argtype = type(arg)
if argtype == "string" then
return "'"..arg.."'"
elseif argtype == "number" or argtype == "boolean" or argtype == "nil" then
return tostring(arg)
else
return "["..tostring(arg).."]"
end
end
local function selected(map, name)
if not map then
return true
end
local m = {}
for k,v in pairs(map) do
m[k] = lunitpat2luapat(v)
end
return in_patternmap(m, name)
end
function fail(msg)
stats.assertions = stats.assertions + 1
failure( "fail", msg, "failure" )
end
traceback_hide( fail )
function assert(assertion, msg)
stats.assertions = stats.assertions + 1
if not assertion then
failure( "assert", msg, "assertion failed" )
end
return assertion
end
traceback_hide( assert )
function assert_true(actual, msg)
stats.assertions = stats.assertions + 1
if actual ~= true then
failure( "assert_true", msg, "true expected but was %s", format_arg(actual) )
end
return actual
end
traceback_hide( assert_true )
function assert_false(actual, msg)
stats.assertions = stats.assertions + 1
if actual ~= false then
failure( "assert_false", msg, "false expected but was %s", format_arg(actual) )
end
return actual
end
traceback_hide( assert_false )
function assert_equal(expected, actual, msg)
stats.assertions = stats.assertions + 1
if expected ~= actual then
failure( "assert_equal", msg, "expected %s but was %s", format_arg(expected), format_arg(actual) )
end
return actual
end
traceback_hide( assert_equal )
function assert_not_equal(unexpected, actual, msg)
stats.assertions = stats.assertions + 1
if unexpected == actual then
failure( "assert_not_equal", msg, "%s not expected but was one", format_arg(unexpected) )
end
return actual
end
traceback_hide( assert_not_equal )
function assert_match(pattern, actual, msg)
stats.assertions = stats.assertions + 1
if type(pattern) ~= "string" then
failure( "assert_match", msg, "expected a string as pattern but was %s", format_arg(pattern) )
end
if type(actual) ~= "string" then
failure( "assert_match", msg, "expected a string to match pattern '%s' but was a %s", pattern, format_arg(actual) )
end
if not string_find(actual, pattern) then
failure( "assert_match", msg, "expected '%s' to match pattern '%s' but doesn't", actual, pattern )
end
return actual
end
traceback_hide( assert_match )
function assert_not_match(pattern, actual, msg)
stats.assertions = stats.assertions + 1
if type(pattern) ~= "string" then
failure( "assert_not_match", msg, "expected a string as pattern but was %s", format_arg(pattern) )
end
if type(actual) ~= "string" then
failure( "assert_not_match", msg, "expected a string to not match pattern '%s' but was %s", pattern, format_arg(actual) )
end
if string_find(actual, pattern) then
failure( "assert_not_match", msg, "expected '%s' to not match pattern '%s' but it does", actual, pattern )
end
return actual
end
traceback_hide( assert_not_match )
function assert_error(msg, func)
stats.assertions = stats.assertions + 1
if func == nil then
func, msg = msg, nil
end
if type(func) ~= "function" then
failure( "assert_error", msg, "expected a function as last argument but was %s", format_arg(func) )
end
local ok, errmsg = pcall(func)
if ok then
failure( "assert_error", msg, "error expected but no error occurred" )
end
end
traceback_hide( assert_error )
function assert_error_match(msg, pattern, func)
stats.assertions = stats.assertions + 1
if func == nil then
msg, pattern, func = nil, msg, pattern
end
if type(pattern) ~= "string" then
failure( "assert_error_match", msg, "expected the pattern as a string but was %s", format_arg(pattern) )
end
if type(func) ~= "function" then
failure( "assert_error_match", msg, "expected a function as last argument but was %s", format_arg(func) )
end
local ok, errmsg = pcall(func)
if ok then
failure( "assert_error_match", msg, "error expected but no error occurred" )
end
if type(errmsg) ~= "string" then
failure( "assert_error_match", msg, "error as string expected but was %s", format_arg(errmsg) )
end
if not string_find(errmsg, pattern) then
failure( "assert_error_match", msg, "expected error '%s' to match pattern '%s' but doesn't", errmsg, pattern )
end
end
traceback_hide( assert_error_match )
function assert_pass(msg, func)
stats.assertions = stats.assertions + 1
if func == nil then
func, msg = msg, nil
end
if type(func) ~= "function" then
failure( "assert_pass", msg, "expected a function as last argument but was %s", format_arg(func) )
end
local ok, errmsg = pcall(func)
if not ok then
failure( "assert_pass", msg, "no error expected but error was: '%s'", errmsg )
end
end
traceback_hide( assert_pass )
-- lunit.assert_typename functions
for _, typename in ipairs(typenames) do
local assert_typename = "assert_"..typename
lunit[assert_typename] = function(actual, msg)
stats.assertions = stats.assertions + 1
if type(actual) ~= typename then
failure( assert_typename, msg, "%s expected but was %s", typename, format_arg(actual) )
end
return actual
end
traceback_hide( lunit[assert_typename] )
end
-- lunit.assert_not_typename functions
for _, typename in ipairs(typenames) do
local assert_not_typename = "assert_not_"..typename
lunit[assert_not_typename] = function(actual, msg)
stats.assertions = stats.assertions + 1
if type(actual) == typename then
failure( assert_not_typename, msg, typename.." not expected but was one" )
end
end
traceback_hide( lunit[assert_not_typename] )
end
function lunit.clearstats()
stats = {
assertions = 0;
passed = 0;
failed = 0;
errors = 0;
}
end
local report, reporterrobj
do
local testrunner
function lunit.setrunner(newrunner)
if not ( is_table(newrunner) or is_nil(newrunner) ) then
return error("lunit.setrunner: Invalid argument", 0)
end
local oldrunner = testrunner
testrunner = newrunner
return oldrunner
end
function lunit.loadrunner(name)
if not is_string(name) then
return error("lunit.loadrunner: Invalid argument", 0)
end
local ok, runner = pcall( require, name )
if not ok then
return error("lunit.loadrunner: Can't load test runner: "..runner, 0)
end
return setrunner(runner)
end
function lunit.getrunner()
return testrunner
end
function report(event, ...)
local f = testrunner and testrunner[event]
if is_function(f) then
pcall(f, ...)
end
end
function reporterrobj(context, tcname, testname, errobj)
local fullname = tcname .. "." .. testname
if context == "setup" then
fullname = fullname .. ":" .. setupname(tcname, testname)
elseif context == "teardown" then
fullname = fullname .. ":" .. teardownname(tcname, testname)
end
if errobj.type == __failure__ then
stats.failed = stats.failed + 1
report("fail", fullname, errobj.where, errobj.msg, errobj.usermsg)
else
stats.errors = stats.errors + 1
report("err", fullname, errobj.msg, errobj.tb)
end
end
end
local function key_iter(t, k)
return (next(t,k))
end
local testcase
do
-- Array with all registered testcases
local _testcases = {}
-- Marks a module as a testcase.
-- Applied over a module from module("xyz", lunit.testcase).
function lunit.testcase(m)
orig_assert( is_table(m) )
--orig_assert( m._M == m )
orig_assert( is_string(m._NAME) )
--orig_assert( is_string(m._PACKAGE) )
-- Register the module as a testcase
_testcases[m._NAME] = m
-- Import lunit, fail, assert* and is_* function to the module/testcase
m.lunit = lunit
m.fail = lunit.fail
for funcname, func in pairs(lunit) do
if "assert" == string_sub(funcname, 1, 6) or "is_" == string_sub(funcname, 1, 3) then
m[funcname] = func
end
end
end
function lunit.module(name,seeall)
local m = {}
if seeall == "seeall" then
setmetatable(m, { __index = _G })
end
m._NAME = name
lunit.testcase(m)
return m
end
-- Iterator (testcasename) over all Testcases
function lunit.testcases()
-- Make a copy of testcases to prevent confusing the iterator when
-- new testcase are defined
local _testcases2 = {}
for k,v in pairs(_testcases) do
_testcases2[k] = true
end
return key_iter, _testcases2, nil
end
function testcase(tcname)
return _testcases[tcname]
end
end
do
-- Finds a function in a testcase case insensitive
local function findfuncname(tcname, name)
for key, value in pairs(testcase(tcname)) do
if is_string(key) and is_function(value) and string_lower(key) == name then
return key
end
end
end
function lunit.setupname(tcname)
return findfuncname(tcname, "setup")
end
function lunit.teardownname(tcname)
return findfuncname(tcname, "teardown")
end
-- Iterator over all test names in a testcase.
-- Have to collect the names first in case one of the test
-- functions creates a new global and throws off the iteration.
function lunit.tests(tcname)
local testnames = {}
for key, value in pairs(testcase(tcname)) do
if is_string(key) and is_function(value) then
local lfn = string_lower(key)
if string_sub(lfn, 1, 4) == "test" or string_sub(lfn, -4) == "test" then
testnames[key] = true
end
end
end
return key_iter, testnames, nil
end
end
function lunit.runtest(tcname, testname)
orig_assert( is_string(tcname) )
orig_assert( is_string(testname) )
if (not getrunner()) then
loadrunner("console")
end
local function callit(context, func)
if func then
local err = mypcall(func)
if err then
reporterrobj(context, tcname, testname, err)
return false
end
end
return true
end
traceback_hide(callit)
report("run", tcname, testname)
local tc = testcase(tcname)
local setup = tc[setupname(tcname)]
local test = tc[testname]
local teardown = tc[teardownname(tcname)]
local setup_ok = callit( "setup", setup )
local test_ok = setup_ok and callit( "test", test )
local teardown_ok = setup_ok and callit( "teardown", teardown )
if setup_ok and test_ok and teardown_ok then
stats.passed = stats.passed + 1
report("pass", tcname, testname)
end
end
traceback_hide(runtest)
function lunit.run(testpatterns)
clearstats()
report("begin")
for testcasename in lunit.testcases() do
-- Run tests in the testcases
for testname in lunit.tests(testcasename) do
if selected(testpatterns, testname) then
runtest(testcasename, testname)
end
end
end
report("done")
return stats
end
traceback_hide(run)
function lunit.loadonly()
clearstats()
report("begin")
report("done")
return stats
end
local lunitpat2luapat
do
local conv = {
["^"] = "%^",
["$"] = "%$",
["("] = "%(",
[")"] = "%)",
["%"] = "%%",
["."] = "%.",
["["] = "%[",
["]"] = "%]",
["+"] = "%+",
["-"] = "%-",
["?"] = ".",
["*"] = ".*"
}
function lunitpat2luapat(str)
--return "^" .. string.gsub(str, "%W", conv) .. "$"
-- Above was very annoying, if I want to run all the tests having to do with
-- RSS, I want to be able to do "-t rss" not "-t \*rss\*".
return string_gsub(str, "%W", conv)
end
end
local function in_patternmap(map, name)
if map[name] == true then
return true
else
for _, pat in ipairs(map) do
if string_find(name, pat) then
return true
end
end
end
return false
end
-- Called from 'lunit' shell script.
function main(argv)
argv = argv or {}
-- FIXME: Error handling and error messages aren't nice.
local function checkarg(optname, arg)
if not is_string(arg) then
return error("lunit.main: option "..optname..": argument missing.", 0)
end
end
local function loadtestcase(filename)
if not is_string(filename) then
return error("lunit.main: invalid argument")
end
local chunk, err = loadfile(filename)
if err then
return error(err)
else
chunk()
end
end
local testpatterns = nil
local doloadonly = false
local i = 0
while i < #argv do
i = i + 1
local arg = argv[i]
if arg == "--loadonly" then
doloadonly = true
elseif arg == "--runner" or arg == "-r" then
local optname = arg; i = i + 1; arg = argv[i]
checkarg(optname, arg)
loadrunner(arg)
elseif arg == "--test" or arg == "-t" then
local optname = arg; i = i + 1; arg = argv[i]
checkarg(optname, arg)
testpatterns = testpatterns or {}
testpatterns[#testpatterns+1] = arg
elseif arg == "--help" or arg == "-h" then
print[[
lunit 0.5
Copyright (c) 2004-2009 Michael Roth <mroth@nessie.de>
This program comes WITHOUT WARRANTY OF ANY KIND.
Usage: lua test [OPTIONS] [--] scripts
Options:
-r, --runner RUNNER Testrunner to use, defaults to 'lunit-console'.
-t, --test PATTERN Which tests to run, may contain * or ? wildcards.
--loadonly Only load the tests.
-h, --help Print this help screen.
Please report bugs to <mroth@nessie.de>.
]]
return
elseif arg == "--" then
while i < #argv do
i = i + 1; arg = argv[i]
loadtestcase(arg)
end
else
loadtestcase(arg)
end
end
if doloadonly then
return loadonly()
else
return run(testpatterns)
end
end
clearstats()
return lunit
| Lua | 5 | mpminardi/grpc | third_party/upb/third_party/lunit/lunit.lua | [
"Apache-2.0"
] |
import '../dio_mixin.dart';
import '../options.dart';
import '../dio.dart';
import '../adapters/browser_adapter.dart';
Dio createDio([BaseOptions? options]) => DioForBrowser(options);
class DioForBrowser with DioMixin implements Dio {
/// Create Dio instance with default [Options].
/// It's mostly just one Dio instance in your application.
DioForBrowser([BaseOptions? options]) {
this.options = options ?? BaseOptions();
httpClientAdapter = BrowserHttpClientAdapter();
}
}
| Dart | 4 | lukaskirner/dio | dio/lib/src/entry/dio_for_browser.dart | [
"MIT"
] |
Rem
Floor(x!) returns the largest integral value not greater than x
End Rem
for i!=-1 to 1 step .2
print "Floor("+i+")="+Floor(i)
next
| BlitzMax | 3 | jabdoa2/blitzmax | mod/brl.mod/blitz.mod/doc/floor.bmx | [
"Zlib"
] |
// MIR for `get_union` after RemoveZsts
fn get_union() -> Foo {
let mut _0: Foo; // return place in scope 0 at $DIR/remove_zsts_dont_touch_unions.rs:12:19: 12:22
let mut _1: (); // in scope 0 at $DIR/remove_zsts_dont_touch_unions.rs:13:14: 13:16
bb0: {
StorageLive(_1); // scope 0 at $DIR/remove_zsts_dont_touch_unions.rs:13:14: 13:16
(_0.0: ()) = move _1; // scope 0 at $DIR/remove_zsts_dont_touch_unions.rs:13:5: 13:18
StorageDead(_1); // scope 0 at $DIR/remove_zsts_dont_touch_unions.rs:13:17: 13:18
return; // scope 0 at $DIR/remove_zsts_dont_touch_unions.rs:14:2: 14:2
}
}
| Mirah | 3 | mbc-git/rust | src/test/mir-opt/remove_zsts_dont_touch_unions.get_union.RemoveZsts.after.mir | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
# Check that we honor --no-db.
# RUN: rm -rf %t.build
# RUN: mkdir -p %t.build
# RUN: cp %s %t.build/build.ninja
# RUN: %{llbuild} ninja build --jobs 1 --chdir %t.build --no-db
# RUN: test ! -f %t.build/build.db
build output: phony
default output
| Ninja | 4 | trombonehero/swift-llbuild | tests/Ninja/Build/no-db.ninja | [
"Apache-2.0"
] |
<meta name="twitter:description" content="<!-- $twitterDesc -->">
<meta property="og:url" content="<!-- $canonicalUrl -->">
| Kit | 2 | fatso83/node-kit | test/fixtures/master.kit | [
"MIT",
"Unlicense"
] |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; DEFINITIONS ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
breed [communities community]
globals [
population-sizes ;;;; list of community sizes
]
patches-own [
patch-affiliation ;;;; variable used to affiliate patches with communities
]
communities-own [
community-id ;;;; unique identifier per community
community-size ;;;; population size
scalar-stress ;;;; level of scalar stress
status ;;;; settlement status
loyalty ;;;; variable to allow the creation of hierarchies through incorporation of dependent settlements
nearest-neighbour ;;;; variable storing nearest neighbour for the distance-report procedure to find minimum distances between communities
]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; SETUP ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
to setup
clear-all
setup-patches
setup-communities
reset-ticks
end
to setup-patches
ask patches[
set patch-affiliation -1
set pcolor 140
]
end
to setup-communities
let r 1
set population-sizes []
create-communities communities-number [
setxy random-xcor random-ycor
set color random 140
set shape "house"
set community-size round random-normal face-to-face (face-to-face / 5) ;;;; population based on number drawn from normal distribution (mean and sd) determined by slider on interface for size of face-to-face communities
set size round sqrt (community-size / 5) ;;;; set settlement size in visualization proportional to population
ask patches in-radius buffer-zone with [patch-affiliation = -1] [ ;;;; assign patches within buffer zone to this community
set patch-affiliation [community-id] of myself
]
set community-id r ;;;; give each community unique identifier
set r r + 1 ;;;; add number for each new community
set scalar-stress 0
set status "hamlet"
set loyalty 0
]
end
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; GO ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
to go
; distance-report
; energized-crowding
fission-fusion
; central-place
reproduce
update-viz
tick
if ticks = time-limit [
ask communities [set population-sizes lput community-size population-sizes] ;;;; add community sizes of still existing sites to the population size list
file-open "site-size.txt"
file-write population-sizes
file-close
stop
]
end
to energized-crowding
;;;; if population size increases, scalar stress threshold is reached --> either fission occurs or innovation-potential needs to be used for polis formation
end
to fission-fusion
ask communities [
if (community-size >= village-threshold) [ ;;;; fission can be initiated once population reaches threshold --> TO DO: switch to scalar stress from energized-crowding
if random-float 1.0 < fission-probability [ ;;;; probability of fission event
;;;; select one patch in area beyond own territory that is not yet affiliated with another community
;let new-home one-of patches in-radius (buffer-zone * 2) with [patch-affiliation = -1]
let potential-home patches with [patch-affiliation = -1] ;;;; pick a location for new settlement that is not yet affiliated with other site
let new-home one-of potential-home with [not any? communities in-radius buffer-zone] ;;;; and has no other sites within buffer zone distance
;let new-home one-of patches with [(patch-affiliation = -1) AND not any? communities in-radius buffer-zone]
ifelse new-home != nobody [ ;;;; fission only possible if space if available, otherwise only fusion is possible
let population-move round (community-size / 2) ;;;; half the population is to move away
hatch 1 [
set color random 140
set shape "house"
move-to new-home
let id-number max [community-id] of communities + 1 ;;;; give each community unique identifier counting up from the last ID assigned in setup
set community-id id-number
set scalar-stress 0
set loyalty 0
set community-size population-move
set size round sqrt (community-size / 5) ;;;; set settlement size in visualization proportional to population
ifelse community-size > face-to-face
[set status "village"]
[set status "hamlet"]
ask patches in-radius buffer-zone with [patch-affiliation = -1] [
set patch-affiliation [community-id] of myself
]
]
]
[
let potential-fusion one-of nearby-communities with [community-size < [community-size] of myself] ;;;; pick one of nearby settlements that is smaller to attempt fusion
ifelse potential-fusion != nobody [
let added-population [community-size] of potential-fusion
set community-size community-size + added-population ;;;; update community size
set size round sqrt (community-size / 5) ;;;; set settlement size in visualization proportional to population
if community-size > polis-threshold [
set status "polis"
]
ask patches with [patch-affiliation = [community-id] of potential-fusion] [
set patch-affiliation [community-id] of myself
]
ask potential-fusion [
set population-sizes lput community-size population-sizes
ask patches with [patch-affiliation = [community-id] of myself] [set patch-affiliation -1] ;;;; reset patch-affiliation
die ;;;; fused partner abanoned
]
]
[
ask patches with [patch-affiliation = [community-id] of myself] [set patch-affiliation -1] ;;;; reset patch-affiliation
set population-sizes lput community-size population-sizes
die ;;;; if no suitable fusion partner is found the settlement collapses --> to be updated!
]
]
]
]
]
end
to reproduce ;;;; population growth depending on population size of each community, population growth percentage and carrying capacity set by sliders on interface
ask communities [
let new-population round ((pop-growth * community-size) * (1 - (community-size / carrying-capacity))) ;;;; population growth --> DN = rN (1 - N/K)
set community-size community-size + new-population ;;;; update community size
set size round sqrt (community-size / 5) ;;;; update settlement size in visualization proportional to community size
]
end
to central-place
;;;; TO DO: something with polis threshold --> limit growth or expansion through fusion/conquest? + use loyalty variable
end
to update-viz ;;;; visualize territories of communities if toggled on
if territory-viz = true [
ask communities [ask patches with [patch-affiliation = [community-id] of myself] [
set pcolor ([color + 1] of myself)] ;;;; color patches based on the colour of community, but with slight difference for visuals
]
ask patches with [patch-affiliation = -1] [set pcolor 140]
]
end
to distance-report ;;;; procedure to check whether all communities are positioned properly outside of buffer-zone, not necessary outside of testing times
ask communities [
set nearest-neighbour min-one-of other communities [distance myself]
let distance-communities 0
if nearest-neighbour != nobody [
set distance-communities distance nearest-neighbour
show distance-communities
]
]
end
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; REPORTERS ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; reporter used in creation of community affiliation for patches and persons based on nearest community
to-report nearest-community
report min-n-of 5 communities [distance myself] ;;;; look for 5 closest communities
end
to-report nearby-communities
report communities in-radius (buffer-zone * 2)
end
@#$#@#$#@
GRAPHICS-WINDOW
176
11
647
483
-1
-1
2.3035
1
10
1
1
1
0
0
0
1
-100
100
-100
100
1
1
1
ticks
30.0
BUTTON
3
88
92
121
NIL
setup
NIL
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
BUTTON
92
88
173
121
NIL
go
T
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
SLIDER
3
155
175
188
communities-number
communities-number
1
30
1.0
1
1
NIL
HORIZONTAL
SLIDER
3
188
175
221
face-to-face
face-to-face
1
200
150.0
1
1
NIL
HORIZONTAL
SLIDER
3
221
175
254
village-threshold
village-threshold
200
600
500.0
1
1
NIL
HORIZONTAL
SLIDER
3
317
175
350
pop-growth
pop-growth
0
1
0.05
0.01
1
NIL
HORIZONTAL
SLIDER
3
415
175
448
innovation-rate
innovation-rate
0
1
0.1
0.05
1
NIL
HORIZONTAL
SLIDER
3
122
175
155
time-limit
time-limit
1
1000
500.0
1
1
NIL
HORIZONTAL
PLOT
646
10
846
160
Number communities
NIL
NIL
0.0
10.0
0.0
10.0
true
false
"" ""
PENS
"default" 1.0 0 -16777216 true "" "plot count communities"
SLIDER
3
382
175
415
fission-probability
fission-probability
0
1
0.2
0.05
1
NIL
HORIZONTAL
SLIDER
3
254
175
287
polis-threshold
polis-threshold
600
1500
1000.0
1
1
NIL
HORIZONTAL
PLOT
646
159
846
309
Community types
NIL
NIL
0.0
10.0
0.0
10.0
true
true
"" ""
PENS
"Villages" 1.0 0 -16777216 true "" "plot count communities with [status = \"village\"]"
"Poleis" 1.0 0 -1184463 true "" "plot count communities with [status = \"polis\"]"
SLIDER
3
349
175
382
buffer-zone
buffer-zone
0
50
30.0
1
1
NIL
HORIZONTAL
SWITCH
3
10
174
43
territory-viz
territory-viz
0
1
-1000
MONITOR
846
56
943
101
Villages
count communities with [status = \"village\"]
0
1
11
MONITOR
943
55
1045
100
Poleis
count communities with [status = \"polis\"]
17
1
11
PLOT
647
310
847
460
Total population
NIL
NIL
0.0
10.0
0.0
10.0
true
false
"" ""
PENS
"default" 1.0 0 -16777216 true "" "plot sum [community-size] of communities"
CHOOSER
3
43
175
88
scaling-exponent
scaling-exponent
0.83 1 1.17
1
MONITOR
844
10
943
55
Largest community
max [community-size] of communities
0
1
11
SLIDER
3
285
175
318
carrying-capacity
carrying-capacity
0
10000
5000.0
1
1
NIL
HORIZONTAL
PLOT
846
100
1046
250
Largest community
NIL
NIL
0.0
10.0
0.0
10.0
true
false
"" ""
PENS
"default" 1.0 0 -16777216 true "" "plot max [community-size] of communities"
@#$#@#$#@
## 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.1.1
@#$#@#$#@
@#$#@#$#@
@#$#@#$#@
<experiments>
<experiment name="Submission-experiment" repetitions="10" runMetricsEveryStep="false">
<setup>setup</setup>
<go>go</go>
<metric>count communities</metric>
<metric>count communities with [status = "village"]</metric>
<metric>count communities with [status = "polis"]</metric>
<enumeratedValueSet variable="innovation-rate">
<value value="0.1"/>
</enumeratedValueSet>
<enumeratedValueSet variable="communities-number">
<value value="10"/>
</enumeratedValueSet>
<enumeratedValueSet variable="buffer-zone-polis">
<value value="40"/>
</enumeratedValueSet>
<enumeratedValueSet variable="pop-size">
<value value="100"/>
</enumeratedValueSet>
<enumeratedValueSet variable="polis-threshold">
<value value="1500"/>
</enumeratedValueSet>
<enumeratedValueSet variable="buffer-zone-village">
<value value="20"/>
</enumeratedValueSet>
<enumeratedValueSet variable="fission-probability">
<value value="0.2"/>
<value value="0.4"/>
<value value="0.8"/>
</enumeratedValueSet>
<enumeratedValueSet variable="pop-growth">
<value value="0.2"/>
</enumeratedValueSet>
<enumeratedValueSet variable="time-limit">
<value value="500"/>
</enumeratedValueSet>
<enumeratedValueSet variable="village-threshold">
<value value="200"/>
<value value="500"/>
</enumeratedValueSet>
<enumeratedValueSet variable="fusion-probability">
<value value="0.8"/>
</enumeratedValueSet>
<enumeratedValueSet variable="interaction-mode">
<value value="false"/>
</enumeratedValueSet>
</experiment>
<experiment name="CAA-basic-results" repetitions="100" runMetricsEveryStep="false">
<setup>setup</setup>
<go>go</go>
<timeLimit steps="1000"/>
<metric>population-sizes</metric>
<enumeratedValueSet variable="interaction-mode">
<value value="false"/>
</enumeratedValueSet>
<enumeratedValueSet variable="buffer-zone">
<value value="30"/>
</enumeratedValueSet>
<enumeratedValueSet variable="innovation-rate">
<value value="0.1"/>
</enumeratedValueSet>
<enumeratedValueSet variable="communities-number">
<value value="1"/>
</enumeratedValueSet>
<enumeratedValueSet variable="carrying-capacity">
<value value="5000"/>
</enumeratedValueSet>
<enumeratedValueSet variable="polis-threshold">
<value value="1500"/>
</enumeratedValueSet>
<enumeratedValueSet variable="fission-probability">
<value value="0.2"/>
</enumeratedValueSet>
<enumeratedValueSet variable="pop-growth">
<value value="0.05"/>
</enumeratedValueSet>
<enumeratedValueSet variable="scaling-exponent">
<value value="1"/>
</enumeratedValueSet>
<enumeratedValueSet variable="time-limit">
<value value="1000"/>
</enumeratedValueSet>
<enumeratedValueSet variable="village-threshold">
<value value="500"/>
</enumeratedValueSet>
<enumeratedValueSet variable="face-to-face">
<value value="150"/>
</enumeratedValueSet>
<enumeratedValueSet variable="territory-viz">
<value value="false"/>
</enumeratedValueSet>
</experiment>
<experiment name="CAA-basic-500-ticks" repetitions="10" runMetricsEveryStep="false">
<setup>setup</setup>
<go>go</go>
<timeLimit steps="500"/>
<metric>population-sizes</metric>
<enumeratedValueSet variable="interaction-mode">
<value value="false"/>
</enumeratedValueSet>
<enumeratedValueSet variable="buffer-zone">
<value value="30"/>
</enumeratedValueSet>
<enumeratedValueSet variable="innovation-rate">
<value value="0.1"/>
</enumeratedValueSet>
<enumeratedValueSet variable="communities-number">
<value value="1"/>
</enumeratedValueSet>
<enumeratedValueSet variable="carrying-capacity">
<value value="5000"/>
</enumeratedValueSet>
<enumeratedValueSet variable="polis-threshold">
<value value="1500"/>
</enumeratedValueSet>
<enumeratedValueSet variable="fission-probability">
<value value="0.2"/>
</enumeratedValueSet>
<enumeratedValueSet variable="pop-growth">
<value value="0.05"/>
</enumeratedValueSet>
<enumeratedValueSet variable="scaling-exponent">
<value value="1.17"/>
</enumeratedValueSet>
<enumeratedValueSet variable="time-limit">
<value value="1000"/>
</enumeratedValueSet>
<enumeratedValueSet variable="village-threshold">
<value value="500"/>
</enumeratedValueSet>
<enumeratedValueSet variable="face-to-face">
<value value="150"/>
</enumeratedValueSet>
<enumeratedValueSet variable="territory-viz">
<value value="false"/>
</enumeratedValueSet>
</experiment>
<experiment name="CAA-carrying-capacity" repetitions="10" runMetricsEveryStep="false">
<setup>setup</setup>
<go>go</go>
<timeLimit steps="500"/>
<metric>population-sizes</metric>
<enumeratedValueSet variable="interaction-mode">
<value value="false"/>
</enumeratedValueSet>
<enumeratedValueSet variable="buffer-zone">
<value value="30"/>
</enumeratedValueSet>
<enumeratedValueSet variable="innovation-rate">
<value value="0.1"/>
</enumeratedValueSet>
<enumeratedValueSet variable="communities-number">
<value value="1"/>
</enumeratedValueSet>
<enumeratedValueSet variable="carrying-capacity">
<value value="3000"/>
<value value="5000"/>
<value value="10000"/>
</enumeratedValueSet>
<enumeratedValueSet variable="polis-threshold">
<value value="1500"/>
</enumeratedValueSet>
<enumeratedValueSet variable="fission-probability">
<value value="0.2"/>
</enumeratedValueSet>
<enumeratedValueSet variable="pop-growth">
<value value="0.05"/>
</enumeratedValueSet>
<enumeratedValueSet variable="scaling-exponent">
<value value="1.17"/>
</enumeratedValueSet>
<enumeratedValueSet variable="time-limit">
<value value="1000"/>
</enumeratedValueSet>
<enumeratedValueSet variable="village-threshold">
<value value="500"/>
</enumeratedValueSet>
<enumeratedValueSet variable="face-to-face">
<value value="150"/>
</enumeratedValueSet>
<enumeratedValueSet variable="territory-viz">
<value value="false"/>
</enumeratedValueSet>
</experiment>
<experiment name="CAA-fission" repetitions="10" runMetricsEveryStep="false">
<setup>setup</setup>
<go>go</go>
<timeLimit steps="500"/>
<metric>population-sizes</metric>
<enumeratedValueSet variable="interaction-mode">
<value value="false"/>
</enumeratedValueSet>
<enumeratedValueSet variable="buffer-zone">
<value value="30"/>
</enumeratedValueSet>
<enumeratedValueSet variable="innovation-rate">
<value value="0.1"/>
</enumeratedValueSet>
<enumeratedValueSet variable="communities-number">
<value value="1"/>
</enumeratedValueSet>
<enumeratedValueSet variable="carrying-capacity">
<value value="5000"/>
</enumeratedValueSet>
<enumeratedValueSet variable="polis-threshold">
<value value="1500"/>
</enumeratedValueSet>
<enumeratedValueSet variable="fission-probability">
<value value="0.1"/>
<value value="0.2"/>
<value value="0.5"/>
</enumeratedValueSet>
<enumeratedValueSet variable="pop-growth">
<value value="0.05"/>
</enumeratedValueSet>
<enumeratedValueSet variable="scaling-exponent">
<value value="1.17"/>
</enumeratedValueSet>
<enumeratedValueSet variable="time-limit">
<value value="1000"/>
</enumeratedValueSet>
<enumeratedValueSet variable="village-threshold">
<value value="500"/>
</enumeratedValueSet>
<enumeratedValueSet variable="face-to-face">
<value value="150"/>
</enumeratedValueSet>
<enumeratedValueSet variable="territory-viz">
<value value="false"/>
</enumeratedValueSet>
</experiment>
</experiments>
@#$#@#$#@
@#$#@#$#@
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
@#$#@#$#@
0
@#$#@#$#@
| NetLogo | 5 | driesdaems10/PolisABM | PolisABM_v5.nlogo | [
"MIT"
] |
REBOL [
Title: "Creates Red/System dylib tests"
Author: "Peter W A Wood"
File: %create-dylib-auto-test.r
Version: 0.1.0
Rights: "Copyright (C) 2014-2015 Peter W A Wood. All rights reserved."
License: "BSD-3 - https://github.com/red/red/blob/origin/BSD-3-License.txt"
]
create-dylib-auto-test: func [
target [string!]
dir-out [file!]
exe-dir-out [file!]
][
;;; Initialisations
file-out: dir-out/dylib-auto-test.reds
;; test script header including the lib definitions
test-script-header: read %dylib-test-script-header.txt
;; the libs
libs: read %dylib-libs.txt
;; the tests
tests: read %dylib-tests.txt
;; test script footer
test-script-footer: read %dylib-test-script-footer.txt
;; workout dll names
suffix: switch/default target [
"Darwin" [".dylib"]
"Windows" [".dll"]
][
".so"
]
;;; Processing
;; update the test header with the current make file length and write it
replace test-script-header "###make-length###" length? read %make-dylib-auto-test.r
write file-out test-script-header
;; update the #include statements, write them and the tests
if target [
dll1-name: join %libtest-dll1 suffix
dll2-name: join %libtest-dll2 suffix
either any [
target = "Windows"
exe-dir-out = %./
][
replace libs "***test-dll1***" dll1-name
replace libs "***test-dll2***" dll2-name
][
replace libs "***test-dll1***" to-local-file clean-path exe-dir-out/:dll1-name
replace libs "***test-dll2***" to-local-file clean-path exe-dir-out/:dll2-name
]
write/append file-out libs
write/append file-out tests
]
;; write the test footer
write/append file-out test-script-footer
] | R | 5 | 0xflotus/red | system/tests/source/units/create-dylib-auto-test.r | [
"BSL-1.0",
"BSD-3-Clause"
] |
/*##############################################################################
HPCC SYSTEMS software Copyright (C) 2018 HPCC Systems®.
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.
############################################################################## */
//class=embedded
//class=python2
IMPORT Python;
r := RECORD
UNSIGNED id;
STRING name;
END;
m(unsigned numRows, boolean isLocal = false, unsigned numParallel = 0) := MODULE
EXPORT streamed dataset(r) myDataset(unsigned numRows = numRows) := EMBED(Python : activity, local(isLocal), parallel(numParallel))
numSlaves = __activity__.numSlaves
numParallel = numSlaves * __activity__.numStrands
rowsPerPart = (numRows + numParallel - 1) / numParallel
thisSlave = __activity__.slave
thisIndex = thisSlave * __activity__.numStrands + __activity__.strand
first = thisIndex * rowsPerPart
last = first + rowsPerPart
if first > numRows:
first = numRows
if last > numRows:
last = numRows
names = [ "Gavin", "Richard", "John", "Bart" ]
while first < last:
yield (first, names[first % 4 ])
first += 1
ENDEMBED;
END;
r2 := RECORD
UNSIGNED id;
DATASET(r) child;
END;
sequential(
//Global activity - fixed number of rows
output(m(10).myDataset());
//Local version of the activity
output(count(m(10, isLocal := true).myDataset()) = CLUSTERSIZE * 10);
//Check that stranding (if implemented) still generates unique records
output(COUNT(DEDUP(m(1000, numParallel := 5).myDataset(), id, ALL)));
//Check that the activity can also be executed in a child query
output(DATASET(10, TRANSFORM(r2, SELF.id := COUNTER; SELF.child := m(COUNTER).myDataset())));
//Test stranding inside a child query
output(DATASET(10, TRANSFORM(r2, SELF.id := COUNTER; SELF.child := m(COUNTER, NumParallel := 3).myDataset())));
); | ECL | 4 | davidarcher/HPCC-Platform | testing/regress/ecl/py2embedactivity.ecl | [
"Apache-2.0"
] |
/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's 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.
//
// * The name of the copyright holders may not 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 Intel Corporation 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.
//
//M*/
#ifndef _RGBE_HDR_H_
#define _RGBE_HDR_H_
// posted to http://www.graphics.cornell.edu/~bjw/
// written by Bruce Walter (bjw@graphics.cornell.edu) 5/26/95
// based on code written by Greg Ward
#include <stdio.h>
typedef struct {
int valid; /* indicate which fields are valid */
char programtype[16]; /* listed at beginning of file to identify it
* after "#?". defaults to "RGBE" */
float gamma; /* image has already been gamma corrected with
* given gamma. defaults to 1.0 (no correction) */
float exposure; /* a value of 1.0 in an image corresponds to
* <exposure> watts/steradian/m^2.
* defaults to 1.0 */
} rgbe_header_info;
/* flags indicating which fields in an rgbe_header_info are valid */
#define RGBE_VALID_PROGRAMTYPE 0x01
#define RGBE_VALID_GAMMA 0x02
#define RGBE_VALID_EXPOSURE 0x04
/* return codes for rgbe routines */
#define RGBE_RETURN_SUCCESS 0
#define RGBE_RETURN_FAILURE -1
/* read or write headers */
/* you may set rgbe_header_info to null if you want to */
int RGBE_WriteHeader(FILE *fp, int width, int height, rgbe_header_info *info);
int RGBE_ReadHeader(FILE *fp, int *width, int *height, rgbe_header_info *info);
/* read or write pixels */
/* can read or write pixels in chunks of any size including single pixels*/
int RGBE_WritePixels(FILE *fp, float *data, int numpixels);
int RGBE_ReadPixels(FILE *fp, float *data, int numpixels);
/* read or write run length encoded files */
/* must be called to read or write whole scanlines */
int RGBE_WritePixels_RLE(FILE *fp, float *data, int scanline_width,
int num_scanlines);
int RGBE_ReadPixels_RLE(FILE *fp, float *data, int scanline_width,
int num_scanlines);
#endif/*_RGBE_HDR_H_*/
| C++ | 4 | thisisgopalmandal/opencv | modules/imgcodecs/src/rgbe.hpp | [
"BSD-3-Clause"
] |
actor Main
new create(env: Env) =>
try _create_tuple()._2 as Bool end
fun _create_tuple(): (U32, (Bool | None)) =>
let x: ((U32, Bool) | (U32, None)) = (1, true)
x
| Pony | 4 | rtpax/ponyc | test/libponyc-run/union-value-for-tuple-return-type/main.pony | [
"BSD-2-Clause"
] |
Import mojo
Class DeltaTimer
' Usage...
' 1) Create DeltaTimer object, eg.
' "Local dt:DeltaTimer = New DeltaTimer (60)"
' where 60 is your game's intended frame rate,
' regardless of device frame rate.
' 2) Call dt.UpdateDelta at start of OnUpdate...
' 3) Multiply all speeds by dt.delta...
' 4) That's it.
Field targetfps:Float = 60
Field currentticks:Float
Field lastticks:Float
Field frametime:Float
Field delta:Float
Method New (fps:Float)
targetfps = fps
lastticks = Millisecs
End
Method UpdateDelta ()
currentticks = Millisecs
frametime = currentticks - lastticks
delta = frametime / (1000.0 / targetfps)
lastticks = currentticks
End
End
Class Game Extends App
Global FPS:Int = 60
' Position/speed of example rects...
Field ux:Float = -16 ' Position increased by uncorrected speed
Field dx:Float = -16 ' Position increased by DELTA-CORRECTED speed
Field xs:Float = 4.0 ' Speed
Field dt:DeltaTimer ' A handle for the delta timer (to be created in OnCreate)
Method OnCreate ()
dt = New DeltaTimer ( FPS ) ' Gameplay update rate...
SetUpdateRate FPS ' ... may be different to device/app update rate!
End
Method OnUpdate ()
' ---------------------------------------------------------------------------
' 1) Get new frame delta...
' ---------------------------------------------------------------------------
dt.UpdateDelta
' ---------------------------------------------------------------------------
' 2) Multiply speeds by frame delta...
' ---------------------------------------------------------------------------
ux = ux + xs ' Speed NOT scaled by frame delta, ie. how NOT to do it...
dx = dx + xs * dt.delta ' Speed scaled by frame delta...
' Wrap rects around screen...
If ux > DeviceWidth + 16 Then ux = -16
If dx > DeviceWidth + 16 Then dx = -16
' Change FPS on the fly to see effect...
If KeyHit (KEY_LEFT)
FPS = FPS - 10
If FPS < 10 Then FPS = 10
SetUpdateRate FPS
Endif
If KeyHit (KEY_RIGHT)
FPS = FPS + 10
SetUpdateRate FPS
Endif
If KeyDown (KEY_ENTER)
FPS = 60
SetUpdateRate FPS
Endif
End
Method OnRender ()
Cls 32, 64, 128
DrawText "Time scale factor (Delta): " + dt.delta + " (Frame time: " + dt.frametime + " ms)", 0, 20
SetColor 255, 0, 0
DrawRect ux - 16, 200 - 16, 32, 32
SetColor 255, 255, 255
DrawText "Uncorrected", ux - 16, 200 - 32
SetColor 0, 255, 0
DrawRect dx - 16, 260 - 16, 32, 32
SetColor 255, 255, 255
DrawText "Corrected by delta timing", dx - 16, 260 - 32
DrawText "Use <- and -> plus ENTER to change game update rate (currently " + FPS + " fps)", 0, 60
End
End
Function Main ()
New Game
End
| Monkey | 5 | blitz-research/monkey | bananas/hitoro/delta/delta.monkey | [
"Zlib"
] |
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
*/
let React;
let ReactNoop;
let Scheduler;
let Suspense;
let getCacheForType;
let caches;
let seededCache;
describe('ReactSuspenseFallback', () => {
beforeEach(() => {
jest.resetModules();
React = require('react');
ReactNoop = require('react-noop-renderer');
Scheduler = require('scheduler');
Suspense = React.Suspense;
getCacheForType = React.unstable_getCacheForType;
caches = [];
seededCache = null;
});
function createTextCache() {
if (seededCache !== null) {
// Trick to seed a cache before it exists.
// TODO: Need a built-in API to seed data before the initial render (i.e.
// not a refresh because nothing has mounted yet).
const cache = seededCache;
seededCache = null;
return cache;
}
const data = new Map();
const version = caches.length + 1;
const cache = {
version,
data,
resolve(text) {
const record = data.get(text);
if (record === undefined) {
const newRecord = {
status: 'resolved',
value: text,
};
data.set(text, newRecord);
} else if (record.status === 'pending') {
const thenable = record.value;
record.status = 'resolved';
record.value = text;
thenable.pings.forEach(t => t());
}
},
reject(text, error) {
const record = data.get(text);
if (record === undefined) {
const newRecord = {
status: 'rejected',
value: error,
};
data.set(text, newRecord);
} else if (record.status === 'pending') {
const thenable = record.value;
record.status = 'rejected';
record.value = error;
thenable.pings.forEach(t => t());
}
},
};
caches.push(cache);
return cache;
}
function readText(text) {
const textCache = getCacheForType(createTextCache);
const record = textCache.data.get(text);
if (record !== undefined) {
switch (record.status) {
case 'pending':
Scheduler.unstable_yieldValue(`Suspend! [${text}]`);
throw record.value;
case 'rejected':
Scheduler.unstable_yieldValue(`Error! [${text}]`);
throw record.value;
case 'resolved':
return textCache.version;
}
} else {
Scheduler.unstable_yieldValue(`Suspend! [${text}]`);
const thenable = {
pings: [],
then(resolve) {
if (newRecord.status === 'pending') {
thenable.pings.push(resolve);
} else {
Promise.resolve().then(() => resolve(newRecord.value));
}
},
};
const newRecord = {
status: 'pending',
value: thenable,
};
textCache.data.set(text, newRecord);
throw thenable;
}
}
function Text({text}) {
Scheduler.unstable_yieldValue(text);
return <span prop={text} />;
}
function AsyncText({text, showVersion}) {
const version = readText(text);
const fullText = showVersion ? `${text} [v${version}]` : text;
Scheduler.unstable_yieldValue(fullText);
return <span prop={fullText} />;
}
function span(prop) {
return {type: 'span', children: [], prop, hidden: false};
}
// @gate enableCache
it('suspends and shows fallback', () => {
ReactNoop.render(
<Suspense fallback={<Text text="Loading..." />}>
<AsyncText text="A" ms={100} />
</Suspense>,
);
expect(Scheduler).toFlushAndYield(['Suspend! [A]', 'Loading...']);
expect(ReactNoop.getChildren()).toEqual([span('Loading...')]);
});
// @gate enableCache
it('suspends and shows null fallback', () => {
ReactNoop.render(
<Suspense fallback={null}>
<AsyncText text="A" ms={100} />
</Suspense>,
);
expect(Scheduler).toFlushAndYield([
'Suspend! [A]',
// null
]);
expect(ReactNoop.getChildren()).toEqual([]);
});
// @gate enableCache
it('suspends and shows undefined fallback', () => {
ReactNoop.render(
<Suspense>
<AsyncText text="A" ms={100} />
</Suspense>,
);
expect(Scheduler).toFlushAndYield([
'Suspend! [A]',
// null
]);
expect(ReactNoop.getChildren()).toEqual([]);
});
// @gate enableCache
it('suspends and shows inner fallback', () => {
ReactNoop.render(
<Suspense fallback={<Text text="Should not show..." />}>
<Suspense fallback={<Text text="Loading..." />}>
<AsyncText text="A" ms={100} />
</Suspense>
</Suspense>,
);
expect(Scheduler).toFlushAndYield(['Suspend! [A]', 'Loading...']);
expect(ReactNoop.getChildren()).toEqual([span('Loading...')]);
});
// @gate enableCache
it('suspends and shows inner undefined fallback', () => {
ReactNoop.render(
<Suspense fallback={<Text text="Should not show..." />}>
<Suspense>
<AsyncText text="A" ms={100} />
</Suspense>
</Suspense>,
);
expect(Scheduler).toFlushAndYield([
'Suspend! [A]',
// null
]);
expect(ReactNoop.getChildren()).toEqual([]);
});
// @gate enableCache
it('suspends and shows inner null fallback', () => {
ReactNoop.render(
<Suspense fallback={<Text text="Should not show..." />}>
<Suspense fallback={null}>
<AsyncText text="A" ms={100} />
</Suspense>
</Suspense>,
);
expect(Scheduler).toFlushAndYield([
'Suspend! [A]',
// null
]);
expect(ReactNoop.getChildren()).toEqual([]);
});
});
| JavaScript | 5 | GBKstc/react-analysis | packages/react-reconciler/src/__tests__/ReactSuspenseFallback-test.js | [
"MIT"
] |
From b46706e1d5307d98a5a4895380f91380a0987ded Mon Sep 17 00:00:00 2001
From: Nemanja Ivanovic <nemanja.i.ibm@gmail.com>
Date: Mon, 18 Jan 2021 21:19:11 -0600
Subject: [PATCH] [PowerPC] Sign extend comparison operand for signed atomic
comparisons
As of 8dacca943af8a53a23b1caf3142d10fb4a77b645, we sign extend the atomic loaded
operand for signed subword comparisons. However, the assumption that the other
operand is correctly sign extended doesn't always hold. This patch sign extends
the other operand if it needs to be sign extended.
This is a second fix for https://bugs.llvm.org/show_bug.cgi?id=30451
Differential revision: https://reviews.llvm.org/D94058
---
llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 79 +++-
.../CodeGen/PowerPC/atomics-regression.ll | 440 ++++++++++--------
llvm/test/CodeGen/PowerPC/sign-ext-atomics.ll | 105 +++++
3 files changed, 418 insertions(+), 206 deletions(-)
create mode 100644 llvm/test/CodeGen/PowerPC/sign-ext-atomics.ll
diff --git llvm/lib/Target/PowerPC/PPCISelLowering.cpp llvm/lib/Target/PowerPC/PPCISelLowering.cpp
index f54f1673526d..867ef24ea53b 100644
--- llvm/lib/Target/PowerPC/PPCISelLowering.cpp
+++ llvm/lib/Target/PowerPC/PPCISelLowering.cpp
@@ -11444,17 +11444,88 @@ PPCTargetLowering::EmitAtomicBinary(MachineInstr &MI, MachineBasicBlock *BB,
return BB;
}
+static bool isSignExtended(MachineInstr &MI, const PPCInstrInfo *TII) {
+ switch(MI.getOpcode()) {
+ default:
+ return false;
+ case PPC::COPY:
+ return TII->isSignExtended(MI);
+ case PPC::LHA:
+ case PPC::LHA8:
+ case PPC::LHAU:
+ case PPC::LHAU8:
+ case PPC::LHAUX:
+ case PPC::LHAUX8:
+ case PPC::LHAX:
+ case PPC::LHAX8:
+ case PPC::LWA:
+ case PPC::LWAUX:
+ case PPC::LWAX:
+ case PPC::LWAX_32:
+ case PPC::LWA_32:
+ case PPC::PLHA:
+ case PPC::PLHA8:
+ case PPC::PLHA8pc:
+ case PPC::PLHApc:
+ case PPC::PLWA:
+ case PPC::PLWA8:
+ case PPC::PLWA8pc:
+ case PPC::PLWApc:
+ case PPC::EXTSB:
+ case PPC::EXTSB8:
+ case PPC::EXTSB8_32_64:
+ case PPC::EXTSB8_rec:
+ case PPC::EXTSB_rec:
+ case PPC::EXTSH:
+ case PPC::EXTSH8:
+ case PPC::EXTSH8_32_64:
+ case PPC::EXTSH8_rec:
+ case PPC::EXTSH_rec:
+ case PPC::EXTSW:
+ case PPC::EXTSWSLI:
+ case PPC::EXTSWSLI_32_64:
+ case PPC::EXTSWSLI_32_64_rec:
+ case PPC::EXTSWSLI_rec:
+ case PPC::EXTSW_32:
+ case PPC::EXTSW_32_64:
+ case PPC::EXTSW_32_64_rec:
+ case PPC::EXTSW_rec:
+ case PPC::SRAW:
+ case PPC::SRAWI:
+ case PPC::SRAWI_rec:
+ case PPC::SRAW_rec:
+ return true;
+ }
+ return false;
+}
+
MachineBasicBlock *PPCTargetLowering::EmitPartwordAtomicBinary(
MachineInstr &MI, MachineBasicBlock *BB,
bool is8bit, // operation
unsigned BinOpcode, unsigned CmpOpcode, unsigned CmpPred) const {
+ // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
+ const PPCInstrInfo *TII = Subtarget.getInstrInfo();
+
+ // If this is a signed comparison and the value being compared is not known
+ // to be sign extended, sign extend it here.
+ DebugLoc dl = MI.getDebugLoc();
+ MachineFunction *F = BB->getParent();
+ MachineRegisterInfo &RegInfo = F->getRegInfo();
+ Register incr = MI.getOperand(3).getReg();
+ bool IsSignExtended = Register::isVirtualRegister(incr) &&
+ isSignExtended(*RegInfo.getVRegDef(incr), TII);
+
+ if (CmpOpcode == PPC::CMPW && !IsSignExtended) {
+ Register ValueReg = RegInfo.createVirtualRegister(&PPC::GPRCRegClass);
+ BuildMI(*BB, MI, dl, TII->get(is8bit ? PPC::EXTSB : PPC::EXTSH), ValueReg)
+ .addReg(MI.getOperand(3).getReg());
+ MI.getOperand(3).setReg(ValueReg);
+ }
// If we support part-word atomic mnemonics, just use them
if (Subtarget.hasPartwordAtomics())
return EmitAtomicBinary(MI, BB, is8bit ? 1 : 2, BinOpcode, CmpOpcode,
CmpPred);
- // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
- const TargetInstrInfo *TII = Subtarget.getInstrInfo();
// In 64 bit mode we have to use 64 bits for addresses, even though the
// lwarx/stwcx are 32 bits. With the 32-bit atomics we can use address
// registers without caring whether they're 32 or 64, but here we're
@@ -11464,14 +11535,11 @@ MachineBasicBlock *PPCTargetLowering::EmitPartwordAtomicBinary(
unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
const BasicBlock *LLVM_BB = BB->getBasicBlock();
- MachineFunction *F = BB->getParent();
MachineFunction::iterator It = ++BB->getIterator();
Register dest = MI.getOperand(0).getReg();
Register ptrA = MI.getOperand(1).getReg();
Register ptrB = MI.getOperand(2).getReg();
- Register incr = MI.getOperand(3).getReg();
- DebugLoc dl = MI.getDebugLoc();
MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
MachineBasicBlock *loop2MBB =
@@ -11485,7 +11553,6 @@ MachineBasicBlock *PPCTargetLowering::EmitPartwordAtomicBinary(
std::next(MachineBasicBlock::iterator(MI)), BB->end());
exitMBB->transferSuccessorsAndUpdatePHIs(BB);
- MachineRegisterInfo &RegInfo = F->getRegInfo();
const TargetRegisterClass *RC =
is64bit ? &PPC::G8RCRegClass : &PPC::GPRCRegClass;
const TargetRegisterClass *GPRC = &PPC::GPRCRegClass;
diff --git llvm/test/CodeGen/PowerPC/atomics-regression.ll llvm/test/CodeGen/PowerPC/atomics-regression.ll
index ae79f82e1e06..3b7caeee91e4 100644
--- llvm/test/CodeGen/PowerPC/atomics-regression.ll
+++ llvm/test/CodeGen/PowerPC/atomics-regression.ll
@@ -4352,16 +4352,17 @@ define i64 @test259(i64* %ptr, i64 %val) {
define i8 @test260(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test260:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: .LBB260_1:
-; PPC64LE-NEXT: lbarx 5, 0, 3
-; PPC64LE-NEXT: extsb 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB260_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 3
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB260_1
; PPC64LE-NEXT: .LBB260_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: blr
%ret = atomicrmw max i8* %ptr, i8 %val monotonic
ret i8 %ret
@@ -4370,16 +4371,17 @@ define i8 @test260(i8* %ptr, i8 %val) {
define i8 @test261(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test261:
; PPC64LE: # %bb.0:
-; PPC64LE-NEXT: mr 5, 3
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: .LBB261_1:
-; PPC64LE-NEXT: lbarx 3, 0, 5
-; PPC64LE-NEXT: extsb 6, 3
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB261_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 5
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB261_1
; PPC64LE-NEXT: .LBB261_3:
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw max i8* %ptr, i8 %val acquire
@@ -4389,17 +4391,18 @@ define i8 @test261(i8* %ptr, i8 %val) {
define i8 @test262(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test262:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: .LBB262_1:
-; PPC64LE-NEXT: lbarx 5, 0, 3
-; PPC64LE-NEXT: extsb 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB262_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 3
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB262_1
; PPC64LE-NEXT: .LBB262_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: blr
%ret = atomicrmw max i8* %ptr, i8 %val release
ret i8 %ret
@@ -4408,17 +4411,18 @@ define i8 @test262(i8* %ptr, i8 %val) {
define i8 @test263(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test263:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: .LBB263_1:
-; PPC64LE-NEXT: lbarx 5, 0, 3
-; PPC64LE-NEXT: extsb 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB263_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 3
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB263_1
; PPC64LE-NEXT: .LBB263_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw max i8* %ptr, i8 %val acq_rel
@@ -4428,17 +4432,18 @@ define i8 @test263(i8* %ptr, i8 %val) {
define i8 @test264(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test264:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: sync
; PPC64LE-NEXT: .LBB264_1:
-; PPC64LE-NEXT: lbarx 5, 0, 3
-; PPC64LE-NEXT: extsb 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB264_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 3
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB264_1
; PPC64LE-NEXT: .LBB264_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw max i8* %ptr, i8 %val seq_cst
@@ -4448,16 +4453,17 @@ define i8 @test264(i8* %ptr, i8 %val) {
define i16 @test265(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test265:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: .LBB265_1:
-; PPC64LE-NEXT: lharx 5, 0, 3
-; PPC64LE-NEXT: extsh 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB265_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 3
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB265_1
; PPC64LE-NEXT: .LBB265_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: blr
%ret = atomicrmw max i16* %ptr, i16 %val monotonic
ret i16 %ret
@@ -4466,16 +4472,17 @@ define i16 @test265(i16* %ptr, i16 %val) {
define i16 @test266(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test266:
; PPC64LE: # %bb.0:
-; PPC64LE-NEXT: mr 5, 3
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: .LBB266_1:
-; PPC64LE-NEXT: lharx 3, 0, 5
-; PPC64LE-NEXT: extsh 6, 3
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB266_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 5
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB266_1
; PPC64LE-NEXT: .LBB266_3:
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw max i16* %ptr, i16 %val acquire
@@ -4485,17 +4492,18 @@ define i16 @test266(i16* %ptr, i16 %val) {
define i16 @test267(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test267:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: .LBB267_1:
-; PPC64LE-NEXT: lharx 5, 0, 3
-; PPC64LE-NEXT: extsh 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB267_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 3
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB267_1
; PPC64LE-NEXT: .LBB267_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: blr
%ret = atomicrmw max i16* %ptr, i16 %val release
ret i16 %ret
@@ -4504,17 +4512,18 @@ define i16 @test267(i16* %ptr, i16 %val) {
define i16 @test268(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test268:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: .LBB268_1:
-; PPC64LE-NEXT: lharx 5, 0, 3
-; PPC64LE-NEXT: extsh 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB268_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 3
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB268_1
; PPC64LE-NEXT: .LBB268_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw max i16* %ptr, i16 %val acq_rel
@@ -4524,17 +4533,18 @@ define i16 @test268(i16* %ptr, i16 %val) {
define i16 @test269(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test269:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: sync
; PPC64LE-NEXT: .LBB269_1:
-; PPC64LE-NEXT: lharx 5, 0, 3
-; PPC64LE-NEXT: extsh 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB269_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 3
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB269_1
; PPC64LE-NEXT: .LBB269_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw max i16* %ptr, i16 %val seq_cst
@@ -4726,16 +4736,17 @@ define i64 @test279(i64* %ptr, i64 %val) {
define i8 @test280(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test280:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: .LBB280_1:
-; PPC64LE-NEXT: lbarx 5, 0, 3
-; PPC64LE-NEXT: extsb 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB280_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 3
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB280_1
; PPC64LE-NEXT: .LBB280_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: blr
%ret = atomicrmw min i8* %ptr, i8 %val monotonic
ret i8 %ret
@@ -4744,16 +4755,17 @@ define i8 @test280(i8* %ptr, i8 %val) {
define i8 @test281(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test281:
; PPC64LE: # %bb.0:
-; PPC64LE-NEXT: mr 5, 3
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: .LBB281_1:
-; PPC64LE-NEXT: lbarx 3, 0, 5
-; PPC64LE-NEXT: extsb 6, 3
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB281_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 5
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB281_1
; PPC64LE-NEXT: .LBB281_3:
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw min i8* %ptr, i8 %val acquire
@@ -4763,17 +4775,18 @@ define i8 @test281(i8* %ptr, i8 %val) {
define i8 @test282(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test282:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: .LBB282_1:
-; PPC64LE-NEXT: lbarx 5, 0, 3
-; PPC64LE-NEXT: extsb 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB282_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 3
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB282_1
; PPC64LE-NEXT: .LBB282_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: blr
%ret = atomicrmw min i8* %ptr, i8 %val release
ret i8 %ret
@@ -4782,17 +4795,18 @@ define i8 @test282(i8* %ptr, i8 %val) {
define i8 @test283(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test283:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: .LBB283_1:
-; PPC64LE-NEXT: lbarx 5, 0, 3
-; PPC64LE-NEXT: extsb 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB283_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 3
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB283_1
; PPC64LE-NEXT: .LBB283_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw min i8* %ptr, i8 %val acq_rel
@@ -4802,17 +4816,18 @@ define i8 @test283(i8* %ptr, i8 %val) {
define i8 @test284(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test284:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: sync
; PPC64LE-NEXT: .LBB284_1:
-; PPC64LE-NEXT: lbarx 5, 0, 3
-; PPC64LE-NEXT: extsb 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB284_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 3
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB284_1
; PPC64LE-NEXT: .LBB284_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw min i8* %ptr, i8 %val seq_cst
@@ -4822,16 +4837,17 @@ define i8 @test284(i8* %ptr, i8 %val) {
define i16 @test285(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test285:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: .LBB285_1:
-; PPC64LE-NEXT: lharx 5, 0, 3
-; PPC64LE-NEXT: extsh 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB285_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 3
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB285_1
; PPC64LE-NEXT: .LBB285_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: blr
%ret = atomicrmw min i16* %ptr, i16 %val monotonic
ret i16 %ret
@@ -4840,16 +4856,17 @@ define i16 @test285(i16* %ptr, i16 %val) {
define i16 @test286(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test286:
; PPC64LE: # %bb.0:
-; PPC64LE-NEXT: mr 5, 3
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: .LBB286_1:
-; PPC64LE-NEXT: lharx 3, 0, 5
-; PPC64LE-NEXT: extsh 6, 3
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB286_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 5
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB286_1
; PPC64LE-NEXT: .LBB286_3:
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw min i16* %ptr, i16 %val acquire
@@ -4859,17 +4876,18 @@ define i16 @test286(i16* %ptr, i16 %val) {
define i16 @test287(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test287:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: .LBB287_1:
-; PPC64LE-NEXT: lharx 5, 0, 3
-; PPC64LE-NEXT: extsh 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB287_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 3
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB287_1
; PPC64LE-NEXT: .LBB287_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: blr
%ret = atomicrmw min i16* %ptr, i16 %val release
ret i16 %ret
@@ -4878,17 +4896,18 @@ define i16 @test287(i16* %ptr, i16 %val) {
define i16 @test288(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test288:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: .LBB288_1:
-; PPC64LE-NEXT: lharx 5, 0, 3
-; PPC64LE-NEXT: extsh 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB288_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 3
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB288_1
; PPC64LE-NEXT: .LBB288_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw min i16* %ptr, i16 %val acq_rel
@@ -4898,17 +4917,18 @@ define i16 @test288(i16* %ptr, i16 %val) {
define i16 @test289(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test289:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: sync
; PPC64LE-NEXT: .LBB289_1:
-; PPC64LE-NEXT: lharx 5, 0, 3
-; PPC64LE-NEXT: extsh 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB289_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 3
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB289_1
; PPC64LE-NEXT: .LBB289_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw min i16* %ptr, i16 %val seq_cst
@@ -8076,16 +8096,17 @@ define i64 @test479(i64* %ptr, i64 %val) {
define i8 @test480(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test480:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: .LBB480_1:
-; PPC64LE-NEXT: lbarx 5, 0, 3
-; PPC64LE-NEXT: extsb 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB480_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 3
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB480_1
; PPC64LE-NEXT: .LBB480_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: blr
%ret = atomicrmw max i8* %ptr, i8 %val syncscope("singlethread") monotonic
ret i8 %ret
@@ -8094,16 +8115,17 @@ define i8 @test480(i8* %ptr, i8 %val) {
define i8 @test481(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test481:
; PPC64LE: # %bb.0:
-; PPC64LE-NEXT: mr 5, 3
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: .LBB481_1:
-; PPC64LE-NEXT: lbarx 3, 0, 5
-; PPC64LE-NEXT: extsb 6, 3
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB481_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 5
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB481_1
; PPC64LE-NEXT: .LBB481_3:
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw max i8* %ptr, i8 %val syncscope("singlethread") acquire
@@ -8113,17 +8135,18 @@ define i8 @test481(i8* %ptr, i8 %val) {
define i8 @test482(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test482:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: .LBB482_1:
-; PPC64LE-NEXT: lbarx 5, 0, 3
-; PPC64LE-NEXT: extsb 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB482_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 3
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB482_1
; PPC64LE-NEXT: .LBB482_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: blr
%ret = atomicrmw max i8* %ptr, i8 %val syncscope("singlethread") release
ret i8 %ret
@@ -8132,17 +8155,18 @@ define i8 @test482(i8* %ptr, i8 %val) {
define i8 @test483(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test483:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: .LBB483_1:
-; PPC64LE-NEXT: lbarx 5, 0, 3
-; PPC64LE-NEXT: extsb 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB483_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 3
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB483_1
; PPC64LE-NEXT: .LBB483_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw max i8* %ptr, i8 %val syncscope("singlethread") acq_rel
@@ -8152,17 +8176,18 @@ define i8 @test483(i8* %ptr, i8 %val) {
define i8 @test484(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test484:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: sync
; PPC64LE-NEXT: .LBB484_1:
-; PPC64LE-NEXT: lbarx 5, 0, 3
-; PPC64LE-NEXT: extsb 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB484_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 3
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB484_1
; PPC64LE-NEXT: .LBB484_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw max i8* %ptr, i8 %val syncscope("singlethread") seq_cst
@@ -8172,16 +8197,17 @@ define i8 @test484(i8* %ptr, i8 %val) {
define i16 @test485(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test485:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: .LBB485_1:
-; PPC64LE-NEXT: lharx 5, 0, 3
-; PPC64LE-NEXT: extsh 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB485_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 3
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB485_1
; PPC64LE-NEXT: .LBB485_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: blr
%ret = atomicrmw max i16* %ptr, i16 %val syncscope("singlethread") monotonic
ret i16 %ret
@@ -8190,16 +8216,17 @@ define i16 @test485(i16* %ptr, i16 %val) {
define i16 @test486(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test486:
; PPC64LE: # %bb.0:
-; PPC64LE-NEXT: mr 5, 3
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: .LBB486_1:
-; PPC64LE-NEXT: lharx 3, 0, 5
-; PPC64LE-NEXT: extsh 6, 3
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB486_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 5
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB486_1
; PPC64LE-NEXT: .LBB486_3:
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw max i16* %ptr, i16 %val syncscope("singlethread") acquire
@@ -8209,17 +8236,18 @@ define i16 @test486(i16* %ptr, i16 %val) {
define i16 @test487(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test487:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: .LBB487_1:
-; PPC64LE-NEXT: lharx 5, 0, 3
-; PPC64LE-NEXT: extsh 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB487_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 3
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB487_1
; PPC64LE-NEXT: .LBB487_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: blr
%ret = atomicrmw max i16* %ptr, i16 %val syncscope("singlethread") release
ret i16 %ret
@@ -8228,17 +8256,18 @@ define i16 @test487(i16* %ptr, i16 %val) {
define i16 @test488(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test488:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: .LBB488_1:
-; PPC64LE-NEXT: lharx 5, 0, 3
-; PPC64LE-NEXT: extsh 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB488_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 3
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB488_1
; PPC64LE-NEXT: .LBB488_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw max i16* %ptr, i16 %val syncscope("singlethread") acq_rel
@@ -8248,17 +8277,18 @@ define i16 @test488(i16* %ptr, i16 %val) {
define i16 @test489(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test489:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: sync
; PPC64LE-NEXT: .LBB489_1:
-; PPC64LE-NEXT: lharx 5, 0, 3
-; PPC64LE-NEXT: extsh 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: ble 0, .LBB489_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 3
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB489_1
; PPC64LE-NEXT: .LBB489_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw max i16* %ptr, i16 %val syncscope("singlethread") seq_cst
@@ -8450,16 +8480,17 @@ define i64 @test499(i64* %ptr, i64 %val) {
define i8 @test500(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test500:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: .LBB500_1:
-; PPC64LE-NEXT: lbarx 5, 0, 3
-; PPC64LE-NEXT: extsb 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB500_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 3
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB500_1
; PPC64LE-NEXT: .LBB500_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: blr
%ret = atomicrmw min i8* %ptr, i8 %val syncscope("singlethread") monotonic
ret i8 %ret
@@ -8468,16 +8499,17 @@ define i8 @test500(i8* %ptr, i8 %val) {
define i8 @test501(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test501:
; PPC64LE: # %bb.0:
-; PPC64LE-NEXT: mr 5, 3
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: .LBB501_1:
-; PPC64LE-NEXT: lbarx 3, 0, 5
-; PPC64LE-NEXT: extsb 6, 3
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB501_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 5
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB501_1
; PPC64LE-NEXT: .LBB501_3:
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw min i8* %ptr, i8 %val syncscope("singlethread") acquire
@@ -8487,17 +8519,18 @@ define i8 @test501(i8* %ptr, i8 %val) {
define i8 @test502(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test502:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: .LBB502_1:
-; PPC64LE-NEXT: lbarx 5, 0, 3
-; PPC64LE-NEXT: extsb 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB502_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 3
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB502_1
; PPC64LE-NEXT: .LBB502_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: blr
%ret = atomicrmw min i8* %ptr, i8 %val syncscope("singlethread") release
ret i8 %ret
@@ -8506,17 +8539,18 @@ define i8 @test502(i8* %ptr, i8 %val) {
define i8 @test503(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test503:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: .LBB503_1:
-; PPC64LE-NEXT: lbarx 5, 0, 3
-; PPC64LE-NEXT: extsb 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB503_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 3
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB503_1
; PPC64LE-NEXT: .LBB503_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw min i8* %ptr, i8 %val syncscope("singlethread") acq_rel
@@ -8526,17 +8560,18 @@ define i8 @test503(i8* %ptr, i8 %val) {
define i8 @test504(i8* %ptr, i8 %val) {
; PPC64LE-LABEL: test504:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsb 5, 4
; PPC64LE-NEXT: sync
; PPC64LE-NEXT: .LBB504_1:
-; PPC64LE-NEXT: lbarx 5, 0, 3
-; PPC64LE-NEXT: extsb 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lbarx 4, 0, 3
+; PPC64LE-NEXT: extsb 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB504_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: stbcx. 4, 0, 3
+; PPC64LE-NEXT: stbcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB504_1
; PPC64LE-NEXT: .LBB504_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw min i8* %ptr, i8 %val syncscope("singlethread") seq_cst
@@ -8546,16 +8581,17 @@ define i8 @test504(i8* %ptr, i8 %val) {
define i16 @test505(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test505:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: .LBB505_1:
-; PPC64LE-NEXT: lharx 5, 0, 3
-; PPC64LE-NEXT: extsh 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB505_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 3
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB505_1
; PPC64LE-NEXT: .LBB505_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: blr
%ret = atomicrmw min i16* %ptr, i16 %val syncscope("singlethread") monotonic
ret i16 %ret
@@ -8564,16 +8600,17 @@ define i16 @test505(i16* %ptr, i16 %val) {
define i16 @test506(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test506:
; PPC64LE: # %bb.0:
-; PPC64LE-NEXT: mr 5, 3
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: .LBB506_1:
-; PPC64LE-NEXT: lharx 3, 0, 5
-; PPC64LE-NEXT: extsh 6, 3
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB506_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 5
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB506_1
; PPC64LE-NEXT: .LBB506_3:
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw min i16* %ptr, i16 %val syncscope("singlethread") acquire
@@ -8583,17 +8620,18 @@ define i16 @test506(i16* %ptr, i16 %val) {
define i16 @test507(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test507:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: .LBB507_1:
-; PPC64LE-NEXT: lharx 5, 0, 3
-; PPC64LE-NEXT: extsh 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB507_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 3
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB507_1
; PPC64LE-NEXT: .LBB507_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: blr
%ret = atomicrmw min i16* %ptr, i16 %val syncscope("singlethread") release
ret i16 %ret
@@ -8602,17 +8640,18 @@ define i16 @test507(i16* %ptr, i16 %val) {
define i16 @test508(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test508:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: .LBB508_1:
-; PPC64LE-NEXT: lharx 5, 0, 3
-; PPC64LE-NEXT: extsh 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB508_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 3
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB508_1
; PPC64LE-NEXT: .LBB508_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw min i16* %ptr, i16 %val syncscope("singlethread") acq_rel
@@ -8622,17 +8661,18 @@ define i16 @test508(i16* %ptr, i16 %val) {
define i16 @test509(i16* %ptr, i16 %val) {
; PPC64LE-LABEL: test509:
; PPC64LE: # %bb.0:
+; PPC64LE-NEXT: extsh 5, 4
; PPC64LE-NEXT: sync
; PPC64LE-NEXT: .LBB509_1:
-; PPC64LE-NEXT: lharx 5, 0, 3
-; PPC64LE-NEXT: extsh 6, 5
-; PPC64LE-NEXT: cmpw 4, 6
+; PPC64LE-NEXT: lharx 4, 0, 3
+; PPC64LE-NEXT: extsh 6, 4
+; PPC64LE-NEXT: cmpw 5, 6
; PPC64LE-NEXT: bge 0, .LBB509_3
; PPC64LE-NEXT: # %bb.2:
-; PPC64LE-NEXT: sthcx. 4, 0, 3
+; PPC64LE-NEXT: sthcx. 5, 0, 3
; PPC64LE-NEXT: bne 0, .LBB509_1
; PPC64LE-NEXT: .LBB509_3:
-; PPC64LE-NEXT: mr 3, 5
+; PPC64LE-NEXT: mr 3, 4
; PPC64LE-NEXT: lwsync
; PPC64LE-NEXT: blr
%ret = atomicrmw min i16* %ptr, i16 %val syncscope("singlethread") seq_cst
diff --git llvm/test/CodeGen/PowerPC/sign-ext-atomics.ll llvm/test/CodeGen/PowerPC/sign-ext-atomics.ll
new file mode 100644
index 000000000000..7716dc0cedcc
--- /dev/null
+++ llvm/test/CodeGen/PowerPC/sign-ext-atomics.ll
@@ -0,0 +1,105 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
+; RUN: llc -mtriple=powerpc64le-linux-gnu < %s | FileCheck %s
+define i16 @SEXTParam(i16 signext %0) #0 {
+; CHECK-LABEL: SEXTParam:
+; CHECK: # %bb.0: # %top
+; CHECK-NEXT: li 4, 0
+; CHECK-NEXT: sth 4, -4(1)
+; CHECK-NEXT: addi 4, 1, -4
+; CHECK-NEXT: lwsync
+; CHECK-NEXT: .LBB0_1: # %top
+; CHECK-NEXT: #
+; CHECK-NEXT: lharx 5, 0, 4
+; CHECK-NEXT: extsh 5, 5
+; CHECK-NEXT: cmpw 3, 5
+; CHECK-NEXT: bge 0, .LBB0_3
+; CHECK-NEXT: # %bb.2: # %top
+; CHECK-NEXT: #
+; CHECK-NEXT: sthcx. 3, 0, 4
+; CHECK-NEXT: bne 0, .LBB0_1
+; CHECK-NEXT: .LBB0_3: # %top
+; CHECK-NEXT: lwsync
+; CHECK-NEXT: lhz 3, -4(1)
+; CHECK-NEXT: cmpd 7, 3, 3
+; CHECK-NEXT: bne- 7, .+4
+; CHECK-NEXT: isync
+; CHECK-NEXT: blr
+top:
+ %1 = alloca i16, align 4
+ %2 = bitcast i16* %1 to i8*
+ store i16 0, i16* %1, align 4
+ %rv.i = atomicrmw min i16* %1, i16 %0 acq_rel
+ %rv.i2 = load atomic i16, i16* %1 acquire, align 16
+ ret i16 %rv.i2
+}
+
+define i16 @noSEXTParam(i16 %0) #0 {
+; CHECK-LABEL: noSEXTParam:
+; CHECK: # %bb.0: # %top
+; CHECK-NEXT: li 4, 0
+; CHECK-NEXT: extsh 3, 3
+; CHECK-NEXT: sth 4, -4(1)
+; CHECK-NEXT: addi 4, 1, -4
+; CHECK-NEXT: lwsync
+; CHECK-NEXT: .LBB1_1: # %top
+; CHECK-NEXT: #
+; CHECK-NEXT: lharx 5, 0, 4
+; CHECK-NEXT: extsh 5, 5
+; CHECK-NEXT: cmpw 3, 5
+; CHECK-NEXT: bge 0, .LBB1_3
+; CHECK-NEXT: # %bb.2: # %top
+; CHECK-NEXT: #
+; CHECK-NEXT: sthcx. 3, 0, 4
+; CHECK-NEXT: bne 0, .LBB1_1
+; CHECK-NEXT: .LBB1_3: # %top
+; CHECK-NEXT: lwsync
+; CHECK-NEXT: lhz 3, -4(1)
+; CHECK-NEXT: cmpd 7, 3, 3
+; CHECK-NEXT: bne- 7, .+4
+; CHECK-NEXT: isync
+; CHECK-NEXT: blr
+top:
+ %1 = alloca i16, align 4
+ %2 = bitcast i16* %1 to i8*
+ store i16 0, i16* %1, align 4
+ %rv.i = atomicrmw min i16* %1, i16 %0 acq_rel
+ %rv.i2 = load atomic i16, i16* %1 acquire, align 16
+ ret i16 %rv.i2
+}
+
+define i16 @noSEXTLoad(i16 *%p) #0 {
+; CHECK-LABEL: noSEXTLoad:
+; CHECK: # %bb.0: # %top
+; CHECK-NEXT: lhz 5, 0(3)
+; CHECK-NEXT: li 4, 0
+; CHECK-NEXT: addi 3, 1, -4
+; CHECK-NEXT: sth 4, -4(1)
+; CHECK-NEXT: extsh 4, 5
+; CHECK-NEXT: lwsync
+; CHECK-NEXT: .LBB2_1: # %top
+; CHECK-NEXT: #
+; CHECK-NEXT: lharx 5, 0, 3
+; CHECK-NEXT: extsh 5, 5
+; CHECK-NEXT: cmpw 4, 5
+; CHECK-NEXT: bge 0, .LBB2_3
+; CHECK-NEXT: # %bb.2: # %top
+; CHECK-NEXT: #
+; CHECK-NEXT: sthcx. 4, 0, 3
+; CHECK-NEXT: bne 0, .LBB2_1
+; CHECK-NEXT: .LBB2_3: # %top
+; CHECK-NEXT: lwsync
+; CHECK-NEXT: lhz 3, -4(1)
+; CHECK-NEXT: cmpd 7, 3, 3
+; CHECK-NEXT: bne- 7, .+4
+; CHECK-NEXT: isync
+; CHECK-NEXT: blr
+top:
+ %0 = load i16, i16* %p, align 2
+ %1 = alloca i16, align 4
+ %2 = bitcast i16* %1 to i8*
+ store i16 0, i16* %1, align 4
+ %rv.i = atomicrmw min i16* %1, i16 %0 acq_rel
+ %rv.i2 = load atomic i16, i16* %1 acquire, align 16
+ ret i16 %rv.i2
+}
+attributes #0 = { nounwind }
--
2.30.0
| Diff | 4 | jonas-schulze/julia | deps/patches/llvm-11-D94058-sext-atomic-ops.patch | [
"MIT"
] |
= 开源库及示例代码 =
本目录放置:面向程序员的开源代码库清单(含示例代码)。
为了方便查找,根据“编程语言”归类。(目前先整理两个编程语言,今后有空再补充其它语言)
* [/libs/cpp.wiki C/C++]
* [/libs/python.wiki Python]
| MediaWiki | 2 | FancyKings/opensource | libs/README.wiki | [
"CC0-1.0"
] |
@load ./expand-query
| Bro | 0 | LaudateCorpus1/cs-bro | bro-scripts/extensions/dns/__load__.bro | [
"BSD-2-Clause"
] |
package gw.internal.gosu.compiler.sample.enhancements.foo
uses gw.internal.gosu.compiler.sample.enhancements._ExtendsEnhanced
uses gw.internal.gosu.compiler.sample.enhancements._Enhanced
enhancement SampleExtendsEnhancedAccessEnhancement : _ExtendsEnhanced {
function ex_accessesProtectedMethod() : String {
return this.protectedMethod()
}
function ex_accessesStaticProtectedMethod() : String {
return _ExtendsEnhanced.staticProtectedMethod()
}
// TODO cgross - reenable pending http://jira/jira/browse/PL-8747
// function ex_accessesStaticProtectedMethod() : String {
// return _Enhanced.staticProtectedMethod()
// }
function ex_accessesProtectedProperty() : String {
return this.ProtectedProperty
}
// TODO cgross - reenable pending http://jira/jira/browse/PL-8747
// function ex_accessesStaticProtectedProperty() : String {
// return _Enhanced.StaticProtectedProperty
// }
function ex_accessesStaticProtectedProperty() : String {
return _ExtendsEnhanced.StaticProtectedProperty
}
function ex_writesProtectedProperty() : String {
this.ProtectedProperty = "updated property"
return this.ProtectedProperty
}
function ex_writesStaticProtectedProperty() : String {
var initialValue = _ExtendsEnhanced.StaticProtectedProperty
try
{
_ExtendsEnhanced.StaticProtectedProperty = "updated static property"
return _ExtendsEnhanced.StaticProtectedProperty
}
finally
{
_ExtendsEnhanced.StaticProtectedProperty = initialValue
}
}
// TODO cgross - reenable pending http://jira/jira/browse/PL-8747
// function ex_writesStaticProtectedProperty() : String {
// var initialValue = _Enhanced.StaticProtectedProperty
// try
// {
// _Enhanced.StaticProtectedProperty = "updated static property"
// return _Enhanced.StaticProtectedProperty
// }
// finally
// {
// _Enhanced.StaticProtectedProperty = initialValue
// }
// }
function ex_accessesProtectedField() : String {
return this._protectedField
}
function ex_accessesStaticProtectedField() : String {
return _ExtendsEnhanced._staticProtectedField
}
// TODO cgross - reenable pending http://jira/jira/browse/PL-8747
// function ex_accessesStaticProtectedField() : String {
// return _Enhanced._staticProtectedField
// }
function ex_writesProtectedField() : String {
this._protectedField = "updated field"
return this._protectedField
}
function ex_writesStaticProtectedField() : String {
var initialValue = _ExtendsEnhanced._staticProtectedField
try
{
_ExtendsEnhanced._staticProtectedField = "updated static field"
return _ExtendsEnhanced._staticProtectedField
}
finally
{
_ExtendsEnhanced._staticProtectedField = initialValue
}
}
// TODO cgross - reenable pending http://jira/jira/browse/PL-8747
// function ex_writesStaticProtectedField() : String {
// var initialValue = _Enhanced._staticProtectedField
// try
// {
// _Enhanced._staticProtectedField = "updated static field"
// return _Enhanced._staticProtectedField
// }
// finally
// {
// _Enhanced._staticProtectedField = initialValue
// }
// }
function ex_accessesProtectedConstructor() : boolean {
var x = new _Enhanced( 42 )
return x.ProtectedConstructorCalled
}
function ex_accessesProtectedMethodIndirectly() : String {
var x = new _Enhanced()
return x.protectedMethod()
}
function ex_accessesProtectedPropertyIndirectly() : String {
var x = new _Enhanced()
return x.ProtectedProperty
}
function ex_writesProtectedPropertyIndirectly() : String {
var x = new _Enhanced()
x.ProtectedProperty = "updated property"
return x.ProtectedProperty
}
function ex_accessesProtectedFieldIndirectly() : String {
var x = new _Enhanced()
return x._protectedField
}
function ex_writesProtectedFieldIndirectly() : String {
var x = new _Enhanced()
x._protectedField = "updated field"
return x._protectedField
}
function ex_accessesStaticProtectedMethodThroughThisPointer() : String {
return this.staticProtectedMethod()
}
function ex_accessesStaticProtectedPropertyThroughThisPointer() : String {
return this.StaticProtectedProperty
}
function ex_writesStaticProtectedPropertyThroughThisPointer() : String {
var initialValue = this.StaticProtectedProperty
try
{
this.StaticProtectedProperty = "updated static property"
return this.StaticProtectedProperty
}
finally
{
this.StaticProtectedProperty = initialValue
}
}
function ex_accessesStaticProtectedFieldThroughThisPointer() : String {
return this._staticProtectedField
}
function ex_writesStaticProtectedFieldThroughThisPointer() : String {
var initialValue = this._staticProtectedField
try
{
this._staticProtectedField = "updated static field"
return this._staticProtectedField
}
finally
{
this._staticProtectedField = initialValue
}
}
function ex_accessesStaticProtectedMethodIndirectly() : String {
var x = new _Enhanced()
return x.staticProtectedMethod()
}
function ex_accessesStaticProtectedPropertyIndirectly() : String {
var x = new _Enhanced()
return x.StaticProtectedProperty
}
function ex_writesStaticProtectedPropertyIndirectly() : String {
var x = new _Enhanced()
var initialValue = x.StaticProtectedProperty
try
{
x.StaticProtectedProperty = "updated static property"
return x.StaticProtectedProperty
}
finally
{
this.StaticProtectedProperty = initialValue
}
}
function ex_accessesStaticProtectedFieldIndirectly() : String {
var x = new _Enhanced()
return x._staticProtectedField
}
function ex_writesStaticProtectedFieldIndirectly() : String {
var x = new _Enhanced()
var initialValue = x._staticProtectedField
try
{
x._staticProtectedField = "updated static field"
return x._staticProtectedField
}
finally
{
x._staticProtectedField = initialValue
}
}
}
| Gosu | 5 | tcmoore32/sheer-madness | gosu-test/src/test/gosu/gw/internal/gosu/compiler/sample/enhancements/foo/SampleExtendsEnhancedAccessEnhancement.gsx | [
"Apache-2.0"
] |
redo-ifchange $1.c
echo c.do
cat $1.c
| Stata | 0 | BlameJohnny/redo | t/120-defaults-flat/c.do | [
"Apache-2.0"
] |
= Simple Mailer Support (padrino-mailer)
=== Overview
This component creates an easy and intuitive interface for delivering email within a Sinatra
application. The mail library is utilized to do the bulk of the work. There is full support for
rendering email templates, using an html content type and for file attachments. The Padrino Mailer
uses a familiar Sinatra syntax similar to that of defining routes for a controller.
=== Usage
Let's take a look at using the Mailer in an application. By default, the Mailer uses the built-in sendmail
command on the server. However, SMTP is also supported using the following configuration:
# Example for configuring gmail smtp
set :delivery_method, :smtp => {
:address => "smtp.gmail.com",
:port => 587,
:domain => 'your.host.name',
:user_name => '<username>',
:password => '<password>',
:authentication => 'plain',
:enable_starttls_auto => true
}
Once the delivery settings have been defined, the default will become smtp delivery but can be
overwritten in each message.
Padrino supports sending quick emails (using either sendmail or smtp) right from your controllers.
This is ideal for one-off emails where the full mailer declaration is simply unnecessary.
Delivering an email from within your controller is simple:
# app/controllers/session.rb
post :create do
email(:to => "john@smith.com", :subject => "Successfully Registered!", :body => "Test Body")
end
Padrino also supports structured mailer declarations. We can define a new mailer using a <tt>mailer</tt> block.
# app/mailers/sample_mailer.rb
MyAppName.mailers :sample do
email :registration do |name|
from 'admin@site.com'
to 'user@domain.com'
subject 'Welcome to the site!'
locals :name => name
content_type 'html' # optional, defaults to plain/text
charset 'windows-1252' # optional, defaults to utf-8
via :sendmail # optional, smtp if defined otherwise sendmail
render 'registration'
end
end
In addition to a standard body, Padrino also easily supports multi-part emails:
# app/mailers/sample_mailer.rb
MyAppName.mailers :sample do
email :registration do |name|
to 'padrino@test.lindsaar.net'
subject "nested multipart"
from "test@example.com"
text_part { render('multipart/basic.plain') }
html_part { render('multipart/basic.html') }
end
end
Defaults can also be declared on a per-mailer or app-wide basis:
# app/app.rb
set :mailer_defaults, :from => 'admin@site.com'
# app/mailers/sample_mailer.rb
MyAppName.mailers :sample do
defaults :content_type => 'html'
email :registration do |name, age|
# Uses default 'content_type' and 'from' values but can also overwrite them
to 'user@domain.com'
subject 'Welcome to the site!'
locals :name => name
render 'registration'
end
end
This defines a message called '<tt>registration</tt>' with the specified attributes. The <tt>body</tt> method
is invoking the render function passing the <tt>name</tt> attribute to the body message template which is defined in
<tt>[views_path]/mailers/sample/registration.erb</tt> as shown below:
# ./views/mailers/sample/registration.erb
This is the body of the email and can access the <%= name %> that was passed in from the mailer definition
That's all there is to defining the body of the email which can be plain text or html
Once the mailer definition has been completed and the template has been defined, the email can be sent using:
deliver(:sample, :registration, "Bob", "21")
And that will then deliver the email according the configured options. This is all you need to send basic emails.
The mailer also supports the attachment of files and various other options. Be sure to check out the
{Padrino Mailer}[http://padrinorb.com/guides/features/padrino-mailer/] guide for more details on usage.
== Copyright
Copyright (c) 2011-2015 Padrino. See LICENSE for details.
| RDoc | 4 | CyberFerret/padrino-framework | padrino-mailer/README.rdoc | [
"MIT"
] |
get:
description: Get all configured loggers
is: [ secured ]
responses:
200:
description: All loggers in the system
body:
application/json:
type: logging.Loggers
post:
description: Update a specific logger level
is: [ secured ]
body:
application/json:
type: logging.LoggerChange
responses:
200:
description: logger changed to the given logging level
body:
application/json:
type: logging.LoggerChange
422:
description: request not understood
| RAML | 4 | fquesnel/marathon | docs/docs/rest-api/public/api/general/logging.raml | [
"Apache-2.0"
] |
<%@ page contentType="text/html; charset=utf-8"%>
<%@ taglib prefix="a" uri="/WEB-INF/app.tld"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%@ taglib prefix="res" uri="http://www.unidal.org/webres"%>
<%@ taglib prefix="w" uri="http://www.unidal.org/web/core"%>
<jsp:useBean id="ctx" type="com.dianping.cat.system.page.web.Context" scope="request" />
<jsp:useBean id="payload" type="com.dianping.cat.system.page.web.Payload" scope="request" />
<jsp:useBean id="model" type="com.dianping.cat.system.page.web.Model" scope="request" />
<a:web_body>
<res:useJs value="${res.js.local['alarm_js']}" target="head-js" />
<script type="text/javascript">
$(document).ready(function() {
$('#Web_config').addClass('active open');
$('#speed').addClass('active');
});
</script>
<form name="speedUpdate" id="form" method="post" action="${model.pageUri}?op=speedSubmit">
<table style='width:100%;' align="center" class="table table-striped table-condensed table-bordered ">
<input type="hidden" class="input-xlarge" name="step.pageid" value="${model.step.pageid}" />
<tr>
<td>测速页面</td>
<td>
<c:choose>
<c:when test="${model.step.pageid eq 0}">
<input type="text" class="input-xlarge" name="step.page" required/>
</c:when>
<c:otherwise>
<input type="text" class="input-xlarge" name="step.page" value="${model.step.page}" readonly/>
</c:otherwise>
</c:choose>
<input class='btn btn-primary btn-sm' type="submit" name="submit" value="提交" />
<span style="color:red">填写测试页面名称获取pageId</span>
</td>
</tr>
<tr>
<td>测速点名称</td>
<td>
<table class="table table-striped table-condensed table-bordered ">
<tr><th>测速点编号</th><th>测速点名称</th></tr>
<tr><td>20</td><td><input type="text" class="input-xlarge" name="step.step20" value="${model.step.step20}"/>
<tr><td>21</td><td><input type="text" class="input-xlarge" name="step.step21" value="${model.step.step21}"/>
<tr><td>22</td><td><input type="text" class="input-xlarge" name="step.step22" value="${model.step.step22}"/>
<tr><td>23</td><td><input type="text" class="input-xlarge" name="step.step23" value="${model.step.step23}"/>
<tr><td>24</td><td><input type="text" class="input-xlarge" name="step.step24" value="${model.step.step24}"/>
<tr><td>25</td><td><input type="text" class="input-xlarge" name="step.step25" value="${model.step.step25}"/>
<tr><td>26</td><td><input type="text" class="input-xlarge" name="step.step26" value="${model.step.step26}"/>
<tr><td>27</td><td><input type="text" class="input-xlarge" name="step.step27" value="${model.step.step27}"/>
<tr><td>28</td><td><input type="text" class="input-xlarge" name="step.step28" value="${model.step.step28}"/>
<tr><td>29</td><td><input type="text" class="input-xlarge" name="step.step29" value="${model.step.step29}" />
<tr><td>30</td><td><input type="text" class="input-xlarge" name="step.step30" value="${model.step.step30}"/>
<tr><td>31</td><td><input type="text" class="input-xlarge" name="step.step31" value="${model.step.step31}"/>
<tr><td>32</td><td><input type="text" class="input-xlarge" name="step.step32" value="${model.step.step32}"/>
</td></tr>
<c:choose>
<c:when test="${model.step.pageid eq 0}">
<tr><td>1</td><td><input type="text" class="input-xlarge" name="step.step1" value="unloadEventStart"/>
<tr><td>2</td><td><input type="text" class="input-xlarge" name="step.step2" value="unloadEventEnd"/>
<tr><td>3</td><td><input type="text" class="input-xlarge" name="step.step3" value="redirectStart"/>
<tr><td>4</td><td><input type="text" class="input-xlarge" name="step.step4" value="redirectEnd"/>
<tr><td>5</td><td><input type="text" class="input-xlarge" name="step.step5" value="fetchStart"/>
<tr><td>6</td><td><input type="text" class="input-xlarge" name="step.step6" value="domainLookupStart"/>
<tr><td>7</td><td><input type="text" class="input-xlarge" name="step.step7" value="domainLookupEnd"/>
<tr><td>8</td><td><input type="text" class="input-xlarge" name="step.step8" value="connectStart"/>
<tr><td>9</td><td><input type="text" class="input-xlarge" name="step.step9" value="connectEnd"/>
<tr><td>10</td><td><input type="text" class="input-xlarge" name="step.step10" value="requestStart"/>
<tr><td>11</td><td><input type="text" class="input-xlarge" name="step.step11" value="responseStart"/>
<tr><td>12</td><td><input type="text" class="input-xlarge" name="step.step12" value="responseEnd"/>
<tr><td>13</td><td><input type="text" class="input-xlarge" name="step.step13" value="domLoading"/>
<tr><td>14</td><td><input type="text" class="input-xlarge" name="step.step14" value="domInteractive"/>
<tr><td>15</td><td><input type="text" class="input-xlarge" name="step.step15" value="domContentLoadedEventStart"/>
<tr><td>16</td><td><input type="text" class="input-xlarge" name="step.step16" value="domContentLoadedEventEnd"/>
<tr><td>17</td><td><input type="text" class="input-xlarge" name="step.step17" value="domComplete"/>
<tr><td>18</td><td><input type="text" class="input-xlarge" name="step.step18" value="loadEventStart"/>
<tr><td>19</td><td><input type="text" class="input-xlarge" name="step.step19" value="loadEventEnd"/>
</c:when>
<c:otherwise>
<tr><td>1</td><td><input type="text" class="input-xlarge" name="step.step1" value="${model.step.step1}"/>
<tr><td>2</td><td><input type="text" class="input-xlarge" name="step.step2" value="${model.step.step2}"/>
<tr><td>3</td><td><input type="text" class="input-xlarge" name="step.step3" value="${model.step.step3}"/>
<tr><td>4</td><td><input type="text" class="input-xlarge" name="step.step4" value="${model.step.step4}"/>
<tr><td>5</td><td><input type="text" class="input-xlarge" name="step.step5" value="${model.step.step5}"/>
<tr><td>6</td><td><input type="text" class="input-xlarge" name="step.step6" value="${model.step.step6}"/>
<tr><td>7</td><td><input type="text" class="input-xlarge" name="step.step7" value="${model.step.step7}"/>
<tr><td>8</td><td><input type="text" class="input-xlarge" name="step.step8" value="${model.step.step8}"/>
<tr><td>9</td><td><input type="text" class="input-xlarge" name="step.step9" value="${model.step.step9}"/>
<tr><td>10</td><td><input type="text" class="input-xlarge" name="step.step10" value="${model.step.step10}"/>
<tr><td>11</td><td><input type="text" class="input-xlarge" name="step.step11" value="${model.step.step11}"/>
<tr><td>12</td><td><input type="text" class="input-xlarge" name="step.step12" value="${model.step.step12}"/>
<tr><td>13</td><td><input type="text" class="input-xlarge" name="step.step13" value="${model.step.step13}"/>
<tr><td>14</td><td><input type="text" class="input-xlarge" name="step.step14" value="${model.step.step14}"/>
<tr><td>15</td><td><input type="text" class="input-xlarge" name="step.step15" value="${model.step.step15}"/>
<tr><td>16</td><td><input type="text" class="input-xlarge" name="step.step16" value="${model.step.step16}"/>
<tr><td>17</td><td><input type="text" class="input-xlarge" name="step.step17" value="${model.step.step17}"/>
<tr><td>18</td><td><input type="text" class="input-xlarge" name="step.step18" value="${model.step.step18}"/>
<tr><td>19</td><td><input type="text" class="input-xlarge" name="step.step19" value="${model.step.step19}"/>
</c:otherwise>
</c:choose>
</table>
</td>
</tr>
</table>
</form>
</a:web_body> | Java Server Pages | 3 | woozhijun/cat | cat-home/src/main/webapp/jsp/system/webRule/speedUpdate.jsp | [
"Apache-2.0"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.