content
stringlengths
4
1.04M
lang
stringclasses
358 values
score
int64
0
5
repo_name
stringlengths
5
114
repo_path
stringlengths
4
229
repo_licenses
sequencelengths
1
8
/** * @param {import('jscodeshift').FileInfo} file * @param {import('jscodeshift').API} api */ export default function transformer(file) { return file.source.replace(/([^a-zA-Z])ExpansionPanel/gm, '$1Accordion'); }
JavaScript
4
dany-freeman/material-ui
packages/mui-codemod/src/v5.0.0/expansion-panel-component.js
[ "MIT" ]
--TEST-- JSON (http://www.crockford.com/JSON/JSON_checker/test/pass3.json) --FILE-- <?php $test = ' { "JSON Test Pattern pass3": { "The outermost value": "must be an object or array.", "In this test": "It is an object." } } '; echo 'Testing:' . $test . "\n"; echo "DECODE: AS OBJECT\n"; $obj = json_decode($test); var_dump($obj); echo "DECODE: AS ARRAY\n"; $arr = json_decode($test, true); var_dump($arr); echo "ENCODE: FROM OBJECT\n"; $obj_enc = json_encode($obj); echo $obj_enc . "\n"; echo "ENCODE: FROM ARRAY\n"; $arr_enc = json_encode($arr); echo $arr_enc . "\n"; echo "DECODE AGAIN: AS OBJECT\n"; $obj = json_decode($obj_enc); var_dump($obj); echo "DECODE AGAIN: AS ARRAY\n"; $arr = json_decode($arr_enc, true); var_dump($arr); ?> --EXPECTF-- Testing: { "JSON Test Pattern pass3": { "The outermost value": "must be an object or array.", "In this test": "It is an object." } } DECODE: AS OBJECT object(stdClass)#%d (1) { ["JSON Test Pattern pass3"]=> object(stdClass)#%d (2) { ["The outermost value"]=> string(27) "must be an object or array." ["In this test"]=> string(16) "It is an object." } } DECODE: AS ARRAY array(1) { ["JSON Test Pattern pass3"]=> array(2) { ["The outermost value"]=> string(27) "must be an object or array." ["In this test"]=> string(16) "It is an object." } } ENCODE: FROM OBJECT {"JSON Test Pattern pass3":{"The outermost value":"must be an object or array.","In this test":"It is an object."}} ENCODE: FROM ARRAY {"JSON Test Pattern pass3":{"The outermost value":"must be an object or array.","In this test":"It is an object."}} DECODE AGAIN: AS OBJECT object(stdClass)#%d (1) { ["JSON Test Pattern pass3"]=> object(stdClass)#%d (2) { ["The outermost value"]=> string(27) "must be an object or array." ["In this test"]=> string(16) "It is an object." } } DECODE AGAIN: AS ARRAY array(1) { ["JSON Test Pattern pass3"]=> array(2) { ["The outermost value"]=> string(27) "must be an object or array." ["In this test"]=> string(16) "It is an object." } }
PHP
3
NathanFreeman/php-src
ext/json/tests/pass003.phpt
[ "PHP-3.01" ]
<%@ 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="res" uri="http://www.unidal.org/webres"%> <%@ taglib prefix="w" uri="http://www.unidal.org/web/core"%> <%@taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> <jsp:useBean id="ctx" type="com.dianping.cat.system.page.config.Context" scope="request"/> <jsp:useBean id="payload" type="com.dianping.cat.system.page.config.Payload" scope="request"/> <jsp:useBean id="model" type="com.dianping.cat.system.page.config.Model" scope="request"/> <a:config> <c:if test="${payload.type eq 'SQL'}"><c:set var="name" value="数据库" /></c:if> <c:if test="${payload.type eq 'Cache'}"><c:set var="name" value="缓存" /></c:if> <c:if test="${payload.type eq 'RPC'}"><c:set var="name" value="服务" /></c:if> <h3 class="text-center text-success">编辑${name}监控规则</h3> <form name="appRuleUpdate" id="form" method="post"> <table style='width:100%' class='table table-striped table-condensed '> <c:set var="conditions" value="${fn:split(payload.ruleId, ';')}" /> <c:set var="name" value="${conditions[0]}" /> <c:set var="machine" value="${conditions[1]}" /> <c:set var="method" value="${conditions[2]}" /> <c:set var="target" value="${conditions[3]}" /> <c:set var="andStr" value="${conditions[4]}" /> <tr> <td>名字&nbsp;&nbsp;<input name="name" id="name" value="${name}"/></td> <td>机器&nbsp;&nbsp;<input name="machine" id="machine" value="${machine}"/></td> <td>方法&nbsp;&nbsp;<input name="method" id="method" value="${method}"/></td> <td>监控项&nbsp;&nbsp;<select name="target" id="target" style="width:200px;"> <option value="avg">响应时间</option> <option value="errorPercent">错误率</option> <option value="error">错误数</option> </select></td> <td>&nbsp;&nbsp;与条件&nbsp;&nbsp;<select name="and" id="and" style="width:200px;"> <option value="false">否</option> <option value="true">是</option> </select></td> </tr> <tr><th colspan="6">${model.content}</th></tr> <tr> <td style='text-align:center' colspan='6'><input class="btn btn-primary btn-sm" id="ruleSubmitButton" type="text" name="submit" value="提交"></button></td> </tr> </table> </form> </a:config> <script type="text/javascript"> function update() { var configStr = generateConfigsJsonString(); var name = $("#name").val().trim(); if(name == "undefined" || name == ""){ if($("#errorMessage").length == 0){ $("#name").after($("<span class=\"text-danger\" id=\"errorMessage\"> 该字段不能为空</span>")); } return; } var machine = $("#machine").val().trim(); if(machine == "undefined" || machine == ""){ if($("#errorMessage").length == 0){ $("#machine").after($("<span class=\"text-danger\" id=\"errorMessage\"> 该字段不能为空</span>")); } return; } var method = $("#method").val().trim(); if(method == "undefined" || method == ""){ if($("#errorMessage").length == 0){ $("#machine").after($("<span class=\"text-danger\" id=\"errorMessage\"> 该字段不能为空</span>")); } return; } var target = $("#target").val(); if(target == "undefined" || target == ""){ if($("#errorMessage").length == 0){ $("#target").after($("<span class=\"text-danger\" id=\"errorMessage\"> 该字段不能为空</span>")); } return; } var andStr = $("#and").val(); if(andStr == "undefined" || andStr == ""){ if($("#errorMessage").length == 0){ $("#andStr").after($("<span class=\"text-danger\" id=\"errorMessage\"> 该字段不能为空</span>")); } return; } var split = ";"; var id = name + split + machine + split + method + split + target + split + andStr; window.location.href = "?op=storageRuleSubmit&configs=" + encodeURIComponent(configStr) + "&type=${payload.type}&ruleId=" + encodeURIComponent(id); } $(document).ready(function() { initRuleConfigs(["DescVal","DescPer","AscVal","AscPer"]); var ruleId = "${payload.ruleId}"; if(ruleId.length > 0){ document.getElementById("name").disabled = true; document.getElementById("machine").disabled = true; document.getElementById("method").disabled = true; document.getElementById("target").disabled = true; document.getElementById("and").disabled = true; var conditions = ruleId.split(';'); $('#target').val(conditions[3]); $('#and').val(conditions[4]); } var name = $("#name").val().trim(); if(name == "" || name.length == 0){ $("#name").val("*"); } var machine = $("#machine").val().trim(); if(machine == "" || machine.length == 0){ $("#machine").val("*"); } $('#alert_config').addClass('active open'); <c:if test="${empty payload.type or payload.type eq 'SQL'}"> $('#storageDatabaseRule').addClass('active'); </c:if> <c:if test="${payload.type eq 'Cache'}"> $('#storageCacheRule').addClass('active'); </c:if> <c:if test="${payload.type eq 'RPC'}"> $('#storageRPCRule').addClass('active'); </c:if> $(document).delegate("#ruleSubmitButton","click",function(){ update(); }) }); </script>
Java Server Pages
3
woozhijun/cat
cat-home/src/main/webapp/jsp/system/storageRule/storageRuleUpdate.jsp
[ "Apache-2.0" ]
newtype N = N Int newtype Show a => N = N a newtype Age = Age { unAge :: Maybe Int } newtype Bar a (b :: [* -> *]) c = Foo (a b c) newtype N = N Int deriving Show newtype N = N a deriving (Eq, Ord, Enum, Bounded, Show, Read)
Haskell
3
matsubara0507/semantic
test/fixtures/haskell/corpus/newtype-declaration.A.hs
[ "MIT" ]
= An Atomic Rant == Brush Up Your Resume You are probably not handling atomic operations properly in your app, and probably have some nasty lurking race conditions. The worst part is these will get worse as your user count increases, are difficult to reproduce, and usually happen to your most critical pieces of code. (And no, your rspec tests can't catch them either.) Let's assume you're writing an app to enable students to enroll in courses. You need to ensure that no more than 30 students can sign up for a given course. In your enrollment code, you have something like this: @course = Course.find(1) if @course.num_students < 30 @course.course_students.create!(:student_id => 101) @course.num_students += 1 @course.save! else # course is full end You're screwed. You now have 32 people in your 30 person class, and you have no idea what happened. "Well no duh," you're saying, "even the {ActiveRecord docs mention locking}[http://api.rubyonrails.org/classes/ActiveRecord/Locking/Pessimistic.html], so I'll just use that." @course = Course.find(1, :lock => true) if @course.num_students < 30 # ... Nice try, but now you've introduced other issues. Any other piece of code in your entire app that needs to update _anything_ about the course - maybe the course name, or start date, or location - is now serialized. If you need high concurrency, you're still screwed. You think, "ah-ha, the problem is having a separate counter!" @course = Course.find(1) if @course.course_students.count < 30 @course.course_students.create!(:student_id => 101) else # course is full end Nope. Still screwed. == The Root Down It's worth understanding the root issue, and how to address it. Race conditions arise from the difference in time between *evaluating* and *altering* a value. In our example, we fetched the record, then checked the value, then changed it. The more lines of code between those operations, and the higher your user count, the bigger the window of opportunity for other clients to get the data in an inconsistent state. Sometimes race conditions don't matter in practice, since often a user is only operating their own data. This has a race condition, but is probably ok: @post = Post.create(:user_id => @user.id, :title => "Whattup", ...) @user.total_posts += 1 # update my post count But this _would_ be problematic: @post = Post.create(:user_id => @user.id, :title => "Whattup", ...) @blog.total_posts += 1 # update post count across all users As multiple users could be adding posts concurrently. In a traditional RDBMS, you can increment counters atomically (but not return them) by firing off an update statement that self-references the column: update users set total_posts = total_posts + 1 where id = 372 You may have seen {ActiveRecord's increment_counter class method}[http://api.rubyonrails.org/classes/ActiveRecord/Base.html#M002278], which wraps this functionality. But outside of being cumbersome, this has the side effect that your object is no longer in sync with the DB, so you get other issues: Blog.increment_counter :total_posts, @blog.id if @blog.total_posts == 1000 # the 1000th poster - award them a gold star! The DB says 1000, but your @blog object still says 999, and the right person doesn't get their gold star. Sad faces all around. == A Better Way Bottom line: Any operation that could alter a value *must* return that value in the _same_ _operation_ for it to be atomic. If you do a separate get then set, or set then get, you're open to a race condition. There are very few systems that support an "increment and return" type operation, and Redis is one of them (Oracle sequences are another). When you think of the specific things that you need to ensure, many of these will reduce to numeric operations: * Ensuring there are no more than 30 students in a course * Getting more than 2 but less than 6 people in a game * Keeping a chat room to a max of 50 people * Correctly recording the total number of blog posts * Only allowing one piece of code to reorder a large dataset at a time All except the last one can be implemented with counters. The last one will need a carefully placed lock. The best way I've found to balance atomicity and concurrency is, for each value, actually create two counters: * A counter you base logic on (eg, +slots_taken+) * A counter users see (eg, +current_students+) The reason you want two counters is you'll need to change the value of the logic counter *first*, _before_ checking it, to address any race conditions. This means the value can get wonky momentarily (eg, there could be 32 +slots_taken+ for a 30-person course). This doesn't affect its function - indeed, it's part of what makes it work - but does mean you don't want to display it. So, taking our +Course+ example: class Course < ActiveRecord::Base include Redis::Atoms counter :slots_taken counter :current_students end Then: @course = Course.find(1) @course.slots_taken.increment do |val| if val <= @course.max_students @course.course_students.create!(:student_id => 101) @course.current_students.increment end end Race-condition free. And, with the separate +current_students+ counter, your views get consistent information about the course, since it will only be incremented on success. There is still a race condition where +current_students+ could be less than the real number of +CourseStudent+ records, but since you'll be displaying these values in a view (after that block completes) you shouldn't see this manifest in real-world usage. Now you can sleep soundly, without fear of getting fired at 3am via an angry phone call from your boss. (At least, not about this...) == Author Copyright (c) 2009 {Nate Wiger}[http://nate.wiger.org]. All Rights Reserved. Rant released under {Creative Commons}[http://creativecommons.org/licenses/by/3.0/legalcode].
RDoc
4
D-system/redis-objects
ATOMICITY.rdoc
[ "Artistic-2.0" ]
<!DOCTYPE html> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge" > <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta charset="utf-8"> <meta name="description" content="RxJS Long Stack Traces Example"> <meta name="author" content="Rx Team"> <title>Long Stack Traces Example</title> <link rel="stylesheet" href="../assets/bootstrap/css/bootstrap.min.css"> </head> <body> <div class="container-fluid"> <div class="page-header"> <h1>RxJS Long Stack Traces Example</h1> <p class="lead">Example to show getting only the user code stack trace.</p> </div> <div class="row"> <code> <pre> var results = document.getElementById('results'); Rx.config.longStackSupport = true; var source = Rx.Observable.of(1,2,3); source .flatMap(function () { return Rx.Observable.throwError(new Error()); }) .subscribe( function (x) { results.innerHTML = x; }, function (err) { results.innerHTML = err.stack; } ); </pre> </code> <div id="results"></div> </div> </div> </div> <script src="../../dist/rx.lite.compat.js"></script> <script> function ready(callback) { if (document.readyState === 'complete') { setTimeout(callback, 0); } else { document.addEventListener( 'DOMContentLoaded', callback, false ); window.addEventListener( 'load', callback, false ); } } ready(function () { var results = document.getElementById('results'); Rx.config.longStackSupport = true; var source = Rx.Observable.of(1,2,3); source.flatMap(function () { return Rx.Observable.throwError(new Error()); }).subscribe( function (x) { results.innerHTML = x; }, function (err) { results.innerHTML = err.stack; } ); }); </script> </body>
HTML
3
henryqdineen/RxJS
examples/longstacktraces/longstacktraces.html
[ "Apache-2.0" ]
This file must be excluded.
XS
4
hendriks73/maven-jaxb2-plugin
tests/two/src/main/resources/schema.xs
[ "BSD-2-Clause" ]
( Generated from test_namespace2_in.muv by the MUV compiler. ) ( https://github.com/revarbat/muv ) lvar foo::fee : foo::abc[ _a -- ret ] foo::fee @ _a @ + ; : bar::abc[ _a -- ret ] 13 _a @ + ; : _main[ _arg -- ret ] 3 foo::abc bar::abc pop 0 ; : __start "me" match me ! me @ location loc ! trig trigger ! 42 foo::fee ! _main ;
MUF
3
revarbat/muv
tests/test_namespace2_cmp.muf
[ "BSD-2-Clause" ]
class Container { static function main():Void { switch (Sys.command("haxelib", ["install", "jQueryExtern"])) { case 0: //pass case code: Sys.exit(code); } } }
Haxe
3
sortie/official-images
test/tests/haxe-haxelib-install/Container.hx
[ "Apache-2.0" ]
--TEST-- Bug #77325: ReflectionClassConstant::$class returns wrong class when extending --FILE-- <?php class Foo { const FOO = 'foo'; } class Bar extends Foo { } $barClassReflection = new ReflectionClass(Bar::class); $constants = $barClassReflection->getReflectionConstants(); foreach ($constants as $constant) { var_dump($constant->class); var_dump($constant->getDeclaringClass()->getName()); } $constant = new ReflectionClassConstant(Bar::class, 'FOO'); var_dump($constant->class); var_dump($constant->getDeclaringClass()->getName()); ?> --EXPECT-- string(3) "Foo" string(3) "Foo" string(3) "Foo" string(3) "Foo"
PHP
4
thiagooak/php-src
ext/reflection/tests/bug77325.phpt
[ "PHP-3.01" ]
# MMS Description file for the Tag Image File Format Library # # Tag Image File Format Library # # Copyright (c) 1988, 1989, 1990, 1991, 1992 Sam Leffler # Copyright (c) 1991, 1992 Silicon Graphics, Inc. # # Permission to use, copy, modify, distribute, and sell this software and # its documentation for any purpose is hereby granted without fee, provided # that (i) the above copyright notices and this permission notice appear in # all copies of the software and related documentation, and (ii) the names of # Sam Leffler and Silicon Graphics may not be used in any advertising or # publicity relating to the software without the specific, prior written # permission of Stanford and Silicon Graphics. # # THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, # EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY # WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. # # IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR # ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, # WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF # LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE # OF THIS SOFTWARE. # # This MMS description file was written by Rick Dyson on or before 11-NOV-1991 # ([email protected]) # Updated: 28-APR-1992 -- LIBTIFF v3.0 (19-FEB-1992) for XV (v2.21) # 2-MAR-1993 -- LIBTIFF v3.21 (29-OCT-1992) for XV (v3.00) # 14-JUL-1994 -- Added Alpha Support RLD # # For DEC C (or ALPHA) users, you must add a MACRO qualifier to the # command line, i.e., # MMS /Description = Makefile.mms /Macro = "ALPHA = 1" # # It is based on the Unix Makefile by Leffler # NULL = IPATH = [] # # Library-wide configuration defines: # MMAP_SUPPORT add support for memory mapping read-only files # COLORIMETRY_SUPPORT add support for 6.0 colorimetry tags # JPEG_SUPPORT add support for 6.0 JPEG tags & JPEG algorithms # YCBCR_SUPPORT add support for 6.0 YCbCr tags # CMYK_SUPPORT add support for 6.0 CMYK tags # # Compression configuration defines: # CCITT_SUPPORT add support for CCITT Group 3 & 4 algorithms # PACKBITS_SUPPORT add support for Macintosh PackBits algorithm # LZW_SUPPORT add support for LZW algorithm # THUNDER_SUPPORT add support for ThunderScan 4-bit RLE algorithm # NEXT_SUPPORT add support for NeXT 2-bit RLE algorithm # JPEG_SUPPORT add support for JPEG DCT algorithm # # Note that if you change the library-wide configuration, you'll # need to manual force a full rebuild. Changing the configuration # of which compression algorithms are included in the library is # automatically handled (i.e. tif_compress.o has a dependency on # the Makefile). # .ifdef ALPHA FLAGS = /Warnings = NoInformationals /Standard = VAXC DEFS = /Define = ("BSDTYPES=1", "USE_VARARGS=1", "USE_PROTOTYPES=0", \ "USE_CONST",__STDC__) .else FLAGS = DEFS = /Define = ("BSDTYPES=1", "USE_VARARGS=1", "USE_PROTOTYPES=0", \ "USE_CONST", __STDC__) .endif .ifdef DEBUG OPTIMIZE = /NoOptimize DBG = /Debug .else OPTIMIZE = /Optimize DBG = /NoDebug .endif INCS = /Include_Directory = ($(IPATH)) CFLAGS = $(CFLAGS) $(FLAGS) $(DEFS) $(INCS) $(OPTIMIZE) $(DBG) INCLUDES = tiff.h tiffio.h SRCS = tif_fax3.c \ tif_fax4.c \ tif_aux.c \ tif_ccittrle.c \ tif_close.c \ tif_compress.c \ tif_dir.c \ tif_dirinfo.c \ tif_dirread.c \ tif_dirwrite.c \ tif_dumpmode.c \ tif_error.c \ tif_getimage.c \ tif_jpeg.c \ tif_flush.c \ tif_lzw.c \ tif_next.c \ tif_open.c \ tif_packbits.c \ tif_print.c \ tif_read.c \ tif_swab.c \ tif_strip.c \ tif_thunder.c \ tif_tile.c \ tif_version.c \ tif_vms.c \ tif_warning.c \ tif_write.c OBJS = tif_fax3.obj \ tif_fax4.obj \ tif_aux.obj \ tif_ccittrle.obj \ tif_close.obj \ tif_compress.obj \ tif_dir.obj \ tif_dirinfo.obj \ tif_dirread.obj \ tif_dirwrite.obj \ tif_dumpmode.obj \ tif_error.obj \ tif_getimage.obj \ tif_jpeg.obj \ tif_flush.obj \ tif_lzw.obj \ tif_next.obj \ tif_open.obj \ tif_packbits.obj \ tif_print.obj \ tif_read.obj \ tif_strip.obj \ tif_swab.obj \ tif_thunder.obj \ tif_tile.obj \ tif_version.obj \ tif_vms.obj \ tif_warning.obj \ tif_write.obj OBJLIST = tif_fax3.obj,tif_fax4.obj,tif_aux.obj,tif_ccittrle.obj,tif_close.obj,tif_compress.obj,tif_dir.obj,tif_dirinfo.obj,tif_dirread.obj,tif_dirwrite.obj,tif_dumpmode.obj,tif_error.obj,tif_getimage.obj,tif_jpeg.obj,tif_flush.obj,tif_lzw.obj,tif_next.obj,tif_open.obj,tif_packbits.obj,tif_print.obj,tif_read.obj,tif_strip.obj,tif_swab.obj,tif_thunder.obj,tif_tile.obj,tif_version.obj,tif_vms.obj,tif_warning.obj,tif_write.obj TIFFLIB = libtiff.olb .first .ifdef ALPHA @- Define /NoLog Sys DECC$Library_Include .else @- Define /NoLog Sys Sys$Library .endif all : lib @ continue lib : $(TIFFLIB) @ continue libtiff.olb : $(OBJS) If "''F$Search ("$(TIFFLIB)")'" .eqs. "" Then Library /Create $(TIFFLIB) Library /Replace $(TIFFLIB) $(OBJLIST) $(OBJS) : tiffio.h tiff.h tiffcomp.h tiffiop.h tiffconf.h tif_fax3.obj : tif_fax3.c g3states.h t4.h tif_fax3.h mkg3states.exe : mkg3states.c t4.h - $(CC) $(CFLAGS) mkg3states.c .ifdef ALPHA .else - $ Define /User_Mode LNK$Library Sys$Library:VAXCRTL .endif - $(LINK) $(LINKFLAGS) mkg3states g3states.h : mkg3states.exe Define /User_Mode Sys$Output g3states.h Run mkg3states.exe # Mcr Sys$Disk:[]mkg3states.exe > g3states.h # if you want to use the Unix-style redirection in mkg3states, you will # need to add the call to getredirection in mkg3states. Since this is only # run once, I didn't think it was really necessary anymore. RLD 24-FEB-1993 #[-]argproc.obj : [-]argproc.c [-]includes.h # $(CC) $(CFLAGS) [-]argproc.c clean : @- Set Protection = Owner:RWED *.*;-1,*.obj - Purge /NoLog /NoConfirm *.* - Delete /NoLog /NoConfirm *.obj;*,*.exe;*,*.olb; - Delete /NoLog /NoConfirm g3states.h;*
Module Management System
3
flipk/xviewpfk
tiff/Makefile.mms
[ "Unlicense" ]
import opts abstract class Command var name: String var description: String var options = new OptionContext var parent_command: nullable Command = null var sub_commands = new Array[Command] fun add_option(option: Option) do options.add_option(option) end fun add_command(command: Command) do command.parent_command = self sub_commands.add command end fun full_name: String do var parent = parent_command if parent == null then return name return "{parent.full_name} {name}" end fun usage do print "usage: {full_name}" print "\n{description}\n" if options.options.not_empty then print "Options:" options.usage end if sub_commands.not_empty then print "Sub-commands:" for cmd in sub_commands do print "\t{cmd.name}\t{cmd.description}" end end exit 1 end fun parse(argv: Collection[String]) do options.parse(argv) var args = options.rest if args.not_empty then for cmd in sub_commands do if cmd.name == args.first then cmd.parse(args.subarray(1, args.length - 1)) return end end end run(args) end fun run(args: Collection[String]) do usage end end
Nit
4
ajnavarro/language-dataset
data/github.com/moz-code/prez/280c19321ee037739c108dd6cdeffde9cd81767c/src/commands.nit
[ "MIT" ]
export default { html: ` <div>hello undefined</div> <div>hello bar2</div> ` };
JavaScript
1
vatro/svelte
test/runtime/samples/destructured-assignment-pattern-with-object-pattern/_config.js
[ "MIT" ]
#!/usr/bin/env bash ############################################################################### # Copyright 2017 The Apollo 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. ############################################################################### if [ -f /.dockerenv ]; then APOLLO_IN_DOCKER=true else APOLLO_IN_DOCKER=false fi hostname if $APOLLO_IN_DOCKER; then set -x echo "Inside docker" uname -a pip list else echo "Outside docker" set -x uname -a docker --version docker images | grep apollo fi echo "-----------env---------------" env
Shell
4
jzjonah/apollo
scripts/env.sh
[ "Apache-2.0" ]
-- Copyright 2021 Jeff Foley. All rights reserved. -- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. local json = require("json") name = "DNSlytics" type = "api" function start() set_rate_limit(1) end function check() local c local cfg = datasrc_config() if cfg ~= nil then c = cfg.credentials end if (c ~= nil and c.key ~= nil and c.key ~= "") then return true end return false end function horizontal(ctx, domain) local c local cfg = datasrc_config() if cfg ~= nil then c = cfg.credentials end if (c == nil or c.key == nil or c.key == "") then return end -- DNSlytics ReverseIP API local resp, err = request(ctx, {['url']=first_url(domain, c.key)}) if (err ~= nil and err ~= "") then log(ctx, "horizontal request to service failed: " .. err) return end local d = json.decode(resp) if (d == nil or d.data == nil or d.data['domains'] == nil) then return end for i, name in pairs(d.data['domains']) do associated(ctx, domain, name) end -- DNSlytics ReverseGAnalytics API resp, err = request(ctx, {['url']=second_url(domain, c.key)}) if (err ~= nil and err ~= "") then log(ctx, "horizontal request to service failed: " .. err) return end d = json.decode(resp) if (d == nil or d.data == nil or d.data['domains'] == nil) then return end for i, res in pairs(d.data['domains']) do associated(ctx, domain, res['domain']) end end function first_url(domain, key) return "https://api.dnslytics.net/v1/reverseip/" .. domain .. "?apikey=" .. key end function second_url(domain, key) return "https://api.dnslytics.net/v1/reverseganalytics/" .. domain .. "?apikey=" .. key end function asn(ctx, addr, asn) if addr == "" then return end local resp, err = request(ctx, {['url']=asn_url(addr)}) if (err ~= nil and err ~= "") then log(ctx, "asn request to service failed: " .. err) return end local d = json.decode(resp) if (d == nil or d.announced == false) then return end local desc = d.shortname .. ", " .. d.country new_asn(ctx, { ['addr']=d.ip, ['asn']=d.asn, ['desc']=desc, ['prefix']=d.cidr, }) end function asn_url(addr) return "https://freeapi.dnslytics.net/v1/ip2asn/" .. addr end
Ada
4
Elon143/Amass
resources/scripts/api/dnslytics.ads
[ "Apache-2.0" ]
source tests/support/cli.tcl start_server {tags {"wait network external:skip"}} { start_server {} { set slave [srv 0 client] set slave_host [srv 0 host] set slave_port [srv 0 port] set slave_pid [srv 0 pid] set master [srv -1 client] set master_host [srv -1 host] set master_port [srv -1 port] test {Setup slave} { $slave slaveof $master_host $master_port wait_for_condition 50 100 { [s 0 master_link_status] eq {up} } else { fail "Replication not started." } } test {WAIT should acknowledge 1 additional copy of the data} { $master set foo 0 $master incr foo $master incr foo $master incr foo assert {[$master wait 1 5000] == 1} assert {[$slave get foo] == 3} } test {WAIT should not acknowledge 2 additional copies of the data} { $master incr foo assert {[$master wait 2 1000] <= 1} } test {WAIT should not acknowledge 1 additional copy if slave is blocked} { exec kill -SIGSTOP $slave_pid $master set foo 0 $master incr foo $master incr foo $master incr foo assert {[$master wait 1 1000] == 0} exec kill -SIGCONT $slave_pid assert {[$master wait 1 1000] == 1} } test {WAIT implicitly blocks on client pause since ACKs aren't sent} { exec kill -SIGSTOP $slave_pid $master multi $master incr foo $master client pause 10000 write $master exec assert {[$master wait 1 1000] == 0} $master client unpause exec kill -SIGCONT $slave_pid assert {[$master wait 1 1000] == 1} } }}
Tcl
4
hpdic/redis
tests/unit/wait.tcl
[ "BSD-3-Clause" ]
#include <PJONSwitch.h> #include <PJONSoftwareBitBang.h> /* Route packets between a collection of buses with the same or different strategies or media. PJONSimpleSwitch routes between buses of the same strategy. It uses less storage and RAM than the more general PJONSwitch. __________ ________ __________ | | Pin 7 | | Pin 12 | | | DEVICE 1 |_______________| SWITCH |_______________| DEVICE 2 | |__________| Bus 0.0.0.1 |________| Bus 0.0.0.2 |__________| */ PJONSoftwareBitBang bus1((const uint8_t[4]){0, 0, 0, 1}, PJON_NOT_ASSIGNED), bus2((const uint8_t[4]){0, 0, 0, 2}, PJON_NOT_ASSIGNED); PJONSimpleSwitch<SoftwareBitBang> router(bus1, bus2); void setup() { bus1.strategy.set_pin(7); bus2.strategy.set_pin(12); router.begin(); } void loop() { router.loop(); }
Arduino
5
solhuebner/PJON
examples/routing/ARDUINO/Network/Switch/SimpleSwitch/SimpleSwitch.ino
[ "Apache-2.0" ]
--- my: property: fromyamlfile other: notempty --- spring: profiles: thedefault my: property: fromdefaultprofile --- spring: profiles: other my: property: fromotherprofile
YAML
2
yiou362/spring-boot-2.2.9.RELEASE
spring-boot-project/spring-boot/src/test/resources/testprofilesdocument.yml
[ "Apache-2.0" ]
// format: OFF package mesosphere.marathon.raml sealed trait {{ enum.name }} extends Product with Serializable with RamlGenerated { val value: String override def toString: String = value } object {{enum.name}} { {% for i in enum.sortedValues -%} case object {{i}} extends {{enum.name}} { val value = {{i | upperCase}} } {%- endfor %} implicit object playJsonFormat extends play.api.libs.json.Format[{{enum.name}}] { def reads(json: play.api.libs.json.JsValue): play.api.libs.json.JsResult[{{enum.name}}] = { json match { case play.api.libs.json.JsString(s) => s.toLowerCase match { {%- for e in enum.sortedValues %} case "{{ e | lowerCase }}" => play.api.libs.json.JsSuccess({{e}}) {%- endfor %} case _ => play.api.libs.json.JsError(play.api.libs.json.JsonValidationError("error.unknown.enum.literal", "{{ enum.name }} ({{ enum.sortedValues | upperCase | join:", " }})")) } case _ => play.api.libs.json.JsError(play.api.libs.json.JsonValidationError("error.unknown.enum.literal", "{{ enum.name }} ({{ enum.sortedValues | upperCase | join:", " }})")) } } def writes(o: {{enum.name}}): play.api.libs.json.JsValue = play.api.libs.json.JsString(o.value) } }
Liquid
4
fquesnel/marathon
type-generator/src/main/resources/templates/enum.liquid
[ "Apache-2.0" ]
grammar t039labels; options { language = JavaScript; } a returns [l] : ids+=A ( ',' ids+=(A|B) )* C D w=. ids+=. F EOF { l = [$ids, $w]; } ; A: 'a'..'z'; B: '0'..'9'; C: a='A'; D: a='FOOBAR'; E: 'GNU' a=.; F: 'BLARZ' a=EOF; WS: ' '+ { $channel = HIDDEN };
G-code
3
DanielMabadeje/Artificial-Intelligence-Deep-Learning-Machine-Learning-Tutorials
java/java2py/antlr-3.1.3/runtime/JavaScript/tests/functional/t039labels.g
[ "Apache-2.0" ]
rule cc-bpf command = clang -g -O2 -Wall -Wextra -target bpf -Xclang -target-feature -Xclang +alu32 -c $in -o $out rule ll-bpf command = clang -O2 -Wall -Wextra -target bpf -Xclang -target-feature -Xclang +alu32 -emit-llvm -S -c $in -o $out rule llc-bpf command = llc -march=bpf -mattr=+alu32 -filetype=obj $in -o $out rule as command = llvm-as $in -o $out rule bc-link command = llvm-link $in | opt -always-inline -o $out rule objdump command = llvm-objdump -S -no-show-raw-insn $in > $out rule go-build command = go get github.com/newtools/ebpf && go build -o $out $in # # Build a socket filter that uses a function from an IR module. # The external IR function needs to have alwaysinline attribute set. # build bpf/filter.ll: ll-bpf bpf/filter.c build bpf/filter.bc: bc-link bpf/filter.ll bpf/sub64_ir.ll build bpf/filter.o: llc-bpf bpf/filter.bc build bpf/filter.s: objdump bpf/filter.o build run-bpf: go-build run_bpf.go | bpf/filter.o # # sub64_ir - manually tweaked IR # # Uncomment if you want to regenerate Clang's IR. #build bpf/sub64_ir.ll: ll-bpf bpf/sub64_ir.c build bpf/sub64_ir.o: llc-bpf bpf/sub64_ir.ll build bpf/sub64_ir.s: objdump bpf/sub64_ir.o # # Distilled examples for volatile load/store # build bpf/sub32_v1.ll: ll-bpf bpf/sub32_v1.c build bpf/sub32_v1.o: llc-bpf bpf/sub32_v1.ll build bpf/sub32_v1.s: objdump bpf/sub32_v1.o build bpf/sub32_v2.ll: ll-bpf bpf/sub32_v2.c build bpf/sub32_v2.o: llc-bpf bpf/sub32_v2.ll build bpf/sub32_v2.s: objdump bpf/sub32_v2.o build bpf/sub32_v3.ll: ll-bpf bpf/sub32_v3.c build bpf/sub32_v3.o: llc-bpf bpf/sub32_v3.ll build bpf/sub32_v3.s: objdump bpf/sub32_v3.o
Ninja
3
gozdal/cloudflare-blog
2019-04-ebpf-alu32/build.ninja
[ "BSD-3-Clause" ]
// Variable used in stylus_test.styl importDashy = dashed .stylus-overwrite-color font-size: 20px !important
Stylus
2
joseconstela/meteor
packages/deprecated/stylus/stylus_tests.import.styl
[ "Apache-2.0", "BSD-2-Clause", "MIT" ]
<input id="fileName" autofocus type="text" class="input-lg form-control" placeholder="Open your file or create new by press Enter">
Harbour
1
blacktail/real-edit
public_src/scripts/index/templates/main.hb
[ "MIT" ]
signature dpd_smb { ip-proto == tcp payload /^....[\xfe\xff]SMB/ enable "smb" }
Standard ML
3
yaplej/bro
scripts/base/protocols/smb/dpd.sig
[ "Apache-2.0" ]
insert into t (id) values (1500), (1501), (1502), (1503), (1504), (1505), (1506), (1507), (1508), (1509), (1510), (1511), (1512), (1513), (1514), (1515), (1516), (1517), (1518), (1519), (1520), (1521), (1522), (1523), (1524), (1525), (1526), (1527), (1528), (1529), (1530), (1531), (1532), (1533), (1534), (1535), (1536), (1537), (1538), (1539), (1540), (1541), (1542), (1543), (1544), (1545), (1546), (1547), (1548), (1549), (1550), (1551), (1552), (1553), (1554), (1555), (1556), (1557), (1558), (1559), (1560), (1561), (1562), (1563), (1564), (1565), (1566), (1567), (1568), (1569), (1570), (1571), (1572), (1573), (1574), (1575), (1576), (1577), (1578), (1579), (1580), (1581), (1582), (1583), (1584), (1585), (1586), (1587), (1588), (1589), (1590), (1591), (1592), (1593), (1594), (1595), (1596), (1597), (1598), (1599), (1600), (1601), (1602), (1603), (1604), (1605), (1606), (1607), (1608), (1609), (1610), (1611), (1612), (1613), (1614), (1615), (1616), (1617), (1618), (1619), (1620), (1621), (1622), (1623), (1624), (1625), (1626), (1627), (1628), (1629), (1630), (1631), (1632), (1633), (1634), (1635), (1636), (1637), (1638), (1639), (1640), (1641), (1642), (1643), (1644), (1645), (1646), (1647), (1648), (1649), (1650), (1651), (1652), (1653), (1654), (1655), (1656), (1657), (1658), (1659), (1660), (1661), (1662), (1663), (1664), (1665), (1666), (1667), (1668), (1669), (1670), (1671), (1672), (1673), (1674), (1675), (1676), (1677), (1678), (1679), (1680), (1681), (1682), (1683), (1684), (1685), (1686), (1687), (1688), (1689), (1690), (1691), (1692), (1693), (1694), (1695), (1696), (1697), (1698), (1699), (1700), (1701), (1702), (1703), (1704), (1705), (1706), (1707), (1708), (1709), (1710), (1711), (1712), (1713), (1714), (1715), (1716), (1717), (1718), (1719), (1720), (1721), (1722), (1723), (1724), (1725), (1726), (1727), (1728), (1729), (1730), (1731), (1732), (1733), (1734), (1735), (1736), (1737), (1738), (1739), (1740), (1741), (1742), (1743), (1744), (1745), (1746), (1747), (1748), (1749), (1750), (1751), (1752), (1753), (1754), (1755), (1756), (1757), (1758), (1759), (1760), (1761), (1762), (1763), (1764), (1765), (1766), (1767), (1768), (1769), (1770), (1771), (1772), (1773), (1774), (1775), (1776), (1777), (1778), (1779), (1780), (1781), (1782), (1783), (1784), (1785), (1786), (1787), (1788), (1789), (1790), (1791), (1792), (1793), (1794), (1795), (1796), (1797), (1798), (1799), (1800), (1801), (1802), (1803), (1804), (1805), (1806), (1807), (1808), (1809), (1810), (1811), (1812), (1813), (1814), (1815), (1816), (1817), (1818), (1819), (1820), (1821), (1822), (1823), (1824), (1825), (1826), (1827), (1828), (1829), (1830), (1831), (1832), (1833), (1834), (1835), (1836), (1837), (1838), (1839), (1840), (1841), (1842), (1843), (1844), (1845), (1846), (1847), (1848), (1849), (1850), (1851), (1852), (1853), (1854), (1855), (1856), (1857), (1858), (1859), (1860), (1861), (1862), (1863), (1864), (1865), (1866), (1867), (1868), (1869), (1870), (1871), (1872), (1873), (1874), (1875), (1876), (1877), (1878), (1879), (1880), (1881), (1882), (1883), (1884), (1885), (1886), (1887), (1888), (1889), (1890), (1891), (1892), (1893), (1894), (1895), (1896), (1897), (1898), (1899), (1900), (1901), (1902), (1903), (1904), (1905), (1906), (1907), (1908), (1909), (1910), (1911), (1912), (1913), (1914), (1915), (1916), (1917), (1918), (1919), (1920), (1921), (1922), (1923), (1924), (1925), (1926), (1927), (1928), (1929), (1930), (1931), (1932), (1933), (1934), (1935), (1936), (1937), (1938), (1939), (1940), (1941), (1942), (1943), (1944), (1945), (1946), (1947), (1948), (1949), (1950), (1951), (1952), (1953), (1954), (1955), (1956), (1957), (1958), (1959), (1960), (1961), (1962), (1963), (1964), (1965), (1966), (1967), (1968), (1969), (1970), (1971), (1972), (1973), (1974), (1975), (1976), (1977), (1978), (1979), (1980), (1981), (1982), (1983), (1984), (1985), (1986), (1987), (1988), (1989), (1990), (1991), (1992), (1993), (1994), (1995), (1996), (1997), (1998), (1999);
SQL
1
cuishuang/tidb
br/tests/lightning_disk_quota/data/disk_quota.t.3.sql
[ "Apache-2.0" ]
.ActiveRecordToggle { color: var(--color-record-active); } .ActiveRecordToggle:hover { color: var(--color-record-active); } .ActiveRecordToggle:focus { color: var(--color-record-active); } .ActiveRecordToggle:active { color: var(--color-record-hover); } .InactiveRecordToggle { color: var(--color-record-inactive); } .InactiveRecordToggle:hover { color: var(--color-record-hover); } .InactiveRecordToggle:focus { color: var(--color-record-inactive); } .InactiveRecordToggle:active { color: var(--color-record-hover); } .DisabledRecordToggle { color: var(--color-button-disabled); } .DisabledRecordToggle:hover { color: var(--color-button-disabled); } .DisabledRecordToggle:focus { color: var(--color-button-disabled); } .DisabledRecordToggle:active { color: var(--color-button-disabled); }
CSS
3
vegYY/react
packages/react-devtools-shared/src/devtools/views/Profiler/RecordToggle.css
[ "MIT" ]
{%- set data = '{"Der Zucker": "süß", "Die Webseite": "https://saltproject.io"}'|load_json -%} {{ pillar['tojson-file'] }}: file.managed: - source: salt://tojson/template.jinja - template: jinja - context: data: {{ data|tojson }}
SaltStack
3
markgras/salt
tests/integration/files/file/base/tojson/init.sls
[ "Apache-2.0" ]
//tab_size=4 // Copyright 2021 nickmqb // SPDX-License-Identifier: Apache-2.0 VoronoiGrid2D struct #RefType { size IntVector2 tiles Array<VoronoiTile> points Array<IntVector2> fromNumPoints(width int, height int, numPoints int, rs *uint) { points := new Array<IntVector2>(numPoints + 1) for i := 0; i < numPoints { points[i + 1] = IntVector2(randomInt(rs, 0, width), randomInt(rs, 0, height)) } return fromPoints(width, height, points) } fromPoints(width int, height int, points Array<IntVector2>) { vg := new VoronoiGrid2D { size: IntVector2(width, height), tiles: new Array<VoronoiTile>(width * height), points: points, } for y := 0; y < height { for x := 0; x < width { ci := y * width + x f1 := 0.0 f2 := 0.0 f3 := 0.0 closest1 := getClosest(vg, x, y, 0, 0) closest2 := getClosest(vg, x, y, closest1.id, 0) closest3 := getClosest(vg, x, y, closest1.id, closest2.id) vg.tiles[ci] = VoronoiTile { closest1: closest1, closest2: closest2, closest3: closest3 } } } return vg } getCentroids(vg VoronoiGrid2D) { centroids := new Array<IntVector2>(vg.points.count) cellCount := new Array<int>(vg.points.count) for y := 0; y < vg.size.y { for x := 0; x < vg.size.x { ci := y * vg.size.x + x id := vg.tiles[ci].closest1.id centroids[id] = IntVector2.add(centroids[id], IntVector2(x, y)) cellCount[id] += 1 } } for i := 1; i < vg.points.count { count := cellCount[i] centroids[i] = count > 0 ? IntVector2(centroids[i].x / count, centroids[i].y / count) : vg.points[i] } return centroids } getClosest(vg VoronoiGrid2D, x int, y int, exceptA int, exceptB int) { best := 0 bestDistSq := int.maxValue hsx := vg.size.x / 2 hsy := vg.size.y / 2 for i := 1; i < vg.points.count { if i == exceptA || i == exceptB { continue } p := vg.points[i] dx := p.x - x if dx < -hsx { dx += vg.size.x } if dx >= hsx { dx -= vg.size.x } dy := p.y - y if dy < -hsy { dy += vg.size.y } if dy >= hsy { dy -= vg.size.y } distSq := dx * dx + dy * dy if distSq < bestDistSq { best = i bestDistSq = distSq } } assert(best > 0) return VoronoiNeighborInfo { id: best, dist: sqrt(bestDistSq) } } } VoronoiTile struct { closest1 VoronoiNeighborInfo closest2 VoronoiNeighborInfo closest3 VoronoiNeighborInfo } VoronoiNeighborInfo struct { id int dist float }
mupad
4
nickmqb/fpga_craft
terrain_gen/voronoi.mu
[ "Apache-2.0" ]
import Nat = "mo:base/Nat"; import Nat32 = "mo:base/Nat32"; module { public func new() : { next : () -> Nat32 } = object { let modulus = 0x7fffffff; var state : Nat32 = 1; public func next() : Nat32 { state := Nat32.fromNat(Nat32.toNat(state) * 48271 % modulus); state; }; }; };
Modelica
4
DaveSimplifire/examples
motoko/life/versions/v2/life/Random.mo
[ "Apache-2.0" ]
lexer grammar t011lexer; options { language = JavaScript; } IDENTIFIER: ('a'..'z'|'A'..'Z'|'_') ('a'..'z' |'A'..'Z' |'0'..'9' |'_' { tlog("Underscore"); tlog("foo"); } )* ; WS: (' ' | '\n')+;
G-code
4
DanielMabadeje/Artificial-Intelligence-Deep-Learning-Machine-Learning-Tutorials
java/java2py/antlr-3.1.3/runtime/JavaScript/tests/functional/t011lexer.g
[ "Apache-2.0" ]
note description:"[ OpenAPI Petstore This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ The version of the OpenAPI document: 1.0.0 NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). Do not edit the class manually. ]" date: "$Date$" revision: "$Revision$" EIS:"Eiffel openapi generator", "src=https://openapi-generator.tech", "protocol=uri" class FILE_SCHEMA_TEST_CLASS feature --Access file: detachable FILE files: detachable LIST [FILE] feature -- Change Element set_file (a_name: like file) -- Set 'file' with 'a_name'. do file := a_name ensure file_set: file = a_name end set_files (a_name: like files) -- Set 'files' with 'a_name'. do files := a_name ensure files_set: files = a_name end feature -- Status Report output: STRING -- <Precursor> do create Result.make_empty Result.append("%Nclass FILE_SCHEMA_TEST_CLASS%N") if attached file as l_file then Result.append ("%Nfile:") Result.append (l_file.out) Result.append ("%N") end if attached files as l_files then across l_files as ic loop Result.append ("%N files:") Result.append (ic.item.out) Result.append ("%N") end end end end
Eiffel
5
JigarJoshi/openapi-generator
samples/client/petstore/eiffel/src/domain/file_schema_test_class.e
[ "Apache-2.0" ]
open util/ordering[Time] sig Time { pressed: set Key } sig Key { } pred press[k: Key, t: Time] { k not in t.pressed k in t.next.pressed } pred release[k: Key, t: Time] { k in t.pressed k not in t.next.pressed } pred changed[k: Key, t: Time] { press[k, t] or release[k, t] } face Trace { no first.pressed all t: Time - last | some k: Key { changed[k, t] all k": Key - k | not changed[k, t] } }
Alloy
4
awwx/alloydocs
techniques/specs/dynamics/keyboard-table.als
[ "MIT" ]
' Continuous, CenterY, YOFFSET, x1,y1,...x16,y16 - created by boardgen 'Level 1 - circle DefData 1,400,-80,200,0,184,76,141,141,76,184,0,200,-76,184,-141,141,-184,76,-200,0,-184,-76,-141,-141,-76,-184,0,-200,76,-184,141,-141,184,-76 'Level 2 - square DefData 1,400,-80,-200,200,-200,100,-200,0,-200,-100,-200,-200,-100,-200,0,-200,100,-200,200,-200,200,-100,200,0,200,100,200,200,100,200,0,200,-100,200 'Level 3 - plus DefData 1,400,-80,-100,100,-200,100,-200,0,-200,-100,-100,-100,-100,-200,0,-200,100,-200,100,-100,200,-100,200,0,200,100,100,100,100,200,0,200,-100,200 'Level 4 - binoculars DefData 1,380,-75,-40,105,-120,150,-220,120,-260,60,-260,-30,-220,-90,-120,-120,-40,-75,40,-75,120,-120,220,-90,260,-30,260,60,220,120,120,150,40,105 'Level 5 - cross DefData 1,415,-90,-30,210,-60,120,-120,60,-210,30,-210,-30,-120,-60,-60,-120,-30,-210,30,-210,60,-120,120,-60,210,-30,210,30,120,60,60,120,30,210 'Level 6 - triangle DefData 1,390,-40,-119,168,-175,168,-140,84,-105,0,-70,-84,-35,-168,0,-252,35,-168,70,-84,105,0,140,84,175,168,119,168,56,168,0,168,-56,168 'Level 7 - clover DefData 1,310,-10,-179,179,-200,50,-100,0,-200,-50,-179,-179,-50,-200,0,-100,50,-200,179,-179,200,-50,100,0,200,50,179,179,50,200,0,100,-50,200 'Level 8 - Vee DefData 0,240,90,240,-220,210,-165,180,-110,150,-55,120,0,90,55,60,110,30,165,-30,165,-60,110,-90,55,-120,0,-150,-55,-180,-110,-210,-165,-240,-220 'Level 9 - steps DefData 0,200,100,280,-108,280,-36,200,-36,200,36,120,36,120,108,40,108,40,180,-40,180,-40,108,-120,108,-120,36,-200,36,-200,-36,-280,-36,-280,-108 'Level 10 - U DefData 0,500,-200,210,-175,210,-105,210,-35,210,35,204,105,165,175,105,227,30,245,-30,245,-105,227,-165,175,-204,105,-210,35,-210,-35,-210,-105,-210,-175 'Level 11 - horiz line DefData 0,230,70,300,160,260,160,220,160,180,160,140,160,100,160,60,160,20,160,-20,160,-60,160,-100,160,-140,160,-180,160,-220,160,-260,160,-300,160 'Level 12 - heart DefData 1,540,-210,60,-180,150,-170,180,-60,180,60,150,150,90,210,0,240,-90,210,-150,150,-180,60,-180,-60,-150,-170,-60,-180,-15,-90,0,30,15,-90 'Level 13 - star DefData 1,415,-95,-120,129,-200,100,-160,0,-200,-100,-120,-129,-80,-220,0,-170,80,-220,120,-129,200,-100,160,0,200,100,120,129,80,220,0,170,-80,220 'Level 14 - W DefData 0,140,120,280,-105,245,-35,234,52,213,129,164,181,94,181,52,140,21,70,-21,70,-52,140,-94,181,-164,181,-213,129,-234,52,-245,-35,-280,-105 'Level 15 - broken V DefData 0,240,75,280,-240,262,-162,245,-90,227,-6,140,-20,97,45,73,120,38,165,-35,150,-87,195,-129,120,-157,60,-175,-30,-192,-90,-227,-150,-280,-210 'Level 16 - infinity DefData 1,310,0,0,0,48,-110,144,-165,240,-110,288,0,240,110,144,165,48,110,0,0,-48,-110,-144,-165,-240,-110,-288,0,-240,110,-144,165,-48,110 'Level 17 - Tubes 1 - octagon DefData 1,400,-80,-120,120,-180,80,-180,0,-180,-80,-120,-120,-60,-160,0,-160,60,-160,120,-120,180,-80,180,0,180,80,120,120,60,160,0,160,-60,160 'Level 18 - Tubes 2 - tear DefData 1,390,-40,-122,150,-157,90,-157,0,-122,-60,-70,-120,-35,-180,0,-240,35,-180,70,-120,122,-60,157,0,157,90,122,150,56,180,0,180,-56,180 'Level 19 - Tubes 3 - false closed V DefData 0,400,0,0,-210,75,-210,150,-175,225,-125,225,-50,150,-25,95,45,50,110,-50,110,-95,45,-150,-25,-225,-50,-225,-125,-150,-175,-75,-210,0,-210 'Level 20 - Tubes 4 - bowtie DefData 1,300,0,-150,75,-250,150,-250,75,-250,-75,-250,-150,-150,-75,-50,-50,50,-50,150,-75,250,-150,250,-75,250,75,250,150,150,75,50,50,-50,50 'Level 21 - Tubes 5 - vert bent line DefData 0,280,0,210,-210,210,-180,210,-150,210,-120,210,-90,195,-60,180,-30,150,0,120,30,105,60,90,90,90,120,90,150,90,180,90,210,90,240 'Level 22 - Tubes 6 - thin rectangle DefData 1,300,0,-30,150,-30,90,-30,30,-30,-30,-30,-90,-30,-150,-30,-210,30,-210,30,-150,30,-90,30,-30,30,30,30,90,30,150,30,210,-30,210 'Level 23 - Tubes 7 - spiral DefData 0,300,0,-210,0,-140,-70,-70,-140,0,-210,70,-140,140,-70,210,0,140,70,70,140,0,210,-70,140,-140,70,-70,0,0,-70,70,0,0,70 'Level 24 - Tubes 8 - ^U^ DefData 0,100,90,240,-30,180,-60,120,-60,60,-30,30,30,30,90,30,150,30,210,-30,210,-30,150,-30,90,-30,30,-60,-30,-120,-60,-180,-60,-240,-30 'Level 25 - Tubes 9 - half spade DefData 0,350,0,30,-270,30,-225,60,-180,120,-135,180,-90,210,-45,240,0,270,45,240,112,180,180,120,180,60,112,30,45,30,90,30,135,30,180 'Level 26 - Tubes 10 - diagonal line DefData 0,250,90,300,-200,260,-175,220,-150,180,-125,140,-100,100,-75,60,-50,20,-25,-20,0,-60,25,-100,50,-140,75,-180,100,-220,125,-260,150,-300,175 'Level 27 - Tubes 11 - jagged horz line DefData 0,200,200,280,0,240,25,200,0,160,25,120,0,80,25,40,0,0,25,0,-25,-40,0,-80,-25,-120,0,-160,-25,-200,0,-240,-25,-280,0 'Level 28 - Tubes 12 - star/cross DefData 1,400,-80,-100,100,-200,100,-150,0,-200,-100,-100,-100,-100,-200,0,-150,100,-200,100,-100,200,-100,150,0,200,100,100,100,100,200,0,150,-100,200 'Level 29 - Tubes 13 - claw DefData 1,400,-100,200,-35,150,-140,225,-70,300,0,200,70,100,140,0,210,-100,140,-200,70,-300,0,-225,-70,-150,-140,-200,-35,-100,0,0,35,100,0 'Level 30 - Tubes 14 - ^-^ DefData 0,200,150,267,-10,227,-37,187,-37,148,-12,120,25,100,75,60,75,20,75,-20,75,-60,75,-100,75,-120,25,-148,-12,-187,-37,-227,-37,-267,-10 'Level 31 - Tubes 15 - bent steps DefData 0,200,80,245,-150,210,-50,280,0,210,50,210,150,140,100,70,200,35,100,-35,100,-70,200,-140,100,-210,150,-210,50,-280,0,-210,-50,-245,-150 'Level 32 - Tubes 16 - triple infinity DefData 1,310,0,35,105,105,0,175,-105,280,-35,280,35,175,105,105,0,35,-105,-35,-105,-105,0,-175,105,-280,35,-280,-35,-175,-105,-105,0,-35,105 'Level 33 - rainbow DefData 0,480,-80,-199,-23,-191,-69,-176,-113,-154,-152,-126,-185,-94,-211,-58,-229,-19,-238,19,-238,58,-229,94,-211,126,-185,154,-152,176,-113,191,-69,199,-23 'Level 34 - pointy square DefData 1,400,-80,-200,200,-170,100,-130,0,-170,-100,-200,-200,-100,-170,0,-130,100,-170,200,-200,170,-100,130,0,170,100,200,200,100,170,0,130,-100,170 'Level 35 - 3 leaf clover DefData 1,375,0,0,0,170,0,260,66,190,144,75,118,0,0,-85,-128,-80,-228,0,-270,80,-228,85,-128,0,0,-75,118,-190,144,-260,66,-170,0 'Level 36 - lips DefData 1,400,-80,290,0,244,76,171,141,86,164,0,160,-86,164,-171,141,-244,76,-290,0,-244,-76,-171,-141,-76,-154,0,-100,76,-154,171,-141,244,-76 'Level 37 - /\/ DefData 0,310,0,280,-60,280,21,270,108,240,170,170,198,100,173,60,117,20,41,-20,-41,-60,-117,-100,-173,-170,-198,-240,-170,-270,-108,-280,-21,-280,60 'Level 38 - cat DefData 1,400,-80,0,-100,66,-124,131,-111,204,-186,220,-60,214,46,161,121,86,174,0,180,-86,174,-161,121,-214,46,-220,-60,-204,-186,-131,-111,-66,-124 'Level 39 - rocket DefData 1,390,-40,-119,168,-175,108,-120,64,-65,0,-30,-74,-15,-158,0,-242,15,-158,30,-74,65,0,110,64,175,108,119,168,56,128,0,168,-56,128 'Level 40 - pontiac DefData 1,370,-50,160,-150,250,-190,200,-110,150,-30,100,50,50,130,0,210,-50,130,-100,50,-150,-30,-200,-110,-250,-190,-160,-150,-75,-110,0,-70,75,-110 'Level 41 - Ev3 DefData 0,220,40,170,-188,270,-136,230,-56,270,36,190,46,190,148,100,148,40,220,-40,220,-100,148,-190,148,-190,56,-270,36,-230,-56,-270,-136,-170,-188 'Level 42 - \O/ DefData 0,270,30,300,130,200,160,100,160,0,140,-100,90,-150,0,-130,-100,-50,-170,50,-170,130,-100,150,0,100,90,0,140,-100,160,-200,160,-300,130 'Level 43 - yakhorns DefData 0,200,80,120,-210,200,-185,240,-100,200,-25,120,0,90,65,60,130,30,195,-30,195,-60,130,-90,65,-120,0,-200,-25,-240,-100,-200,-185,-120,-210 'Level 44 - asteroid DefData 1,300,40,-150,90,-220,30,-220,-90,-140,-90,-60,-90,-100,-200,0,-200,100,-200,160,-140,230,-70,100,-30,160,20,220,70,130,170,70,100,-70,160 'Level 45 - broken house DefData 0,140,90,70,-138,150,-116,200,-46,200,36,200,116,230,228,120,178,40,210,-40,210,-120,178,-230,228,-200,116,-200,36,-200,-46,-150,-116,-70,-138 'Level 46 - overlap star DefData 1,300,0,-80,80,-100,10,-200,0,-100,-10,-80,-80,-10,-100,0,-200,10,-100,80,-80,100,-10,200,0,100,10,80,80,10,100,0,200,-10,100 'Level 47 - pentagon DefData 1,440,-130,160,-80,250,-20,220,60,190,140,160,220,80,220,0,220,-80,220,-160,220,-190,140,-220,60,-250,-20,-160,-80,-75,-140,0,-190,75,-140 'Level 48 - skull DefData 1,400,-80,180,40,124,86,111,151,66,204,0,220,-66,204,-111,151,-124,86,-180,40,-194,-46,-161,-131,-86,-184,0,-200,86,-184,161,-131,194,-46
BlitzMax
4
jabdoa2/blitzmax
samples/tempest/boarddata.bmx
[ "Zlib" ]
<body id="top" role="document" class="file"> <nav role="navigation"> <div id="project-navigation"> <%= render '_sidebar_navigation.rhtml' %> <%= render '_sidebar_search.rhtml' %> </div> <div id="project-metadata"> <%= render '_sidebar_pages.rhtml' %> <%= render '_sidebar_classes.rhtml' %> </div> </nav> <main role="main"> <% if @options.main_page and main_page = @files.find { |f| f.full_name == @options.main_page } then %> <%= main_page.description %> <% else %> <p>This is the API documentation for <%= @title %>. <% end %> </main>
RHTML
3
Bhuvanesh1208/ruby2.6.1
lib/ruby/2.6.0/rdoc/generator/template/darkfish/index.rhtml
[ "Ruby" ]
// 把组合逻辑电路实现在 module 内 // 这样,组合逻辑的结果变量是整个 module 公有的,任何 rule 都能访问。 package GrayCode_v3; module mkTb (); // 寄存器 Reg#(Bit#(6)) cnt <- mkReg(0); // 把 cnt (二进制编码)转化为 cnt_gray (格雷码) Bit#(6) cnt_gray = (cnt >> 1) ^ cnt; // 把 cnt_gray (格雷码) 转化回 cnt_bin (二进制编码) Bit#(6) cnt_bin = cnt_gray; // 该循环不表示任何时序行为,编译器会把它完全展开(unroll)为组合逻辑 for(int i=4; i>=0; i=i-1) cnt_bin[i] = cnt_gray[i] ^ cnt_bin[i+1]; rule up_counter; // 每周期都执行 cnt <= cnt + 1; // cnt 从0自增到63 if(cnt >= 63) $finish; // 自增到 63 时,仿真结束 endrule rule show; $display("cnt=%b cnt_gray=%b cnt_bin=%b", cnt, cnt_gray, cnt_bin ); endrule endmodule endpackage
Bluespec
4
Xiefengshang/BSV_Tutorial_cn
src/4.GrayCode/GrayCode_v3.bsv
[ "MIT" ]
# # @expect=org.quattor.pan.exceptions.EvaluationException # object template file_contents5; '/result' = { file_contents("afile", "abc"); };
Pan
2
aka7/pan
panc/src/test/pan/Functionality/function/file_contents5.pan
[ "Apache-2.0" ]
#data { raster-opacity: 1; raster-mesh-size: 1; }
CartoCSS
1
nimix/carto
test/rendering/raster-mesh-size.mss
[ "Apache-2.0" ]
# This file is a part of Julia. License is MIT: https://julialang.org/license ## IOStream const sizeof_ios_t = Int(ccall(:jl_sizeof_ios_t, Cint, ())) """ IOStream A buffered IO stream wrapping an OS file descriptor. Mostly used to represent files returned by [`open`](@ref). """ mutable struct IOStream <: IO handle::Ptr{Cvoid} ios::Array{UInt8,1} name::String mark::Int64 lock::ReentrantLock _dolock::Bool IOStream(name::AbstractString, buf::Array{UInt8,1}) = new(pointer(buf), buf, name, -1, ReentrantLock(), true) end function IOStream(name::AbstractString, finalize::Bool) buf = zeros(UInt8,sizeof_ios_t) x = IOStream(name, buf) if finalize finalizer(close, x) end return x end IOStream(name::AbstractString) = IOStream(name, true) unsafe_convert(T::Type{Ptr{Cvoid}}, s::IOStream) = convert(T, pointer(s.ios)) show(io::IO, s::IOStream) = print(io, "IOStream(", s.name, ")") macro _lock_ios(s, expr) s = esc(s) quote l = ($s)._dolock temp = ($s).lock l && lock(temp) val = $(esc(expr)) l && unlock(temp) val end end """ fd(stream) Return the file descriptor backing the stream or file. Note that this function only applies to synchronous `File`'s and `IOStream`'s not to any of the asynchronous streams. """ fd(s::IOStream) = Int(ccall(:jl_ios_fd, Clong, (Ptr{Cvoid},), s.ios)) stat(s::IOStream) = stat(fd(s)) isopen(s::IOStream) = ccall(:ios_isopen, Cint, (Ptr{Cvoid},), s.ios) != 0 function close(s::IOStream) bad = @_lock_ios s ccall(:ios_close, Cint, (Ptr{Cvoid},), s.ios) != 0 systemerror("close", bad) end function flush(s::IOStream) sigatomic_begin() bad = @_lock_ios s ccall(:ios_flush, Cint, (Ptr{Cvoid},), s.ios) != 0 sigatomic_end() systemerror("flush", bad) end iswritable(s::IOStream) = ccall(:ios_get_writable, Cint, (Ptr{Cvoid},), s.ios)!=0 isreadable(s::IOStream) = ccall(:ios_get_readable, Cint, (Ptr{Cvoid},), s.ios)!=0 """ truncate(file, n) Resize the file or buffer given by the first argument to exactly `n` bytes, filling previously unallocated space with '\\0' if the file or buffer is grown. # Examples ```jldoctest julia> io = IOBuffer(); julia> write(io, "JuliaLang is a GitHub organization.") 35 julia> truncate(io, 15) IOBuffer(data=UInt8[...], readable=true, writable=true, seekable=true, append=false, size=15, maxsize=Inf, ptr=16, mark=-1) julia> String(take!(io)) "JuliaLang is a " julia> io = IOBuffer(); julia> write(io, "JuliaLang is a GitHub organization."); julia> truncate(io, 40); julia> String(take!(io)) "JuliaLang is a GitHub organization.\\0\\0\\0\\0\\0" ``` """ function truncate(s::IOStream, n::Integer) err = @_lock_ios s ccall(:ios_trunc, Cint, (Ptr{Cvoid}, Csize_t), s.ios, n) != 0 systemerror("truncate", err) return s end """ seek(s, pos) Seek a stream to the given position. # Examples ```jldoctest julia> io = IOBuffer("JuliaLang is a GitHub organization."); julia> seek(io, 5); julia> read(io, Char) 'L': ASCII/Unicode U+004C (category Lu: Letter, uppercase) ``` """ function seek(s::IOStream, n::Integer) ret = @_lock_ios s ccall(:ios_seek, Int64, (Ptr{Cvoid}, Int64), s.ios, n) systemerror("seek", ret == -1) ret < -1 && error("seek failed") return s end """ seekstart(s) Seek a stream to its beginning. # Examples ```jldoctest julia> io = IOBuffer("JuliaLang is a GitHub organization."); julia> seek(io, 5); julia> read(io, Char) 'L': ASCII/Unicode U+004C (category Lu: Letter, uppercase) julia> seekstart(io); julia> read(io, Char) 'J': ASCII/Unicode U+004A (category Lu: Letter, uppercase) ``` """ seekstart(s::IO) = seek(s,0) """ seekend(s) Seek a stream to its end. """ function seekend(s::IOStream) err = @_lock_ios s ccall(:ios_seek_end, Int64, (Ptr{Cvoid},), s.ios) != 0 systemerror("seekend", err) return s end """ skip(s, offset) Seek a stream relative to the current position. # Examples ```jldoctest julia> io = IOBuffer("JuliaLang is a GitHub organization."); julia> seek(io, 5); julia> skip(io, 10); julia> read(io, Char) 'G': ASCII/Unicode U+0047 (category Lu: Letter, uppercase) ``` """ function skip(s::IOStream, delta::Integer) ret = @_lock_ios s ccall(:ios_skip, Int64, (Ptr{Cvoid}, Int64), s.ios, delta) systemerror("skip", ret == -1) ret < -1 && error("skip failed") return s end """ position(s) Get the current position of a stream. # Examples ```jldoctest julia> io = IOBuffer("JuliaLang is a GitHub organization."); julia> seek(io, 5); julia> position(io) 5 julia> skip(io, 10); julia> position(io) 15 julia> seekend(io); julia> position(io) 35 ``` """ function position(s::IOStream) pos = @_lock_ios s ccall(:ios_pos, Int64, (Ptr{Cvoid},), s.ios) systemerror("position", pos == -1) return pos end function filesize(s::IOStream) sz = @_lock_ios s ccall(:ios_filesize, Int64, (Ptr{Cvoid},), s.ios) if sz == -1 err = Libc.errno() throw(IOError(string("filesize: ", Libc.strerror(err), " for ", s.name), err)) end return sz end _eof_nolock(s::IOStream) = ccall(:ios_eof_blocking, Cint, (Ptr{Cvoid},), s.ios) != 0 eof(s::IOStream) = @_lock_ios s _eof_nolock(s) ## constructing and opening streams ## # "own" means the descriptor will be closed with the IOStream """ fdio([name::AbstractString, ]fd::Integer[, own::Bool=false]) -> IOStream Create an [`IOStream`](@ref) object from an integer file descriptor. If `own` is `true`, closing this object will close the underlying descriptor. By default, an `IOStream` is closed when it is garbage collected. `name` allows you to associate the descriptor with a named file. """ function fdio(name::AbstractString, fd::Integer, own::Bool=false) s = IOStream(name) ccall(:ios_fd, Ptr{Cvoid}, (Ptr{Cvoid}, Clong, Cint, Cint), s.ios, fd, 0, own) return s end fdio(fd::Integer, own::Bool=false) = fdio(string("<fd ",fd,">"), fd, own) """ open(filename::AbstractString; lock = true, keywords...) -> IOStream Open a file in a mode specified by five boolean keyword arguments: | Keyword | Description | Default | |:-----------|:-----------------------|:----------------------------------------| | `read` | open for reading | `!write` | | `write` | open for writing | `truncate \\| append` | | `create` | create if non-existent | `!read & write \\| truncate \\| append` | | `truncate` | truncate to zero size | `!read & write` | | `append` | seek to end | `false` | The default when no keywords are passed is to open files for reading only. Returns a stream for accessing the opened file. The `lock` keyword argument controls whether operations will be locked for safe multi-threaded access. !!! compat "Julia 1.5" The `lock` argument is available as of Julia 1.5. """ function open(fname::AbstractString; lock = true, read :: Union{Bool,Nothing} = nothing, write :: Union{Bool,Nothing} = nothing, create :: Union{Bool,Nothing} = nothing, truncate :: Union{Bool,Nothing} = nothing, append :: Union{Bool,Nothing} = nothing, ) flags = open_flags( read = read, write = write, create = create, truncate = truncate, append = append, ) s = IOStream(string("<file ",fname,">")) if !lock s._dolock = false end systemerror("opening file $(repr(fname))", ccall(:ios_file, Ptr{Cvoid}, (Ptr{UInt8}, Cstring, Cint, Cint, Cint, Cint), s.ios, fname, flags.read, flags.write, flags.create, flags.truncate) == C_NULL) if flags.append systemerror("seeking to end of file $fname", ccall(:ios_seek_end, Int64, (Ptr{Cvoid},), s.ios) != 0) end return s end """ open(filename::AbstractString, [mode::AbstractString]; lock = true) -> IOStream Alternate syntax for open, where a string-based mode specifier is used instead of the five booleans. The values of `mode` correspond to those from `fopen(3)` or Perl `open`, and are equivalent to setting the following boolean groups: | Mode | Description | Keywords | |:-----|:------------------------------|:------------------------------------| | `r` | read | none | | `w` | write, create, truncate | `write = true` | | `a` | write, create, append | `append = true` | | `r+` | read, write | `read = true, write = true` | | `w+` | read, write, create, truncate | `truncate = true, read = true` | | `a+` | read, write, create, append | `append = true, read = true` | The `lock` keyword argument controls whether operations will be locked for safe multi-threaded access. # Examples ```jldoctest julia> io = open("myfile.txt", "w"); julia> write(io, "Hello world!"); julia> close(io); julia> io = open("myfile.txt", "r"); julia> read(io, String) "Hello world!" julia> write(io, "This file is read only") ERROR: ArgumentError: write failed, IOStream is not writeable [...] julia> close(io) julia> io = open("myfile.txt", "a"); julia> write(io, "This stream is not read only") 28 julia> close(io) julia> rm("myfile.txt") ``` !!! compat "Julia 1.5" The `lock` argument is available as of Julia 1.5. """ function open(fname::AbstractString, mode::AbstractString; lock = true) mode == "r" ? open(fname, lock = lock, read = true) : mode == "r+" ? open(fname, lock = lock, read = true, write = true) : mode == "w" ? open(fname, lock = lock, truncate = true) : mode == "w+" ? open(fname, lock = lock, truncate = true, read = true) : mode == "a" ? open(fname, lock = lock, append = true) : mode == "a+" ? open(fname, lock = lock, append = true, read = true) : throw(ArgumentError("invalid open mode: $mode")) end ## low-level calls ## function write(s::IOStream, b::UInt8) iswritable(s) || throw(ArgumentError("write failed, IOStream is not writeable")) Int(@_lock_ios s ccall(:ios_putc, Cint, (Cint, Ptr{Cvoid}), b, s.ios)) end function unsafe_write(s::IOStream, p::Ptr{UInt8}, nb::UInt) iswritable(s) || throw(ArgumentError("write failed, IOStream is not writeable")) return Int(@_lock_ios s ccall(:ios_write, Csize_t, (Ptr{Cvoid}, Ptr{Cvoid}, Csize_t), s.ios, p, nb)) end # num bytes available without blocking bytesavailable(s::IOStream) = @_lock_ios s ccall(:jl_nb_available, Int32, (Ptr{Cvoid},), s.ios) function readavailable(s::IOStream) lock(s.lock) nb = ccall(:jl_nb_available, Int32, (Ptr{Cvoid},), s.ios) if nb == 0 ccall(:ios_fillbuf, Cssize_t, (Ptr{Cvoid},), s.ios) nb = ccall(:jl_nb_available, Int32, (Ptr{Cvoid},), s.ios) end a = Vector{UInt8}(undef, nb) nr = ccall(:ios_readall, Csize_t, (Ptr{Cvoid}, Ptr{Cvoid}, Csize_t), s, a, nb) if nr != nb unlock(s.lock) throw(EOFError()) end unlock(s.lock) return a end function read(s::IOStream, ::Type{UInt8}) b = @_lock_ios s ccall(:ios_getc, Cint, (Ptr{Cvoid},), s.ios) if b == -1 throw(EOFError()) end return b % UInt8 end if ENDIAN_BOM == 0x04030201 function read(s::IOStream, T::Union{Type{Int16},Type{UInt16},Type{Int32},Type{UInt32},Type{Int64},Type{UInt64}}) n = sizeof(T) l = s._dolock _lock = s.lock l && lock(_lock) if ccall(:jl_ios_buffer_n, Cint, (Ptr{Cvoid}, Csize_t), s.ios, n) != 0 l && unlock(_lock) throw(EOFError()) end x = ccall(:jl_ios_get_nbyte_int, UInt64, (Ptr{Cvoid}, Csize_t), s.ios, n) % T l && unlock(_lock) return x end read(s::IOStream, ::Type{Float16}) = reinterpret(Float16, read(s, Int16)) read(s::IOStream, ::Type{Float32}) = reinterpret(Float32, read(s, Int32)) read(s::IOStream, ::Type{Float64}) = reinterpret(Float64, read(s, Int64)) end function unsafe_read(s::IOStream, p::Ptr{UInt8}, nb::UInt) nr = @_lock_ios s ccall(:ios_readall, Csize_t, (Ptr{Cvoid}, Ptr{Cvoid}, Csize_t), s, p, nb) if nr != nb throw(EOFError()) end nothing end ## text I/O ## take!(s::IOStream) = @_lock_ios s ccall(:jl_take_buffer, Vector{UInt8}, (Ptr{Cvoid},), s.ios) function readuntil(s::IOStream, delim::UInt8; keep::Bool=false) @_lock_ios s ccall(:jl_readuntil, Array{UInt8,1}, (Ptr{Cvoid}, UInt8, UInt8, UInt8), s.ios, delim, 0, !keep) end # like readuntil, above, but returns a String without requiring a copy function readuntil_string(s::IOStream, delim::UInt8, keep::Bool) @_lock_ios s ccall(:jl_readuntil, Ref{String}, (Ptr{Cvoid}, UInt8, UInt8, UInt8), s.ios, delim, 1, !keep) end function readline(s::IOStream; keep::Bool=false) @_lock_ios s ccall(:jl_readuntil, Ref{String}, (Ptr{Cvoid}, UInt8, UInt8, UInt8), s.ios, '\n', 1, keep ? 0 : 2) end function readbytes_all!(s::IOStream, b::Union{Array{UInt8}, FastContiguousSubArray{UInt8,<:Any,<:Array{UInt8}}}, nb::Integer) olb = lb = length(b) nr = 0 let l = s._dolock, slock = s.lock l && lock(slock) GC.@preserve b while nr < nb if lb < nr+1 try lb = max(65536, (nr+1) * 2) resize!(b, lb) catch l && unlock(slock) rethrow() end end thisr = Int(ccall(:ios_readall, Csize_t, (Ptr{Cvoid}, Ptr{Cvoid}, Csize_t), s.ios, pointer(b, nr+1), min(lb-nr, nb-nr))) nr += thisr (nr == nb || thisr == 0 || _eof_nolock(s)) && break end l && unlock(slock) end if lb > olb && lb > nr resize!(b, max(olb, nr)) # shrink to just contain input data if was resized end return nr end function readbytes_some!(s::IOStream, b::Union{Array{UInt8}, FastContiguousSubArray{UInt8,<:Any,<:Array{UInt8}}}, nb::Integer) olb = length(b) if nb > olb resize!(b, nb) end local nr @_lock_ios s begin nr = GC.@preserve b Int(ccall(:ios_read, Csize_t, (Ptr{Cvoid}, Ptr{Cvoid}, Csize_t), s.ios, pointer(b), nb)) end lb = length(b) if lb > olb && lb > nr resize!(b, max(olb, nr)) # shrink to just contain input data if was resized end return nr end """ readbytes!(stream::IOStream, b::AbstractVector{UInt8}, nb=length(b); all::Bool=true) Read at most `nb` bytes from `stream` into `b`, returning the number of bytes read. The size of `b` will be increased if needed (i.e. if `nb` is greater than `length(b)` and enough bytes could be read), but it will never be decreased. If `all` is `true` (the default), this function will block repeatedly trying to read all requested bytes, until an error or end-of-file occurs. If `all` is `false`, at most one `read` call is performed, and the amount of data returned is device-dependent. Note that not all stream types support the `all` option. """ function readbytes!(s::IOStream, b::Union{Array{UInt8}, FastContiguousSubArray{UInt8,<:Any,<:Array{UInt8}}}, nb=length(b); all::Bool=true) return all ? readbytes_all!(s, b, nb) : readbytes_some!(s, b, nb) end function read(s::IOStream) # First we try to fill the buffer. If that gives us the whole file, # copy it out and return. Otherwise look at the file size and use it # to prealloate space. Determining the size requires extra syscalls, # which we want to avoid for small files. @_lock_ios s begin nb = ccall(:ios_fillbuf, Cssize_t, (Ptr{Cvoid},), s.ios) if nb != -1 b = StringVector(nb) readbytes_all!(s, b, nb) else sz = try # filesize is just a hint, so ignore if it fails filesize(s) catch ex ex isa IOError || rethrow() Int64(-1) end if sz > 0 pos = position(s) if pos > 0 sz -= pos end end b = StringVector(sz < 0 ? 1024 : sz) nr = readbytes_all!(s, b, sz < 0 ? typemax(Int) : sz) resize!(b, nr) end end return b end """ read(s::IOStream, nb::Integer; all=true) Read at most `nb` bytes from `s`, returning a `Vector{UInt8}` of the bytes read. If `all` is `true` (the default), this function will block repeatedly trying to read all requested bytes, until an error or end-of-file occurs. If `all` is `false`, at most one `read` call is performed, and the amount of data returned is device-dependent. Note that not all stream types support the `all` option. """ function read(s::IOStream, nb::Integer; all::Bool=true) # When all=false we have to allocate a buffer of the requested size upfront # since a single call will be made b = Vector{UInt8}(undef, all && nb == typemax(Int) ? 1024 : nb) nr = readbytes!(s, b, nb, all=all) resize!(b, nr) return b end ## peek ## function peek(s::IOStream, ::Type{UInt8}) b = @_lock_ios s ccall(:ios_peekc, Cint, (Ptr{Cvoid},), s.ios) if b == -1 throw(EOFError()) end return b % UInt8 end
Julia
5
wentasah/julia
base/iostream.jl
[ "MIT" ]
using Microsoft.AspNetCore.Mvc; namespace AbpAspNetCoreDemo.Controllers { [Route("api/Custom")] [ApiExplorerSettings(IgnoreApi = false)] public class CustomController : DemoControllerBase { [Route("action-one")] public IActionResult Action1() { return Content("42"); } } }
C#
3
krisums/aspnetboilerplate
test/aspnet-core-demo/AbpAspNetCoreDemo/Controllers/CustomController.cs
[ "MIT" ]
--TEST-- Bug #26927 (preg_quote() does not escape \0) --FILE-- <?php $str = "a\000b"; $str_quoted = preg_quote($str); var_dump(preg_match("!{$str_quoted}!", $str), $str_quoted); ?> --EXPECT-- int(1) string(6) "a\000b"
PHP
3
thiagooak/php-src
ext/pcre/tests/bug26927.phpt
[ "PHP-3.01" ]
import { graphql, useStaticQuery } from "gatsby" export function use404HistoryStaticQuery() { return useStaticQuery(graphql` { queryDataCachesJson( selector: { eq: "static-query-404-to-B-to-404-history" } ) { ...QueryDataCachesFragmentInitialPage } } `) }
JavaScript
4
pipaliyajaydip/gatsby
e2e-tests/development-runtime/src/components/query-data-caches/static-query-404-history.js
[ "MIT" ]
interpolation = require '../lib/parser/interpolation' require 'chai'.should() (x) should be false = x.should.not.be.ok (x) should be true = x.should.be.ok describe 'interpolation' interpolation state = undefined before each interpolation state := interpolation.create interpolation () describe "the number of starts should be matched by the same number of stops" it "should not be interpolating if it interpolation hasn't been started" (interpolation state.interpolating ()) should be false it "should be interpolating if it interpolation has been started" interpolation state.start interpolation () (interpolation state.interpolating ()) should be true it "should not be interpolating if interpolation has been started, then stopped" interpolation state.start interpolation () interpolation state.stop interpolation () (interpolation state.interpolating ()) should be false it "should not be interpolating if started twice and stopped twice" interpolation state.start interpolation () interpolation state.start interpolation () interpolation state.stop interpolation () interpolation state.stop interpolation () (interpolation state.interpolating ()) should be false it "should be interpolating if started twice and stopped once" interpolation state.start interpolation () interpolation state.start interpolation () interpolation state.stop interpolation () (interpolation state.interpolating ()) should be true describe "when there are more close brackets than open brackets, then interpolation is finished" before each interpolation state.start interpolation () it 'should be finished interpolation after a close bracket' interpolation state.close bracket () (interpolation state.finished interpolation ()) should be true it 'should not be finished interpolation after an open, then close bracket' interpolation state.open bracket () interpolation state.close bracket () (interpolation state.finished interpolation ()) should be false it 'should not be finished interpolation after a two opens, and two close brackets' interpolation state.open bracket () interpolation state.open bracket () interpolation state.close bracket () interpolation state.close bracket () (interpolation state.finished interpolation ()) should be false it 'should be finished interpolation after a two opens, and three close brackets' interpolation state.open bracket () interpolation state.open bracket () interpolation state.close bracket () interpolation state.close bracket () interpolation state.close bracket () (interpolation state.finished interpolation ()) should be true describe 'multiple interpolations. given the following scenario: "foo #(func ("bar #(x)"))" start interpolation, open bracket start inner interpolation close bracket, stop interpolation close bracket, close bracket stop interpolation' it 'should have stopped interpolation' interpolation state.start interpolation () interpolation state.open bracket () interpolation state.start interpolation () interpolation state.close bracket () (interpolation state.finished interpolation ()) should be true interpolation state.stop interpolation () (interpolation state.interpolating ()) should be true interpolation state.close bracket () interpolation state.close bracket () (interpolation state.finished interpolation ()) should be true interpolation state.stop interpolation () (interpolation state.interpolating ()) should be false
PogoScript
4
featurist/pogoscript
test/interpolationSpec.pogo
[ "BSD-2-Clause" ]
# # Automatically generated file; DO NOT EDIT. # Linux/arm64 4.14.67 Kernel Configuration # CONFIG_ARM64=y CONFIG_64BIT=y CONFIG_ARCH_PHYS_ADDR_T_64BIT=y CONFIG_MMU=y CONFIG_ARM64_PAGE_SHIFT=12 CONFIG_ARM64_CONT_SHIFT=4 CONFIG_ARCH_MMAP_RND_BITS_MIN=18 CONFIG_ARCH_MMAP_RND_BITS_MAX=33 CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=11 CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 CONFIG_STACKTRACE_SUPPORT=y CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 CONFIG_LOCKDEP_SUPPORT=y CONFIG_TRACE_IRQFLAGS_SUPPORT=y CONFIG_RWSEM_XCHGADD_ALGORITHM=y CONFIG_GENERIC_BUG=y CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y CONFIG_GENERIC_HWEIGHT=y CONFIG_GENERIC_CSUM=y CONFIG_GENERIC_CALIBRATE_DELAY=y CONFIG_ZONE_DMA=y CONFIG_HAVE_GENERIC_GUP=y CONFIG_ARCH_DMA_ADDR_T_64BIT=y CONFIG_NEED_DMA_MAP_STATE=y CONFIG_NEED_SG_DMA_LENGTH=y CONFIG_SMP=y CONFIG_SWIOTLB=y CONFIG_IOMMU_HELPER=y CONFIG_KERNEL_MODE_NEON=y CONFIG_FIX_EARLYCON_MEM=y CONFIG_PGTABLE_LEVELS=4 CONFIG_ARCH_SUPPORTS_UPROBES=y CONFIG_ARCH_PROC_KCORE_TEXT=y CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" CONFIG_IRQ_WORK=y CONFIG_BUILDTIME_EXTABLE_SORT=y CONFIG_THREAD_INFO_IN_TASK=y # # General setup # CONFIG_INIT_ENV_ARG_LIMIT=32 CONFIG_CROSS_COMPILE="" # CONFIG_COMPILE_TEST is not set CONFIG_LOCALVERSION="" # CONFIG_LOCALVERSION_AUTO is not set CONFIG_DEFAULT_HOSTNAME="kata-container" CONFIG_SWAP=y CONFIG_SYSVIPC=y CONFIG_SYSVIPC_SYSCTL=y CONFIG_POSIX_MQUEUE=y CONFIG_POSIX_MQUEUE_SYSCTL=y CONFIG_CROSS_MEMORY_ATTACH=y CONFIG_FHANDLE=y # CONFIG_USELIB is not set # CONFIG_AUDIT is not set CONFIG_HAVE_ARCH_AUDITSYSCALL=y # # IRQ subsystem # CONFIG_GENERIC_IRQ_PROBE=y CONFIG_GENERIC_IRQ_SHOW=y CONFIG_GENERIC_IRQ_SHOW_LEVEL=y CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y CONFIG_GENERIC_IRQ_MIGRATION=y CONFIG_HARDIRQS_SW_RESEND=y CONFIG_IRQ_DOMAIN=y CONFIG_IRQ_DOMAIN_HIERARCHY=y CONFIG_GENERIC_MSI_IRQ=y CONFIG_GENERIC_MSI_IRQ_DOMAIN=y CONFIG_HANDLE_DOMAIN_IRQ=y CONFIG_IRQ_FORCED_THREADING=y CONFIG_SPARSE_IRQ=y CONFIG_ARCH_CLOCKSOURCE_DATA=y CONFIG_GENERIC_TIME_VSYSCALL=y CONFIG_GENERIC_CLOCKEVENTS=y CONFIG_ARCH_HAS_TICK_BROADCAST=y CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y # # Timers subsystem # CONFIG_TICK_ONESHOT=y CONFIG_NO_HZ_COMMON=y # CONFIG_HZ_PERIODIC is not set CONFIG_NO_HZ_IDLE=y # CONFIG_NO_HZ_FULL is not set CONFIG_NO_HZ=y CONFIG_HIGH_RES_TIMERS=y # # CPU/Task time and stats accounting # CONFIG_VIRT_CPU_ACCOUNTING=y # CONFIG_TICK_CPU_ACCOUNTING is not set CONFIG_VIRT_CPU_ACCOUNTING_GEN=y # CONFIG_IRQ_TIME_ACCOUNTING is not set CONFIG_BSD_PROCESS_ACCT=y CONFIG_BSD_PROCESS_ACCT_V3=y CONFIG_TASKSTATS=y CONFIG_TASK_DELAY_ACCT=y CONFIG_TASK_XACCT=y CONFIG_TASK_IO_ACCOUNTING=y # # RCU Subsystem # CONFIG_TREE_RCU=y # CONFIG_RCU_EXPERT is not set CONFIG_SRCU=y CONFIG_TREE_SRCU=y # CONFIG_TASKS_RCU is not set CONFIG_RCU_STALL_COMMON=y CONFIG_RCU_NEED_SEGCBLIST=y CONFIG_CONTEXT_TRACKING=y # CONFIG_CONTEXT_TRACKING_FORCE is not set # CONFIG_BUILD_BIN2C is not set # CONFIG_IKCONFIG is not set CONFIG_LOG_BUF_SHIFT=18 CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 CONFIG_GENERIC_SCHED_CLOCK=y CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y CONFIG_CGROUPS=y CONFIG_PAGE_COUNTER=y CONFIG_MEMCG=y CONFIG_MEMCG_SWAP=y CONFIG_MEMCG_SWAP_ENABLED=y CONFIG_BLK_CGROUP=y # CONFIG_DEBUG_BLK_CGROUP is not set CONFIG_CGROUP_WRITEBACK=y CONFIG_CGROUP_SCHED=y CONFIG_FAIR_GROUP_SCHED=y CONFIG_CFS_BANDWIDTH=y CONFIG_RT_GROUP_SCHED=y CONFIG_CGROUP_PIDS=y # CONFIG_CGROUP_RDMA is not set CONFIG_CGROUP_FREEZER=y # CONFIG_CGROUP_HUGETLB is not set CONFIG_CPUSETS=y CONFIG_PROC_PID_CPUSET=y CONFIG_CGROUP_DEVICE=y CONFIG_CGROUP_CPUACCT=y CONFIG_CGROUP_PERF=y CONFIG_SOCK_CGROUP_DATA=y # CONFIG_CHECKPOINT_RESTORE is not set CONFIG_NAMESPACES=y CONFIG_UTS_NS=y CONFIG_IPC_NS=y CONFIG_USER_NS=y CONFIG_PID_NS=y CONFIG_NET_NS=y CONFIG_SCHED_AUTOGROUP=y # CONFIG_SYSFS_DEPRECATED is not set # CONFIG_RELAY is not set CONFIG_BLK_DEV_INITRD=y CONFIG_INITRAMFS_SOURCE="" CONFIG_RD_GZIP=y # CONFIG_RD_BZIP2 is not set # CONFIG_RD_LZMA is not set # CONFIG_RD_XZ is not set # CONFIG_RD_LZO is not set # CONFIG_RD_LZ4 is not set CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set CONFIG_SYSCTL=y CONFIG_ANON_INODES=y CONFIG_SYSCTL_EXCEPTION_TRACE=y CONFIG_BPF=y # CONFIG_EXPERT is not set CONFIG_MULTIUSER=y # CONFIG_SGETMASK_SYSCALL is not set CONFIG_SYSFS_SYSCALL=y # CONFIG_SYSCTL_SYSCALL is not set CONFIG_POSIX_TIMERS=y CONFIG_KALLSYMS=y # CONFIG_KALLSYMS_ABSOLUTE_PERCPU is not set CONFIG_KALLSYMS_BASE_RELATIVE=y CONFIG_PRINTK=y CONFIG_BUG=y CONFIG_ELF_CORE=y CONFIG_BASE_FULL=y CONFIG_FUTEX=y CONFIG_FUTEX_PI=y CONFIG_EPOLL=y CONFIG_SIGNALFD=y CONFIG_TIMERFD=y CONFIG_EVENTFD=y # CONFIG_BPF_SYSCALL is not set CONFIG_SHMEM=y CONFIG_AIO=y CONFIG_ADVISE_SYSCALLS=y # CONFIG_USERFAULTFD is not set CONFIG_PCI_QUIRKS=y CONFIG_MEMBARRIER=y # CONFIG_EMBEDDED is not set CONFIG_HAVE_PERF_EVENTS=y # CONFIG_PC104 is not set # # Kernel Performance Events And Counters # CONFIG_PERF_EVENTS=y CONFIG_VM_EVENT_COUNTERS=y # CONFIG_COMPAT_BRK is not set CONFIG_SLAB=y # CONFIG_SLUB is not set CONFIG_SLAB_MERGE_DEFAULT=y # CONFIG_SLAB_FREELIST_RANDOM is not set # CONFIG_SYSTEM_DATA_VERIFICATION is not set # CONFIG_PROFILING is not set # CONFIG_KPROBES is not set # CONFIG_JUMP_LABEL is not set # CONFIG_UPROBES is not set # CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y CONFIG_HAVE_KPROBES=y CONFIG_HAVE_KRETPROBES=y CONFIG_HAVE_ARCH_TRACEHOOK=y CONFIG_HAVE_DMA_CONTIGUOUS=y CONFIG_GENERIC_SMP_IDLE_THREAD=y CONFIG_GENERIC_IDLE_POLL_SETUP=y CONFIG_ARCH_HAS_FORTIFY_SOURCE=y CONFIG_ARCH_HAS_SET_MEMORY=y CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y CONFIG_HAVE_CLK=y CONFIG_HAVE_DMA_API_DEBUG=y CONFIG_HAVE_HW_BREAKPOINT=y CONFIG_HAVE_PERF_REGS=y CONFIG_HAVE_PERF_USER_STACK_DUMP=y CONFIG_HAVE_ARCH_JUMP_LABEL=y CONFIG_HAVE_RCU_TABLE_FREE=y CONFIG_HAVE_CMPXCHG_LOCAL=y CONFIG_HAVE_CMPXCHG_DOUBLE=y CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y CONFIG_HAVE_ARCH_SECCOMP_FILTER=y CONFIG_SECCOMP_FILTER=y CONFIG_HAVE_GCC_PLUGINS=y # CONFIG_GCC_PLUGINS is not set CONFIG_HAVE_CC_STACKPROTECTOR=y # CONFIG_CC_STACKPROTECTOR is not set CONFIG_CC_STACKPROTECTOR_NONE=y # CONFIG_CC_STACKPROTECTOR_REGULAR is not set # CONFIG_CC_STACKPROTECTOR_STRONG is not set CONFIG_THIN_ARCHIVES=y CONFIG_HAVE_CONTEXT_TRACKING=y CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y CONFIG_HAVE_ARCH_HUGE_VMAP=y CONFIG_MODULES_USE_ELF_RELA=y CONFIG_ARCH_HAS_ELF_RANDOMIZE=y CONFIG_HAVE_ARCH_MMAP_RND_BITS=y CONFIG_ARCH_MMAP_RND_BITS=18 # CONFIG_HAVE_ARCH_HASH is not set # CONFIG_ISA_BUS_API is not set CONFIG_CLONE_BACKWARDS=y # CONFIG_CPU_NO_EFFICIENT_FFS is not set CONFIG_HAVE_ARCH_VMAP_STACK=y CONFIG_VMAP_STACK=y # CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set # CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y CONFIG_STRICT_KERNEL_RWX=y CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y CONFIG_STRICT_MODULE_RWX=y # CONFIG_REFCOUNT_FULL is not set # # GCOV-based kernel profiling # CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y CONFIG_HAVE_GENERIC_DMA_COHERENT=y CONFIG_SLABINFO=y CONFIG_RT_MUTEXES=y CONFIG_BASE_SMALL=0 CONFIG_MODULES=y # CONFIG_MODULE_FORCE_LOAD is not set # CONFIG_MODULE_UNLOAD is not set # CONFIG_MODVERSIONS is not set # CONFIG_MODULE_SRCVERSION_ALL is not set # CONFIG_MODULE_SIG is not set # CONFIG_MODULE_COMPRESS is not set # CONFIG_TRIM_UNUSED_KSYMS is not set CONFIG_MODULES_TREE_LOOKUP=y CONFIG_BLOCK=y CONFIG_BLK_SCSI_REQUEST=y CONFIG_BLK_DEV_BSG=y CONFIG_BLK_DEV_BSGLIB=y CONFIG_BLK_DEV_INTEGRITY=y # CONFIG_BLK_DEV_ZONED is not set # CONFIG_BLK_DEV_THROTTLING is not set # CONFIG_BLK_CMDLINE_PARSER is not set # CONFIG_BLK_WBT is not set # CONFIG_BLK_SED_OPAL is not set # # Partition Types # CONFIG_PARTITION_ADVANCED=y # CONFIG_ACORN_PARTITION is not set # CONFIG_AIX_PARTITION is not set # CONFIG_OSF_PARTITION is not set # CONFIG_AMIGA_PARTITION is not set # CONFIG_ATARI_PARTITION is not set # CONFIG_MAC_PARTITION is not set CONFIG_MSDOS_PARTITION=y # CONFIG_BSD_DISKLABEL is not set # CONFIG_MINIX_SUBPARTITION is not set # CONFIG_SOLARIS_X86_PARTITION is not set # CONFIG_UNIXWARE_DISKLABEL is not set # CONFIG_LDM_PARTITION is not set # CONFIG_SGI_PARTITION is not set # CONFIG_ULTRIX_PARTITION is not set # CONFIG_SUN_PARTITION is not set # CONFIG_KARMA_PARTITION is not set CONFIG_EFI_PARTITION=y # CONFIG_SYSV68_PARTITION is not set # CONFIG_CMDLINE_PARTITION is not set CONFIG_BLK_MQ_PCI=y CONFIG_BLK_MQ_VIRTIO=y # # IO Schedulers # CONFIG_IOSCHED_NOOP=y # CONFIG_IOSCHED_DEADLINE is not set CONFIG_IOSCHED_CFQ=y # CONFIG_CFQ_GROUP_IOSCHED is not set CONFIG_DEFAULT_CFQ=y # CONFIG_DEFAULT_NOOP is not set CONFIG_DEFAULT_IOSCHED="cfq" CONFIG_MQ_IOSCHED_DEADLINE=y CONFIG_MQ_IOSCHED_KYBER=y # CONFIG_IOSCHED_BFQ is not set CONFIG_INLINE_SPIN_UNLOCK_IRQ=y CONFIG_INLINE_READ_UNLOCK=y CONFIG_INLINE_READ_UNLOCK_IRQ=y CONFIG_INLINE_WRITE_UNLOCK=y CONFIG_INLINE_WRITE_UNLOCK_IRQ=y CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y CONFIG_MUTEX_SPIN_ON_OWNER=y CONFIG_RWSEM_SPIN_ON_OWNER=y CONFIG_LOCK_SPIN_ON_OWNER=y CONFIG_FREEZER=y # # Platform selection # # CONFIG_ARCH_ACTIONS is not set # CONFIG_ARCH_SUNXI is not set # CONFIG_ARCH_ALPINE is not set # CONFIG_ARCH_BCM2835 is not set # CONFIG_ARCH_BCM_IPROC is not set # CONFIG_ARCH_BERLIN is not set # CONFIG_ARCH_BRCMSTB is not set # CONFIG_ARCH_EXYNOS is not set # CONFIG_ARCH_LAYERSCAPE is not set # CONFIG_ARCH_LG1K is not set # CONFIG_ARCH_HISI is not set # CONFIG_ARCH_MEDIATEK is not set # CONFIG_ARCH_MESON is not set # CONFIG_ARCH_MVEBU is not set # CONFIG_ARCH_QCOM is not set # CONFIG_ARCH_REALTEK is not set # CONFIG_ARCH_ROCKCHIP is not set # CONFIG_ARCH_SEATTLE is not set # CONFIG_ARCH_RENESAS is not set # CONFIG_ARCH_STRATIX10 is not set # CONFIG_ARCH_TEGRA is not set # CONFIG_ARCH_SPRD is not set # CONFIG_ARCH_THUNDER is not set # CONFIG_ARCH_THUNDER2 is not set # CONFIG_ARCH_UNIPHIER is not set # CONFIG_ARCH_VEXPRESS is not set # CONFIG_ARCH_VULCAN is not set # CONFIG_ARCH_XGENE is not set # CONFIG_ARCH_ZX is not set # CONFIG_ARCH_ZYNQMP is not set # # Bus support # CONFIG_PCI=y CONFIG_PCI_DOMAINS=y CONFIG_PCI_DOMAINS_GENERIC=y CONFIG_PCI_SYSCALL=y CONFIG_PCIEPORTBUS=y CONFIG_HOTPLUG_PCI_PCIE=y # CONFIG_PCIEAER is not set CONFIG_PCIEASPM=y # CONFIG_PCIEASPM_DEBUG is not set CONFIG_PCIEASPM_DEFAULT=y # CONFIG_PCIEASPM_POWERSAVE is not set # CONFIG_PCIEASPM_POWER_SUPERSAVE is not set # CONFIG_PCIEASPM_PERFORMANCE is not set CONFIG_PCIE_PME=y # CONFIG_PCIE_DPC is not set # CONFIG_PCIE_PTM is not set CONFIG_PCI_BUS_ADDR_T_64BIT=y CONFIG_PCI_MSI=y CONFIG_PCI_MSI_IRQ_DOMAIN=y CONFIG_PCI_REALLOC_ENABLE_AUTO=y CONFIG_PCI_STUB=y CONFIG_PCI_ATS=y CONFIG_PCI_ECAM=y CONFIG_PCI_IOV=y # CONFIG_PCI_PRI is not set # CONFIG_PCI_PASID is not set CONFIG_HOTPLUG_PCI=y CONFIG_HOTPLUG_PCI_CPCI=y CONFIG_HOTPLUG_PCI_SHPC=y # # DesignWare PCI Core Support # # CONFIG_PCIE_DW_PLAT is not set # CONFIG_PCI_HISI is not set # CONFIG_PCIE_KIRIN is not set # # PCI host controller drivers # CONFIG_PCI_HOST_COMMON=y CONFIG_PCI_HOST_GENERIC=y # CONFIG_PCI_XGENE is not set # CONFIG_PCI_HOST_THUNDER_PEM is not set # CONFIG_PCI_HOST_THUNDER_ECAM is not set # # PCI Endpoint # # CONFIG_PCI_ENDPOINT is not set # # PCI switch controller drivers # # CONFIG_PCI_SW_SWITCHTEC is not set # # Kernel Features # # # ARM errata workarounds via the alternatives framework # CONFIG_ARM64_ERRATUM_826319=y CONFIG_ARM64_ERRATUM_827319=y CONFIG_ARM64_ERRATUM_824069=y CONFIG_ARM64_ERRATUM_819472=y CONFIG_ARM64_ERRATUM_832075=y CONFIG_ARM64_ERRATUM_843419=y CONFIG_ARM64_ERRATUM_1024718=y CONFIG_CAVIUM_ERRATUM_22375=y CONFIG_CAVIUM_ERRATUM_23154=y # CONFIG_CAVIUM_ERRATUM_27456 is not set CONFIG_CAVIUM_ERRATUM_30115=y CONFIG_QCOM_FALKOR_ERRATUM_1003=y CONFIG_QCOM_FALKOR_ERRATUM_1009=y CONFIG_QCOM_QDF2400_ERRATUM_0065=y CONFIG_QCOM_FALKOR_ERRATUM_E1041=y CONFIG_ARM64_4K_PAGES=y # CONFIG_ARM64_16K_PAGES is not set # CONFIG_ARM64_64K_PAGES is not set # CONFIG_ARM64_VA_BITS_39 is not set CONFIG_ARM64_VA_BITS_48=y CONFIG_ARM64_VA_BITS=48 # CONFIG_CPU_BIG_ENDIAN is not set CONFIG_SCHED_MC=y CONFIG_SCHED_SMT=y CONFIG_NR_CPUS=255 CONFIG_HOTPLUG_CPU=y CONFIG_ARCH_HAS_ADD_PAGES=y CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y # CONFIG_NUMA is not set CONFIG_ARCH_MEMORY_PROBE=y CONFIG_PREEMPT_NONE=y # CONFIG_PREEMPT_VOLUNTARY is not set # CONFIG_PREEMPT is not set # CONFIG_HZ_100 is not set # CONFIG_HZ_250 is not set # CONFIG_HZ_300 is not set CONFIG_HZ_1000=y CONFIG_HZ=1000 CONFIG_SCHED_HRTICK=y CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y CONFIG_ARCH_HAS_HOLES_MEMORYMODEL=y CONFIG_ARCH_SPARSEMEM_ENABLE=y CONFIG_ARCH_SPARSEMEM_DEFAULT=y CONFIG_ARCH_SELECT_MEMORY_MODEL=y CONFIG_HAVE_ARCH_PFN_VALID=y CONFIG_HW_PERF_EVENTS=y CONFIG_SYS_SUPPORTS_HUGETLBFS=y CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_SELECT_MEMORY_MODEL=y CONFIG_SPARSEMEM_MANUAL=y CONFIG_SPARSEMEM=y CONFIG_HAVE_MEMORY_PRESENT=y CONFIG_SPARSEMEM_EXTREME=y CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y # CONFIG_SPARSEMEM_VMEMMAP is not set CONFIG_HAVE_MEMBLOCK=y CONFIG_NO_BOOTMEM=y # CONFIG_HAVE_BOOTMEM_INFO_NODE is not set CONFIG_MEMORY_HOTPLUG=y CONFIG_MEMORY_HOTPLUG_SPARSE=y CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=y CONFIG_SPLIT_PTLOCK_CPUS=4 CONFIG_MEMORY_BALLOON=y # CONFIG_COMPACTION is not set CONFIG_PHYS_ADDR_T_64BIT=y CONFIG_BOUNCE=y # CONFIG_KSM is not set CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y # CONFIG_MEMORY_FAILURE is not set # CONFIG_TRANSPARENT_HUGEPAGE is not set # CONFIG_ARCH_WANTS_THP_SWAP is not set # CONFIG_CLEANCACHE is not set # CONFIG_FRONTSWAP is not set # CONFIG_CMA is not set # CONFIG_ZPOOL is not set # CONFIG_ZBUD is not set # CONFIG_ZSMALLOC is not set CONFIG_GENERIC_EARLY_IOREMAP=y # CONFIG_IDLE_PAGE_TRACKING is not set # CONFIG_PERCPU_STATS is not set CONFIG_SECCOMP=y CONFIG_PARAVIRT=y # CONFIG_PARAVIRT_TIME_ACCOUNTING is not set # CONFIG_CRASH_DUMP is not set CONFIG_XEN_DOM0=y CONFIG_XEN=y CONFIG_FORCE_MAX_ZONEORDER=11 CONFIG_UNMAP_KERNEL_AT_EL0=y CONFIG_HARDEN_BRANCH_PREDICTOR=y CONFIG_ARM64_SSBD=y # CONFIG_ARM64_SW_TTBR0_PAN is not set # # ARMv8.1 architectural features # CONFIG_ARM64_HW_AFDBM=y CONFIG_ARM64_PAN=y # CONFIG_ARM64_LSE_ATOMICS is not set CONFIG_ARM64_VHE=y # # ARMv8.2 architectural features # CONFIG_ARM64_UAO=y # CONFIG_ARM64_PMEM is not set CONFIG_ARM64_MODULE_CMODEL_LARGE=y # CONFIG_RANDOMIZE_BASE is not set # # Boot options # CONFIG_CMDLINE="" # CONFIG_CMDLINE_FORCE is not set CONFIG_EFI_STUB=y CONFIG_EFI=y # CONFIG_DMI is not set # # Userspace binary formats # CONFIG_BINFMT_ELF=y CONFIG_ELFCORE=y # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set CONFIG_BINFMT_SCRIPT=y # CONFIG_HAVE_AOUT is not set CONFIG_BINFMT_MISC=y CONFIG_COREDUMP=y # CONFIG_COMPAT is not set # # Power management options # # CONFIG_SUSPEND is not set # CONFIG_HIBERNATION is not set CONFIG_PM=y # CONFIG_PM_DEBUG is not set CONFIG_PM_CLK=y # CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set CONFIG_CPU_PM=y CONFIG_ARCH_HIBERNATION_POSSIBLE=y CONFIG_ARCH_SUSPEND_POSSIBLE=y # # CPU Power Management # # # CPU Idle # CONFIG_CPU_IDLE=y CONFIG_CPU_IDLE_GOV_LADDER=y CONFIG_CPU_IDLE_GOV_MENU=y # # ARM CPU Idle Drivers # # CONFIG_ARM_CPUIDLE is not set # CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set # # CPU Frequency scaling # # CONFIG_CPU_FREQ is not set CONFIG_NET=y CONFIG_NET_INGRESS=y # # Networking options # CONFIG_PACKET=y # CONFIG_PACKET_DIAG is not set CONFIG_UNIX=y # CONFIG_UNIX_DIAG is not set # CONFIG_TLS is not set CONFIG_XFRM=y CONFIG_XFRM_ALGO=y CONFIG_XFRM_USER=y CONFIG_XFRM_SUB_POLICY=y CONFIG_XFRM_MIGRATE=y CONFIG_XFRM_STATISTICS=y # CONFIG_NET_KEY is not set CONFIG_INET=y CONFIG_IP_MULTICAST=y # CONFIG_IP_ADVANCED_ROUTER is not set CONFIG_IP_PNP=y CONFIG_IP_PNP_DHCP=y # CONFIG_IP_PNP_BOOTP is not set # CONFIG_IP_PNP_RARP is not set # CONFIG_NET_IPIP is not set # CONFIG_NET_IPGRE_DEMUX is not set # CONFIG_NET_IP_TUNNEL is not set # CONFIG_IP_MROUTE is not set # CONFIG_SYN_COOKIES is not set # CONFIG_NET_UDP_TUNNEL is not set # CONFIG_NET_FOU is not set # CONFIG_INET_AH is not set # CONFIG_INET_ESP is not set # CONFIG_INET_IPCOMP is not set # CONFIG_INET_XFRM_TUNNEL is not set # CONFIG_INET_TUNNEL is not set # CONFIG_INET_XFRM_MODE_TRANSPORT is not set # CONFIG_INET_XFRM_MODE_TUNNEL is not set # CONFIG_INET_XFRM_MODE_BEET is not set # CONFIG_INET_DIAG is not set CONFIG_TCP_CONG_ADVANCED=y # CONFIG_TCP_CONG_BIC is not set # CONFIG_TCP_CONG_CUBIC is not set # CONFIG_TCP_CONG_WESTWOOD is not set # CONFIG_TCP_CONG_HTCP is not set # CONFIG_TCP_CONG_HSTCP is not set # CONFIG_TCP_CONG_HYBLA is not set # CONFIG_TCP_CONG_VEGAS is not set # CONFIG_TCP_CONG_NV is not set # CONFIG_TCP_CONG_SCALABLE is not set # CONFIG_TCP_CONG_LP is not set # CONFIG_TCP_CONG_VENO is not set # CONFIG_TCP_CONG_YEAH is not set # CONFIG_TCP_CONG_ILLINOIS is not set # CONFIG_TCP_CONG_DCTCP is not set # CONFIG_TCP_CONG_CDG is not set CONFIG_TCP_CONG_BBR=y CONFIG_DEFAULT_BBR=y # CONFIG_DEFAULT_RENO is not set CONFIG_DEFAULT_TCP_CONG="bbr" CONFIG_TCP_MD5SIG=y CONFIG_IPV6=y # CONFIG_IPV6_ROUTER_PREF is not set # CONFIG_IPV6_OPTIMISTIC_DAD is not set # CONFIG_INET6_AH is not set # CONFIG_INET6_ESP is not set # CONFIG_INET6_IPCOMP is not set # CONFIG_IPV6_MIP6 is not set # CONFIG_IPV6_ILA is not set # CONFIG_INET6_XFRM_TUNNEL is not set # CONFIG_INET6_TUNNEL is not set CONFIG_INET6_XFRM_MODE_TRANSPORT=y CONFIG_INET6_XFRM_MODE_TUNNEL=y CONFIG_INET6_XFRM_MODE_BEET=y # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set # CONFIG_IPV6_VTI is not set # CONFIG_IPV6_SIT is not set # CONFIG_IPV6_TUNNEL is not set # CONFIG_IPV6_FOU is not set # CONFIG_IPV6_FOU_TUNNEL is not set # CONFIG_IPV6_MULTIPLE_TABLES is not set # CONFIG_IPV6_MROUTE is not set # CONFIG_IPV6_SEG6_LWTUNNEL is not set # CONFIG_IPV6_SEG6_HMAC is not set # CONFIG_NETWORK_SECMARK is not set # CONFIG_NET_PTP_CLASSIFY is not set # CONFIG_NETWORK_PHY_TIMESTAMPING is not set CONFIG_NETFILTER=y CONFIG_NETFILTER_ADVANCED=y # CONFIG_BRIDGE_NETFILTER is not set # # Core Netfilter Configuration # CONFIG_NETFILTER_INGRESS=y CONFIG_NETFILTER_NETLINK=y # CONFIG_NETFILTER_NETLINK_ACCT is not set # CONFIG_NETFILTER_NETLINK_QUEUE is not set # CONFIG_NETFILTER_NETLINK_LOG is not set # CONFIG_NF_CONNTRACK is not set # CONFIG_NF_LOG_NETDEV is not set # CONFIG_NF_TABLES is not set CONFIG_NETFILTER_XTABLES=y # # Xtables combined modules # # CONFIG_NETFILTER_XT_MARK is not set # CONFIG_NETFILTER_XT_SET is not set # # Xtables targets # # CONFIG_NETFILTER_XT_TARGET_CHECKSUM is not set # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set # CONFIG_NETFILTER_XT_TARGET_DSCP is not set CONFIG_NETFILTER_XT_TARGET_HL=y # CONFIG_NETFILTER_XT_TARGET_HMARK is not set # CONFIG_NETFILTER_XT_TARGET_IDLETIMER is not set # CONFIG_NETFILTER_XT_TARGET_LOG is not set # CONFIG_NETFILTER_XT_TARGET_MARK is not set # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set # CONFIG_NETFILTER_XT_TARGET_RATEEST is not set # CONFIG_NETFILTER_XT_TARGET_TEE is not set # CONFIG_NETFILTER_XT_TARGET_TPROXY is not set # CONFIG_NETFILTER_XT_TARGET_TRACE is not set # CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set # CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set # # Xtables matches # # CONFIG_NETFILTER_XT_MATCH_ADDRTYPE is not set # CONFIG_NETFILTER_XT_MATCH_BPF is not set # CONFIG_NETFILTER_XT_MATCH_CGROUP is not set # CONFIG_NETFILTER_XT_MATCH_COMMENT is not set # CONFIG_NETFILTER_XT_MATCH_CPU is not set # CONFIG_NETFILTER_XT_MATCH_DCCP is not set # CONFIG_NETFILTER_XT_MATCH_DEVGROUP is not set # CONFIG_NETFILTER_XT_MATCH_DSCP is not set CONFIG_NETFILTER_XT_MATCH_ECN=y # CONFIG_NETFILTER_XT_MATCH_ESP is not set # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set CONFIG_NETFILTER_XT_MATCH_HL=y # CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set # CONFIG_NETFILTER_XT_MATCH_L2TP is not set # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set # CONFIG_NETFILTER_XT_MATCH_MAC is not set # CONFIG_NETFILTER_XT_MATCH_MARK is not set # CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set # CONFIG_NETFILTER_XT_MATCH_NFACCT is not set # CONFIG_NETFILTER_XT_MATCH_OSF is not set # CONFIG_NETFILTER_XT_MATCH_OWNER is not set # CONFIG_NETFILTER_XT_MATCH_POLICY is not set # CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set # CONFIG_NETFILTER_XT_MATCH_QUOTA is not set # CONFIG_NETFILTER_XT_MATCH_RATEEST is not set # CONFIG_NETFILTER_XT_MATCH_REALM is not set # CONFIG_NETFILTER_XT_MATCH_RECENT is not set # CONFIG_NETFILTER_XT_MATCH_SCTP is not set # CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set # CONFIG_NETFILTER_XT_MATCH_STRING is not set # CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set # CONFIG_NETFILTER_XT_MATCH_TIME is not set # CONFIG_NETFILTER_XT_MATCH_U32 is not set CONFIG_IP_SET=y CONFIG_IP_SET_MAX=256 # CONFIG_IP_SET_BITMAP_IP is not set # CONFIG_IP_SET_BITMAP_IPMAC is not set # CONFIG_IP_SET_BITMAP_PORT is not set # CONFIG_IP_SET_HASH_IP is not set # CONFIG_IP_SET_HASH_IPMARK is not set # CONFIG_IP_SET_HASH_IPPORT is not set # CONFIG_IP_SET_HASH_IPPORTIP is not set # CONFIG_IP_SET_HASH_IPPORTNET is not set # CONFIG_IP_SET_HASH_IPMAC is not set # CONFIG_IP_SET_HASH_MAC is not set # CONFIG_IP_SET_HASH_NETPORTNET is not set # CONFIG_IP_SET_HASH_NET is not set # CONFIG_IP_SET_HASH_NETNET is not set # CONFIG_IP_SET_HASH_NETPORT is not set # CONFIG_IP_SET_HASH_NETIFACE is not set # CONFIG_IP_SET_LIST_SET is not set # CONFIG_IP_VS is not set # # IP: Netfilter Configuration # # CONFIG_NF_DEFRAG_IPV4 is not set # CONFIG_NF_SOCKET_IPV4 is not set # CONFIG_NF_DUP_IPV4 is not set # CONFIG_NF_LOG_ARP is not set # CONFIG_NF_LOG_IPV4 is not set CONFIG_NF_REJECT_IPV4=y CONFIG_IP_NF_IPTABLES=y CONFIG_IP_NF_MATCH_AH=y CONFIG_IP_NF_MATCH_ECN=y CONFIG_IP_NF_MATCH_RPFILTER=y CONFIG_IP_NF_MATCH_TTL=y CONFIG_IP_NF_FILTER=y CONFIG_IP_NF_TARGET_REJECT=y CONFIG_IP_NF_MANGLE=y CONFIG_IP_NF_TARGET_ECN=y CONFIG_IP_NF_TARGET_TTL=y CONFIG_IP_NF_RAW=y # CONFIG_IP_NF_ARPTABLES is not set # # IPv6: Netfilter Configuration # # CONFIG_NF_DEFRAG_IPV6 is not set # CONFIG_NF_SOCKET_IPV6 is not set # CONFIG_NF_DUP_IPV6 is not set CONFIG_NF_REJECT_IPV6=y # CONFIG_NF_LOG_IPV6 is not set CONFIG_IP6_NF_IPTABLES=y CONFIG_IP6_NF_MATCH_AH=y CONFIG_IP6_NF_MATCH_EUI64=y CONFIG_IP6_NF_MATCH_FRAG=y CONFIG_IP6_NF_MATCH_OPTS=y CONFIG_IP6_NF_MATCH_HL=y CONFIG_IP6_NF_MATCH_IPV6HEADER=y CONFIG_IP6_NF_MATCH_MH=y CONFIG_IP6_NF_MATCH_RPFILTER=y CONFIG_IP6_NF_MATCH_RT=y CONFIG_IP6_NF_TARGET_HL=y CONFIG_IP6_NF_FILTER=y CONFIG_IP6_NF_TARGET_REJECT=y CONFIG_IP6_NF_MANGLE=y CONFIG_IP6_NF_RAW=y # CONFIG_BRIDGE_NF_EBTABLES is not set # CONFIG_IP_DCCP is not set # CONFIG_IP_SCTP is not set # CONFIG_RDS is not set # CONFIG_TIPC is not set # CONFIG_ATM is not set # CONFIG_L2TP is not set CONFIG_STP=y CONFIG_BRIDGE=y CONFIG_BRIDGE_IGMP_SNOOPING=y CONFIG_HAVE_NET_DSA=y # CONFIG_NET_DSA is not set # CONFIG_VLAN_8021Q is not set # CONFIG_DECNET is not set CONFIG_LLC=y # CONFIG_LLC2 is not set # CONFIG_IPX is not set # CONFIG_ATALK is not set # CONFIG_X25 is not set # CONFIG_LAPB is not set # CONFIG_PHONET is not set # CONFIG_6LOWPAN is not set # CONFIG_IEEE802154 is not set CONFIG_NET_SCHED=y # # Queueing/Scheduling # CONFIG_NET_SCH_CBQ=y # CONFIG_NET_SCH_HTB is not set # CONFIG_NET_SCH_HFSC is not set # CONFIG_NET_SCH_PRIO is not set CONFIG_NET_SCH_MULTIQ=y # CONFIG_NET_SCH_RED is not set # CONFIG_NET_SCH_SFB is not set # CONFIG_NET_SCH_SFQ is not set # CONFIG_NET_SCH_TEQL is not set # CONFIG_NET_SCH_TBF is not set # CONFIG_NET_SCH_GRED is not set # CONFIG_NET_SCH_DSMARK is not set # CONFIG_NET_SCH_NETEM is not set # CONFIG_NET_SCH_DRR is not set # CONFIG_NET_SCH_MQPRIO is not set # CONFIG_NET_SCH_CHOKE is not set # CONFIG_NET_SCH_QFQ is not set # CONFIG_NET_SCH_CODEL is not set CONFIG_NET_SCH_FQ_CODEL=y CONFIG_NET_SCH_FQ=y # CONFIG_NET_SCH_HHF is not set # CONFIG_NET_SCH_PIE is not set # CONFIG_NET_SCH_PLUG is not set # CONFIG_NET_SCH_DEFAULT is not set # # Classification # CONFIG_NET_CLS=y # CONFIG_NET_CLS_BASIC is not set # CONFIG_NET_CLS_TCINDEX is not set # CONFIG_NET_CLS_ROUTE4 is not set # CONFIG_NET_CLS_FW is not set # CONFIG_NET_CLS_U32 is not set # CONFIG_NET_CLS_RSVP is not set # CONFIG_NET_CLS_RSVP6 is not set # CONFIG_NET_CLS_FLOW is not set CONFIG_NET_CLS_CGROUP=y # CONFIG_NET_CLS_BPF is not set # CONFIG_NET_CLS_FLOWER is not set # CONFIG_NET_CLS_MATCHALL is not set CONFIG_NET_EMATCH=y CONFIG_NET_EMATCH_STACK=32 # CONFIG_NET_EMATCH_CMP is not set # CONFIG_NET_EMATCH_NBYTE is not set # CONFIG_NET_EMATCH_U32 is not set # CONFIG_NET_EMATCH_META is not set # CONFIG_NET_EMATCH_TEXT is not set # CONFIG_NET_EMATCH_IPSET is not set # CONFIG_NET_CLS_ACT is not set CONFIG_NET_SCH_FIFO=y # CONFIG_DCB is not set CONFIG_DNS_RESOLVER=m # CONFIG_BATMAN_ADV is not set # CONFIG_OPENVSWITCH is not set CONFIG_VSOCKETS=y CONFIG_VIRTIO_VSOCKETS=y CONFIG_VIRTIO_VSOCKETS_COMMON=y # CONFIG_NETLINK_DIAG is not set # CONFIG_MPLS is not set # CONFIG_NET_NSH is not set # CONFIG_HSR is not set CONFIG_NET_SWITCHDEV=y # CONFIG_NET_L3_MASTER_DEV is not set # CONFIG_NET_NCSI is not set CONFIG_RPS=y CONFIG_RFS_ACCEL=y CONFIG_XPS=y CONFIG_CGROUP_NET_PRIO=y CONFIG_CGROUP_NET_CLASSID=y CONFIG_NET_RX_BUSY_POLL=y CONFIG_BQL=y # CONFIG_BPF_JIT is not set CONFIG_NET_FLOW_LIMIT=y # # Network testing # # CONFIG_NET_PKTGEN is not set # CONFIG_HAMRADIO is not set # CONFIG_CAN is not set # CONFIG_BT is not set # CONFIG_AF_RXRPC is not set # CONFIG_AF_KCM is not set # CONFIG_STREAM_PARSER is not set # CONFIG_WIRELESS is not set # CONFIG_WIMAX is not set # CONFIG_RFKILL is not set CONFIG_NET_9P=y CONFIG_NET_9P_VIRTIO=y # CONFIG_NET_9P_XEN is not set # CONFIG_NET_9P_DEBUG is not set # CONFIG_CAIF is not set # CONFIG_CEPH_LIB is not set # CONFIG_NFC is not set # CONFIG_PSAMPLE is not set # CONFIG_NET_IFE is not set # CONFIG_LWTUNNEL is not set # CONFIG_DST_CACHE is not set CONFIG_GRO_CELLS=y # CONFIG_NET_DEVLINK is not set CONFIG_MAY_USE_DEVLINK=y CONFIG_HAVE_EBPF_JIT=y # # Device Drivers # CONFIG_ARM_AMBA=y # # Generic Driver Options # # CONFIG_UEVENT_HELPER is not set CONFIG_DEVTMPFS=y CONFIG_DEVTMPFS_MOUNT=y CONFIG_STANDALONE=y CONFIG_PREVENT_FIRMWARE_BUILD=y CONFIG_FW_LOADER=y # CONFIG_FIRMWARE_IN_KERNEL is not set CONFIG_EXTRA_FIRMWARE="" # CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set CONFIG_ALLOW_DEV_COREDUMP=y # CONFIG_TEST_ASYNC_DRIVER_PROBE is not set # CONFIG_SYS_HYPERVISOR is not set # CONFIG_GENERIC_CPU_DEVICES is not set CONFIG_GENERIC_CPU_AUTOPROBE=y # CONFIG_DMA_SHARED_BUFFER is not set CONFIG_GENERIC_ARCH_TOPOLOGY=y # # Bus devices # # CONFIG_ARM_CCI400_PMU is not set # CONFIG_ARM_CCI5xx_PMU is not set # CONFIG_ARM_CCN is not set # CONFIG_BRCMSTB_GISB_ARB is not set # CONFIG_SIMPLE_PM_BUS is not set # CONFIG_VEXPRESS_CONFIG is not set CONFIG_CONNECTOR=y CONFIG_PROC_EVENTS=y # CONFIG_MTD is not set CONFIG_DTC=y CONFIG_OF=y # CONFIG_OF_UNITTEST is not set CONFIG_OF_FLATTREE=y CONFIG_OF_EARLY_FLATTREE=y CONFIG_OF_ADDRESS=y CONFIG_OF_ADDRESS_PCI=y CONFIG_OF_IRQ=y CONFIG_OF_NET=y CONFIG_OF_PCI=y CONFIG_OF_PCI_IRQ=y CONFIG_OF_RESERVED_MEM=y # CONFIG_OF_OVERLAY is not set # CONFIG_PARPORT is not set CONFIG_BLK_DEV=y # CONFIG_BLK_DEV_NULL_BLK is not set # CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set # CONFIG_BLK_DEV_DAC960 is not set # CONFIG_BLK_DEV_UMEM is not set # CONFIG_BLK_DEV_COW_COMMON is not set CONFIG_BLK_DEV_LOOP=y CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 # CONFIG_BLK_DEV_CRYPTOLOOP is not set # CONFIG_BLK_DEV_DRBD is not set # CONFIG_BLK_DEV_NBD is not set # CONFIG_BLK_DEV_SKD is not set # CONFIG_BLK_DEV_SX8 is not set CONFIG_BLK_DEV_RAM=y CONFIG_BLK_DEV_RAM_COUNT=16 CONFIG_BLK_DEV_RAM_SIZE=16384 CONFIG_BLK_DEV_RAM_DAX=y # CONFIG_CDROM_PKTCDVD is not set # CONFIG_ATA_OVER_ETH is not set CONFIG_XEN_BLKDEV_FRONTEND=y CONFIG_VIRTIO_BLK=y # CONFIG_VIRTIO_BLK_SCSI is not set # CONFIG_BLK_DEV_RBD is not set # CONFIG_BLK_DEV_RSXX is not set # CONFIG_BLK_DEV_NVME is not set # CONFIG_NVME_FC is not set # # Misc devices # # CONFIG_SENSORS_LIS3LV02D is not set # CONFIG_DUMMY_IRQ is not set # CONFIG_PHANTOM is not set # CONFIG_SGI_IOC4 is not set # CONFIG_TIFM_CORE is not set # CONFIG_ENCLOSURE_SERVICES is not set # CONFIG_HP_ILO is not set # CONFIG_SRAM is not set # CONFIG_PCI_ENDPOINT_TEST is not set # CONFIG_C2PORT is not set # # EEPROM support # CONFIG_EEPROM_93CX6=y # CONFIG_CB710_CORE is not set # # Texas Instruments shared transport line discipline # # # Altera FPGA firmware download module # # # Intel MIC Bus Driver # # # SCIF Bus Driver # # # VOP Bus Driver # # # Intel MIC Host Driver # # # Intel MIC Card Driver # # # SCIF Driver # # # Intel MIC Coprocessor State Management (COSM) Drivers # # # VOP Driver # # CONFIG_GENWQE is not set # CONFIG_ECHO is not set # CONFIG_CXL_BASE is not set # CONFIG_CXL_AFU_DRIVER_OPS is not set # CONFIG_CXL_LIB is not set # # SCSI device support # CONFIG_SCSI_MOD=y # CONFIG_RAID_ATTRS is not set CONFIG_SCSI=y CONFIG_SCSI_DMA=y # CONFIG_SCSI_NETLINK is not set CONFIG_SCSI_MQ_DEFAULT=y CONFIG_SCSI_PROC_FS=y # # SCSI support type (disk, tape, CD-ROM) # CONFIG_BLK_DEV_SD=y # CONFIG_CHR_DEV_ST is not set # CONFIG_CHR_DEV_OSST is not set # CONFIG_BLK_DEV_SR is not set CONFIG_CHR_DEV_SG=y # CONFIG_CHR_DEV_SCH is not set # CONFIG_SCSI_CONSTANTS is not set # CONFIG_SCSI_LOGGING is not set # CONFIG_SCSI_SCAN_ASYNC is not set # # SCSI Transports # # CONFIG_SCSI_SPI_ATTRS is not set # CONFIG_SCSI_FC_ATTRS is not set # CONFIG_SCSI_ISCSI_ATTRS is not set # CONFIG_SCSI_SAS_ATTRS is not set # CONFIG_SCSI_SAS_LIBSAS is not set # CONFIG_SCSI_SRP_ATTRS is not set CONFIG_SCSI_LOWLEVEL=y # CONFIG_ISCSI_TCP is not set # CONFIG_ISCSI_BOOT_SYSFS is not set # CONFIG_SCSI_CXGB3_ISCSI is not set # CONFIG_SCSI_CXGB4_ISCSI is not set # CONFIG_SCSI_BNX2_ISCSI is not set # CONFIG_BE2ISCSI is not set # CONFIG_BLK_DEV_3W_XXXX_RAID is not set # CONFIG_SCSI_HPSA is not set # CONFIG_SCSI_3W_9XXX is not set # CONFIG_SCSI_3W_SAS is not set # CONFIG_SCSI_ACARD is not set # CONFIG_SCSI_AACRAID is not set # CONFIG_SCSI_AIC7XXX is not set # CONFIG_SCSI_AIC79XX is not set # CONFIG_SCSI_AIC94XX is not set # CONFIG_SCSI_MVSAS is not set # CONFIG_SCSI_MVUMI is not set # CONFIG_SCSI_ADVANSYS is not set # CONFIG_SCSI_ARCMSR is not set # CONFIG_SCSI_ESAS2R is not set # CONFIG_MEGARAID_NEWGEN is not set # CONFIG_MEGARAID_LEGACY is not set # CONFIG_MEGARAID_SAS is not set # CONFIG_SCSI_MPT3SAS is not set # CONFIG_SCSI_MPT2SAS is not set # CONFIG_SCSI_SMARTPQI is not set # CONFIG_SCSI_UFSHCD is not set # CONFIG_SCSI_HPTIOP is not set # CONFIG_XEN_SCSI_FRONTEND is not set # CONFIG_SCSI_SNIC is not set # CONFIG_SCSI_DMX3191D is not set # CONFIG_SCSI_FUTURE_DOMAIN is not set # CONFIG_SCSI_IPS is not set # CONFIG_SCSI_INITIO is not set # CONFIG_SCSI_INIA100 is not set # CONFIG_SCSI_STEX is not set # CONFIG_SCSI_SYM53C8XX_2 is not set # CONFIG_SCSI_QLOGIC_1280 is not set # CONFIG_SCSI_QLA_ISCSI is not set # CONFIG_SCSI_DC395x is not set # CONFIG_SCSI_AM53C974 is not set # CONFIG_SCSI_WD719X is not set # CONFIG_SCSI_DEBUG is not set # CONFIG_SCSI_PMCRAID is not set # CONFIG_SCSI_PM8001 is not set CONFIG_SCSI_VIRTIO=y # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set # CONFIG_SCSI_DH is not set # CONFIG_SCSI_OSD_INITIATOR is not set CONFIG_HAVE_PATA_PLATFORM=y # CONFIG_ATA is not set CONFIG_MD=y # CONFIG_BLK_DEV_MD is not set # CONFIG_BCACHE is not set CONFIG_BLK_DEV_DM_BUILTIN=y CONFIG_BLK_DEV_DM=y # CONFIG_DM_MQ_DEFAULT is not set # CONFIG_DM_DEBUG is not set CONFIG_DM_BUFIO=y # CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set CONFIG_DM_BIO_PRISON=y CONFIG_DM_PERSISTENT_DATA=y # CONFIG_DM_CRYPT is not set CONFIG_DM_SNAPSHOT=y CONFIG_DM_THIN_PROVISIONING=y # CONFIG_DM_CACHE is not set # CONFIG_DM_ERA is not set # CONFIG_DM_MIRROR is not set # CONFIG_DM_RAID is not set # CONFIG_DM_ZERO is not set # CONFIG_DM_MULTIPATH is not set # CONFIG_DM_DELAY is not set # CONFIG_DM_UEVENT is not set # CONFIG_DM_FLAKEY is not set # CONFIG_DM_VERITY is not set # CONFIG_DM_SWITCH is not set # CONFIG_DM_LOG_WRITES is not set # CONFIG_DM_INTEGRITY is not set # CONFIG_TARGET_CORE is not set # CONFIG_FUSION is not set # # IEEE 1394 (FireWire) support # # CONFIG_FIREWIRE is not set # CONFIG_FIREWIRE_NOSY is not set CONFIG_NETDEVICES=y CONFIG_NET_CORE=y # CONFIG_BONDING is not set # CONFIG_DUMMY is not set # CONFIG_EQUALIZER is not set # CONFIG_NET_FC is not set # CONFIG_NET_TEAM is not set # CONFIG_MACVLAN is not set # CONFIG_VXLAN is not set # CONFIG_MACSEC is not set # CONFIG_NETCONSOLE is not set # CONFIG_NETPOLL is not set # CONFIG_NET_POLL_CONTROLLER is not set CONFIG_TUN=y # CONFIG_TUN_VNET_CROSS_LE is not set CONFIG_VETH=y CONFIG_VIRTIO_NET=y # CONFIG_NLMON is not set # CONFIG_ARCNET is not set # # CAIF transport drivers # # # Distributed Switch Architecture drivers # # CONFIG_ETHERNET is not set # CONFIG_FDDI is not set # CONFIG_HIPPI is not set # CONFIG_MDIO_DEVICE is not set # CONFIG_MDIO_BUS is not set # CONFIG_PHYLIB is not set # CONFIG_PPP is not set # CONFIG_SLIP is not set # # Host-side USB support is needed for USB Network Adapter support # # CONFIG_WLAN is not set # # Enable WiMAX (Networking options) to see the WiMAX drivers # # CONFIG_WAN is not set CONFIG_XEN_NETDEV_FRONTEND=y # CONFIG_VMXNET3 is not set # CONFIG_ISDN is not set # CONFIG_NVM is not set # # Input device support # CONFIG_INPUT=y # CONFIG_INPUT_FF_MEMLESS is not set # CONFIG_INPUT_POLLDEV is not set # CONFIG_INPUT_SPARSEKMAP is not set # CONFIG_INPUT_MATRIXKMAP is not set # # Userland interfaces # # CONFIG_INPUT_MOUSEDEV is not set # CONFIG_INPUT_JOYDEV is not set # CONFIG_INPUT_EVDEV is not set # CONFIG_INPUT_EVBUG is not set # # Input Device Drivers # # CONFIG_INPUT_KEYBOARD is not set # CONFIG_INPUT_MOUSE is not set # CONFIG_INPUT_JOYSTICK is not set # CONFIG_INPUT_TABLET is not set # CONFIG_INPUT_TOUCHSCREEN is not set # CONFIG_INPUT_MISC is not set # CONFIG_RMI4_CORE is not set # # Hardware I/O ports # # CONFIG_SERIO is not set # CONFIG_GAMEPORT is not set # # Character devices # CONFIG_TTY=y CONFIG_VT=y CONFIG_CONSOLE_TRANSLATIONS=y CONFIG_VT_CONSOLE=y CONFIG_HW_CONSOLE=y CONFIG_VT_HW_CONSOLE_BINDING=y CONFIG_UNIX98_PTYS=y # CONFIG_LEGACY_PTYS is not set # CONFIG_SERIAL_NONSTANDARD is not set # CONFIG_NOZOMI is not set # CONFIG_N_GSM is not set # CONFIG_TRACE_SINK is not set CONFIG_DEVMEM=y # # Serial drivers # CONFIG_SERIAL_EARLYCON=y # CONFIG_SERIAL_8250 is not set # # Non-8250 serial port support # # CONFIG_SERIAL_AMBA_PL010 is not set CONFIG_SERIAL_AMBA_PL011=y CONFIG_SERIAL_AMBA_PL011_CONSOLE=y # CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set # CONFIG_SERIAL_UARTLITE is not set CONFIG_SERIAL_CORE=y CONFIG_SERIAL_CORE_CONSOLE=y # CONFIG_SERIAL_JSM is not set # CONFIG_SERIAL_SCCNXP is not set # CONFIG_SERIAL_ALTERA_JTAGUART is not set # CONFIG_SERIAL_ALTERA_UART is not set # CONFIG_SERIAL_XILINX_PS_UART is not set # CONFIG_SERIAL_ARC is not set # CONFIG_SERIAL_RP2 is not set # CONFIG_SERIAL_FSL_LPUART is not set # CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set # CONFIG_SERIAL_DEV_BUS is not set CONFIG_HVC_DRIVER=y CONFIG_HVC_IRQ=y CONFIG_HVC_XEN=y CONFIG_HVC_XEN_FRONTEND=y # CONFIG_HVC_DCC is not set CONFIG_VIRTIO_CONSOLE=y # CONFIG_IPMI_HANDLER is not set CONFIG_HW_RANDOM=y # CONFIG_HW_RANDOM_TIMERIOMEM is not set CONFIG_HW_RANDOM_VIRTIO=y # CONFIG_HW_RANDOM_CAVIUM is not set # CONFIG_R3964 is not set # CONFIG_APPLICOM is not set # # PCMCIA character devices # # CONFIG_RAW_DRIVER is not set # CONFIG_TCG_TPM is not set # CONFIG_DEVPORT is not set # CONFIG_XILLYBUS is not set # # I2C support # # CONFIG_I2C is not set # CONFIG_SPI is not set # CONFIG_SPMI is not set # CONFIG_HSI is not set # CONFIG_PPS is not set # # PTP clock support # # CONFIG_PTP_1588_CLOCK is not set # # Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. # # CONFIG_GPIOLIB is not set # CONFIG_W1 is not set # CONFIG_POWER_AVS is not set CONFIG_POWER_RESET=y # CONFIG_POWER_RESET_RESTART is not set # CONFIG_POWER_RESET_XGENE is not set # CONFIG_POWER_RESET_SYSCON is not set # CONFIG_POWER_RESET_SYSCON_POWEROFF is not set CONFIG_POWER_SUPPLY=y # CONFIG_POWER_SUPPLY_DEBUG is not set # CONFIG_PDA_POWER is not set # CONFIG_TEST_POWER is not set # CONFIG_BATTERY_DS2780 is not set # CONFIG_BATTERY_DS2781 is not set # CONFIG_BATTERY_BQ27XXX is not set # CONFIG_CHARGER_MAX8903 is not set # CONFIG_HWMON is not set # CONFIG_THERMAL is not set # CONFIG_WATCHDOG is not set CONFIG_SSB_POSSIBLE=y # # Sonics Silicon Backplane # # CONFIG_SSB is not set CONFIG_BCMA_POSSIBLE=y # CONFIG_BCMA is not set # # Multifunction device drivers # # CONFIG_MFD_CORE is not set # CONFIG_MFD_ATMEL_FLEXCOM is not set # CONFIG_MFD_ATMEL_HLCDC is not set # CONFIG_MFD_CROS_EC is not set # CONFIG_MFD_HI6421_PMIC is not set # CONFIG_HTC_PASIC3 is not set # CONFIG_LPC_ICH is not set # CONFIG_LPC_SCH is not set # CONFIG_MFD_JANZ_CMODIO is not set # CONFIG_MFD_KEMPLD is not set # CONFIG_MFD_MT6397 is not set # CONFIG_MFD_RDC321X is not set # CONFIG_MFD_RTSX_PCI is not set # CONFIG_MFD_SM501 is not set # CONFIG_ABX500_CORE is not set # CONFIG_MFD_SYSCON is not set # CONFIG_MFD_TI_AM335X_TSCADC is not set # CONFIG_MFD_TMIO is not set # CONFIG_MFD_VX855 is not set # CONFIG_REGULATOR is not set # CONFIG_RC_CORE is not set # CONFIG_MEDIA_SUPPORT is not set # # Graphics support # CONFIG_VGA_ARB=y CONFIG_VGA_ARB_MAX_GPUS=16 # CONFIG_DRM is not set # # ACP (Audio CoProcessor) Configuration # # CONFIG_DRM_LIB_RANDOM is not set # # Frame buffer Devices # # CONFIG_FB is not set # CONFIG_BACKLIGHT_LCD_SUPPORT is not set # CONFIG_VGASTATE is not set # # Console display driver support # CONFIG_DUMMY_CONSOLE=y CONFIG_DUMMY_CONSOLE_COLUMNS=80 CONFIG_DUMMY_CONSOLE_ROWS=25 # CONFIG_SOUND is not set # # HID support # # CONFIG_HID is not set CONFIG_USB_OHCI_LITTLE_ENDIAN=y # CONFIG_USB_SUPPORT is not set # CONFIG_UWB is not set # CONFIG_MMC is not set # CONFIG_MEMSTICK is not set # CONFIG_NEW_LEDS is not set # CONFIG_ACCESSIBILITY is not set # CONFIG_INFINIBAND is not set CONFIG_EDAC_SUPPORT=y CONFIG_RTC_LIB=y CONFIG_RTC_CLASS=y CONFIG_RTC_HCTOSYS=y CONFIG_RTC_HCTOSYS_DEVICE="rtc0" CONFIG_RTC_SYSTOHC=y CONFIG_RTC_SYSTOHC_DEVICE="rtc0" # CONFIG_RTC_DEBUG is not set CONFIG_RTC_NVMEM=y # # RTC interfaces # CONFIG_RTC_INTF_SYSFS=y CONFIG_RTC_INTF_PROC=y CONFIG_RTC_INTF_DEV=y # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set # CONFIG_RTC_DRV_TEST is not set # # I2C RTC drivers # # # SPI RTC drivers # # # SPI and I2C RTC drivers # # # Platform RTC drivers # # CONFIG_RTC_DRV_DS1286 is not set # CONFIG_RTC_DRV_DS1511 is not set # CONFIG_RTC_DRV_DS1553 is not set # CONFIG_RTC_DRV_DS1685_FAMILY is not set # CONFIG_RTC_DRV_DS1742 is not set # CONFIG_RTC_DRV_DS2404 is not set # CONFIG_RTC_DRV_EFI is not set # CONFIG_RTC_DRV_STK17TA8 is not set # CONFIG_RTC_DRV_M48T86 is not set # CONFIG_RTC_DRV_M48T35 is not set # CONFIG_RTC_DRV_M48T59 is not set # CONFIG_RTC_DRV_MSM6242 is not set # CONFIG_RTC_DRV_BQ4802 is not set # CONFIG_RTC_DRV_RP5C01 is not set # CONFIG_RTC_DRV_V3020 is not set # CONFIG_RTC_DRV_ZYNQMP is not set # # on-CPU RTC drivers # CONFIG_RTC_DRV_PL030=y CONFIG_RTC_DRV_PL031=y # CONFIG_RTC_DRV_FTRTC010 is not set # CONFIG_RTC_DRV_SNVS is not set # CONFIG_RTC_DRV_R7301 is not set # # HID Sensor RTC drivers # # CONFIG_DMADEVICES is not set # # DMABUF options # # CONFIG_SYNC_FILE is not set # CONFIG_AUXDISPLAY is not set # CONFIG_UIO is not set CONFIG_VIRT_DRIVERS=y CONFIG_VIRTIO=y # # Virtio drivers # CONFIG_VIRTIO_PCI=y CONFIG_VIRTIO_PCI_LEGACY=y CONFIG_VIRTIO_BALLOON=y # CONFIG_VIRTIO_INPUT is not set CONFIG_VIRTIO_MMIO=y CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=y # # Microsoft Hyper-V guest support # # CONFIG_HYPERV_TSCPAGE is not set # # Xen driver support # # CONFIG_XEN_BALLOON is not set # CONFIG_XEN_DEV_EVTCHN is not set # CONFIG_XEN_BACKEND is not set # CONFIG_XENFS is not set # CONFIG_XEN_SYS_HYPERVISOR is not set CONFIG_XEN_XENBUS_FRONTEND=y # CONFIG_XEN_GNTDEV is not set # CONFIG_XEN_GRANT_DEV_ALLOC is not set CONFIG_SWIOTLB_XEN=y CONFIG_XEN_PRIVCMD=m CONFIG_XEN_EFI=y CONFIG_XEN_AUTO_XLATE=y # CONFIG_STAGING is not set # CONFIG_GOLDFISH is not set # CONFIG_CHROME_PLATFORMS is not set CONFIG_CLKDEV_LOOKUP=y CONFIG_HAVE_CLK_PREPARE=y CONFIG_COMMON_CLK=y # # Common Clock Framework # # CONFIG_COMMON_CLK_VERSATILE is not set # CONFIG_CLK_HSDK is not set # CONFIG_CLK_QORIQ is not set # CONFIG_COMMON_CLK_XGENE is not set # CONFIG_COMMON_CLK_NXP is not set # CONFIG_COMMON_CLK_PXA is not set # CONFIG_COMMON_CLK_PIC32 is not set # CONFIG_HWSPINLOCK is not set # # Clock Source drivers # CONFIG_TIMER_OF=y CONFIG_TIMER_PROBE=y CONFIG_ARM_ARCH_TIMER=y # CONFIG_ARM_ARCH_TIMER_EVTSTREAM is not set # CONFIG_FSL_ERRATUM_A008585 is not set # CONFIG_HISILICON_ERRATUM_161010101 is not set # CONFIG_ARM64_ERRATUM_858921 is not set # CONFIG_ARM_TIMER_SP804 is not set # CONFIG_ATMEL_PIT is not set # CONFIG_SH_TIMER_CMT is not set # CONFIG_SH_TIMER_MTU2 is not set # CONFIG_SH_TIMER_TMU is not set # CONFIG_EM_TIMER_STI is not set # CONFIG_MAILBOX is not set # CONFIG_IOMMU_SUPPORT is not set # # Remoteproc drivers # # CONFIG_REMOTEPROC is not set # # Rpmsg drivers # # # SOC (System On Chip) specific Drivers # # # Amlogic SoC drivers # # # Broadcom SoC drivers # # CONFIG_SOC_BRCMSTB is not set # # i.MX SoC drivers # # # Qualcomm SoC drivers # # CONFIG_SUNXI_SRAM is not set # CONFIG_SOC_TI is not set # CONFIG_PM_DEVFREQ is not set # CONFIG_EXTCON is not set # CONFIG_MEMORY is not set # CONFIG_IIO is not set # CONFIG_NTB is not set # CONFIG_VME_BUS is not set # CONFIG_PWM is not set CONFIG_IRQCHIP=y CONFIG_ARM_GIC=y CONFIG_ARM_GIC_MAX_NR=1 CONFIG_ARM_GIC_V2M=y CONFIG_ARM_GIC_V3=y CONFIG_ARM_GIC_V3_ITS=y CONFIG_PARTITION_PERCPU=y # CONFIG_IPACK_BUS is not set # CONFIG_RESET_CONTROLLER is not set # CONFIG_FMC is not set # # PHY Subsystem # # CONFIG_GENERIC_PHY is not set # CONFIG_PHY_XGENE is not set # CONFIG_BCM_KONA_USB2_PHY is not set # CONFIG_PHY_PXA_28NM_HSIC is not set # CONFIG_PHY_PXA_28NM_USB2 is not set # CONFIG_POWERCAP is not set # CONFIG_MCB is not set # # Performance monitor support # CONFIG_ARM_PMU=y # CONFIG_RAS is not set # # Android # # CONFIG_ANDROID is not set # CONFIG_LIBNVDIMM is not set CONFIG_DAX=y CONFIG_NVMEM=y # CONFIG_STM is not set # CONFIG_INTEL_TH is not set # CONFIG_FPGA is not set # # FSI support # # CONFIG_FSI is not set # CONFIG_TEE is not set # # Firmware Drivers # CONFIG_ARM_PSCI_FW=y # CONFIG_ARM_PSCI_CHECKER is not set # CONFIG_FIRMWARE_MEMMAP is not set # CONFIG_FW_CFG_SYSFS is not set CONFIG_HAVE_ARM_SMCCC=y # CONFIG_GOOGLE_FIRMWARE is not set # # EFI (Extensible Firmware Interface) Support # # CONFIG_EFI_VARS is not set CONFIG_EFI_ESRT=y CONFIG_EFI_PARAMS_FROM_FDT=y CONFIG_EFI_RUNTIME_WRAPPERS=y CONFIG_EFI_ARMSTUB=y # CONFIG_EFI_CAPSULE_LOADER is not set # CONFIG_EFI_TEST is not set # CONFIG_RESET_ATTACK_MITIGATION is not set # CONFIG_MESON_SM is not set # # Tegra firmware driver # # CONFIG_ACPI is not set # # File systems # CONFIG_DCACHE_WORD_ACCESS=y CONFIG_FS_IOMAP=y # CONFIG_EXT2_FS is not set # CONFIG_EXT3_FS is not set CONFIG_EXT4_FS=y CONFIG_EXT4_USE_FOR_EXT2=y CONFIG_EXT4_FS_POSIX_ACL=y CONFIG_EXT4_FS_SECURITY=y # CONFIG_EXT4_ENCRYPTION is not set # CONFIG_EXT4_DEBUG is not set CONFIG_JBD2=y # CONFIG_JBD2_DEBUG is not set CONFIG_FS_MBCACHE=y # CONFIG_REISERFS_FS is not set # CONFIG_JFS_FS is not set CONFIG_XFS_FS=y # CONFIG_XFS_QUOTA is not set # CONFIG_XFS_POSIX_ACL is not set # CONFIG_XFS_RT is not set # CONFIG_XFS_WARN is not set # CONFIG_XFS_DEBUG is not set # CONFIG_GFS2_FS is not set # CONFIG_BTRFS_FS is not set # CONFIG_NILFS2_FS is not set # CONFIG_F2FS_FS is not set CONFIG_FS_DAX=y CONFIG_FS_POSIX_ACL=y CONFIG_EXPORTFS=y CONFIG_EXPORTFS_BLOCK_OPS=y CONFIG_FILE_LOCKING=y CONFIG_MANDATORY_FILE_LOCKING=y # CONFIG_FS_ENCRYPTION is not set CONFIG_FSNOTIFY=y CONFIG_DNOTIFY=y CONFIG_INOTIFY_USER=y CONFIG_FANOTIFY=y # CONFIG_QUOTA is not set # CONFIG_QUOTACTL is not set CONFIG_AUTOFS4_FS=y # CONFIG_FUSE_FS is not set # CONFIG_OVERLAY_FS is not set # # Caches # # CONFIG_FSCACHE is not set # # CD-ROM/DVD Filesystems # # CONFIG_ISO9660_FS is not set # CONFIG_UDF_FS is not set # # DOS/FAT/NT Filesystems # # CONFIG_MSDOS_FS is not set # CONFIG_VFAT_FS is not set # CONFIG_NTFS_FS is not set # # Pseudo filesystems # CONFIG_PROC_FS=y # CONFIG_PROC_KCORE is not set CONFIG_PROC_SYSCTL=y CONFIG_PROC_PAGE_MONITOR=y CONFIG_PROC_CHILDREN=y CONFIG_KERNFS=y CONFIG_SYSFS=y CONFIG_TMPFS=y CONFIG_TMPFS_POSIX_ACL=y CONFIG_TMPFS_XATTR=y CONFIG_HUGETLBFS=y CONFIG_HUGETLB_PAGE=y # CONFIG_CONFIGFS_FS is not set # CONFIG_EFIVAR_FS is not set # CONFIG_MISC_FILESYSTEMS is not set CONFIG_NETWORK_FILESYSTEMS=y CONFIG_NFS_FS=m CONFIG_NFS_V2=m CONFIG_NFS_V3=m # CONFIG_NFS_V3_ACL is not set CONFIG_NFS_V4=m # CONFIG_NFS_SWAP is not set # CONFIG_NFS_V4_1 is not set # CONFIG_NFS_USE_LEGACY_DNS is not set CONFIG_NFS_USE_KERNEL_DNS=y # CONFIG_NFSD is not set CONFIG_GRACE_PERIOD=m CONFIG_LOCKD=m CONFIG_LOCKD_V4=y CONFIG_NFS_COMMON=y CONFIG_SUNRPC=m CONFIG_SUNRPC_GSS=m # CONFIG_SUNRPC_DEBUG is not set # CONFIG_CEPH_FS is not set # CONFIG_CIFS is not set # CONFIG_NCP_FS is not set # CONFIG_CODA_FS is not set # CONFIG_AFS_FS is not set CONFIG_9P_FS=y CONFIG_9P_FS_POSIX_ACL=y CONFIG_9P_FS_SECURITY=y CONFIG_NLS=y CONFIG_NLS_DEFAULT="utf8" CONFIG_NLS_CODEPAGE_437=y # CONFIG_NLS_CODEPAGE_737 is not set # CONFIG_NLS_CODEPAGE_775 is not set # CONFIG_NLS_CODEPAGE_850 is not set # CONFIG_NLS_CODEPAGE_852 is not set # CONFIG_NLS_CODEPAGE_855 is not set # CONFIG_NLS_CODEPAGE_857 is not set # CONFIG_NLS_CODEPAGE_860 is not set # CONFIG_NLS_CODEPAGE_861 is not set # CONFIG_NLS_CODEPAGE_862 is not set # CONFIG_NLS_CODEPAGE_863 is not set # CONFIG_NLS_CODEPAGE_864 is not set # CONFIG_NLS_CODEPAGE_865 is not set # CONFIG_NLS_CODEPAGE_866 is not set # CONFIG_NLS_CODEPAGE_869 is not set CONFIG_NLS_CODEPAGE_936=y CONFIG_NLS_CODEPAGE_950=y # CONFIG_NLS_CODEPAGE_932 is not set # CONFIG_NLS_CODEPAGE_949 is not set # CONFIG_NLS_CODEPAGE_874 is not set # CONFIG_NLS_ISO8859_8 is not set # CONFIG_NLS_CODEPAGE_1250 is not set # CONFIG_NLS_CODEPAGE_1251 is not set CONFIG_NLS_ASCII=y # CONFIG_NLS_ISO8859_1 is not set # CONFIG_NLS_ISO8859_2 is not set # CONFIG_NLS_ISO8859_3 is not set # CONFIG_NLS_ISO8859_4 is not set # CONFIG_NLS_ISO8859_5 is not set # CONFIG_NLS_ISO8859_6 is not set # CONFIG_NLS_ISO8859_7 is not set # CONFIG_NLS_ISO8859_9 is not set # CONFIG_NLS_ISO8859_13 is not set # CONFIG_NLS_ISO8859_14 is not set # CONFIG_NLS_ISO8859_15 is not set # CONFIG_NLS_KOI8_R is not set # CONFIG_NLS_KOI8_U is not set # CONFIG_NLS_MAC_ROMAN is not set # CONFIG_NLS_MAC_CELTIC is not set # CONFIG_NLS_MAC_CENTEURO is not set # CONFIG_NLS_MAC_CROATIAN is not set # CONFIG_NLS_MAC_CYRILLIC is not set # CONFIG_NLS_MAC_GAELIC is not set # CONFIG_NLS_MAC_GREEK is not set # CONFIG_NLS_MAC_ICELAND is not set # CONFIG_NLS_MAC_INUIT is not set # CONFIG_NLS_MAC_ROMANIAN is not set # CONFIG_NLS_MAC_TURKISH is not set # CONFIG_NLS_UTF8 is not set CONFIG_VIRTUALIZATION=y # CONFIG_KVM is not set # CONFIG_VHOST_NET is not set # CONFIG_VHOST_VSOCK is not set # CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set # # Kernel hacking # # # printk and dmesg options # # CONFIG_PRINTK_TIME is not set CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 # # Compile-time checks and compiler options # # CONFIG_ENABLE_WARN_DEPRECATED is not set # CONFIG_ENABLE_MUST_CHECK is not set CONFIG_FRAME_WARN=2048 # CONFIG_STRIP_ASM_SYMS is not set # CONFIG_UNUSED_SYMBOLS is not set # CONFIG_DEBUG_FS is not set # CONFIG_HEADERS_CHECK is not set # CONFIG_DEBUG_SECTION_MISMATCH is not set CONFIG_SECTION_MISMATCH_WARN_ONLY=y CONFIG_ARCH_WANT_FRAME_POINTERS=y CONFIG_FRAME_POINTER=y # CONFIG_MAGIC_SYSRQ is not set # CONFIG_DEBUG_KERNEL is not set # # Memory Debugging # # CONFIG_PAGE_EXTENSION is not set # CONFIG_PAGE_POISONING is not set # CONFIG_DEBUG_RODATA_TEST is not set CONFIG_HAVE_DEBUG_KMEMLEAK=y CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y CONFIG_DEBUG_MEMORY_INIT=y CONFIG_ARCH_HAS_KCOV=y # CONFIG_KCOV is not set # # Debug Lockups and Hangs # # CONFIG_PANIC_ON_OOPS is not set CONFIG_PANIC_ON_OOPS_VALUE=0 CONFIG_PANIC_TIMEOUT=0 CONFIG_SCHED_INFO=y # CONFIG_DEBUG_TIMEKEEPING is not set # # Lock Debugging (spinlocks, mutexes, etc...) # # CONFIG_WW_MUTEX_SELFTEST is not set # CONFIG_STACKTRACE is not set # CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set CONFIG_HAVE_DEBUG_BUGVERBOSE=y CONFIG_DEBUG_BUGVERBOSE=y # # RCU Debugging # # CONFIG_PROVE_RCU is not set # CONFIG_TORTURE_TEST is not set CONFIG_RCU_CPU_STALL_TIMEOUT=60 CONFIG_HAVE_FUNCTION_TRACER=y CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y CONFIG_HAVE_DYNAMIC_FTRACE=y CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y CONFIG_HAVE_SYSCALL_TRACEPOINTS=y CONFIG_HAVE_C_RECORDMCOUNT=y CONFIG_TRACING_SUPPORT=y # CONFIG_FTRACE is not set # CONFIG_DMA_API_DEBUG is not set # # Runtime Testing # # CONFIG_TEST_LIST_SORT is not set # CONFIG_TEST_SORT is not set # CONFIG_ATOMIC64_SELFTEST is not set # CONFIG_TEST_HEXDUMP is not set # CONFIG_TEST_STRING_HELPERS is not set # CONFIG_TEST_KSTRTOX is not set # CONFIG_TEST_PRINTF is not set # CONFIG_TEST_BITMAP is not set # CONFIG_TEST_UUID is not set # CONFIG_TEST_RHASHTABLE is not set # CONFIG_TEST_HASH is not set # CONFIG_TEST_LKM is not set # CONFIG_TEST_USER_COPY is not set # CONFIG_TEST_BPF is not set # CONFIG_TEST_FIRMWARE is not set # CONFIG_TEST_SYSCTL is not set # CONFIG_TEST_UDELAY is not set # CONFIG_TEST_STATIC_KEYS is not set # CONFIG_TEST_KMOD is not set # CONFIG_MEMTEST is not set # CONFIG_BUG_ON_DATA_CORRUPTION is not set # CONFIG_SAMPLES is not set CONFIG_HAVE_ARCH_KGDB=y CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y # CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set # CONFIG_UBSAN is not set CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y # CONFIG_STRICT_DEVMEM is not set # CONFIG_ARM64_PTDUMP_CORE is not set # CONFIG_PID_IN_CONTEXTIDR is not set # CONFIG_ARM64_RANDOMIZE_TEXT_OFFSET is not set # CONFIG_DEBUG_WX is not set # CONFIG_DEBUG_ALIGN_RODATA is not set # CONFIG_ARM64_RELOC_TEST is not set # CONFIG_CORESIGHT is not set # # Security options # CONFIG_KEYS=y # CONFIG_PERSISTENT_KEYRINGS is not set # CONFIG_BIG_KEYS is not set # CONFIG_ENCRYPTED_KEYS is not set # CONFIG_KEY_DH_OPERATIONS is not set # CONFIG_SECURITY_DMESG_RESTRICT is not set # CONFIG_SECURITY is not set # CONFIG_SECURITYFS is not set CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y # CONFIG_HARDENED_USERCOPY is not set # CONFIG_FORTIFY_SOURCE is not set # CONFIG_STATIC_USERMODEHELPER is not set CONFIG_DEFAULT_SECURITY_DAC=y CONFIG_DEFAULT_SECURITY="" CONFIG_CRYPTO=y # # Crypto core or helper # CONFIG_CRYPTO_ALGAPI=y CONFIG_CRYPTO_ALGAPI2=y CONFIG_CRYPTO_HASH=y CONFIG_CRYPTO_HASH2=y # CONFIG_CRYPTO_RSA is not set # CONFIG_CRYPTO_DH is not set # CONFIG_CRYPTO_ECDH is not set # CONFIG_CRYPTO_MANAGER is not set # CONFIG_CRYPTO_MANAGER2 is not set # CONFIG_CRYPTO_USER is not set # CONFIG_CRYPTO_GF128MUL is not set # CONFIG_CRYPTO_NULL is not set # CONFIG_CRYPTO_PCRYPT is not set # CONFIG_CRYPTO_CRYPTD is not set # CONFIG_CRYPTO_MCRYPTD is not set # CONFIG_CRYPTO_AUTHENC is not set # CONFIG_CRYPTO_TEST is not set # # Authenticated Encryption with Associated Data # # CONFIG_CRYPTO_CCM is not set # CONFIG_CRYPTO_GCM is not set # CONFIG_CRYPTO_CHACHA20POLY1305 is not set # CONFIG_CRYPTO_SEQIV is not set # CONFIG_CRYPTO_ECHAINIV is not set # # Block modes # # CONFIG_CRYPTO_CBC is not set # CONFIG_CRYPTO_CTR is not set # CONFIG_CRYPTO_CTS is not set # CONFIG_CRYPTO_ECB is not set # CONFIG_CRYPTO_LRW is not set # CONFIG_CRYPTO_PCBC is not set # CONFIG_CRYPTO_XTS is not set # CONFIG_CRYPTO_KEYWRAP is not set # # Hash modes # # CONFIG_CRYPTO_CMAC is not set # CONFIG_CRYPTO_HMAC is not set # CONFIG_CRYPTO_XCBC is not set # CONFIG_CRYPTO_VMAC is not set # # Digest # CONFIG_CRYPTO_CRC32C=y # CONFIG_CRYPTO_CRC32 is not set CONFIG_CRYPTO_CRCT10DIF=y # CONFIG_CRYPTO_GHASH is not set # CONFIG_CRYPTO_POLY1305 is not set # CONFIG_CRYPTO_MD4 is not set CONFIG_CRYPTO_MD5=y # CONFIG_CRYPTO_MICHAEL_MIC is not set # CONFIG_CRYPTO_RMD128 is not set # CONFIG_CRYPTO_RMD160 is not set # CONFIG_CRYPTO_RMD256 is not set # CONFIG_CRYPTO_RMD320 is not set # CONFIG_CRYPTO_SHA1 is not set # CONFIG_CRYPTO_SHA256 is not set # CONFIG_CRYPTO_SHA512 is not set # CONFIG_CRYPTO_SHA3 is not set # CONFIG_CRYPTO_TGR192 is not set # CONFIG_CRYPTO_WP512 is not set # # Ciphers # CONFIG_CRYPTO_AES=y # CONFIG_CRYPTO_AES_TI is not set # CONFIG_CRYPTO_ANUBIS is not set # CONFIG_CRYPTO_ARC4 is not set # CONFIG_CRYPTO_BLOWFISH is not set # CONFIG_CRYPTO_CAMELLIA is not set # CONFIG_CRYPTO_CAST5 is not set # CONFIG_CRYPTO_CAST6 is not set # CONFIG_CRYPTO_DES is not set # CONFIG_CRYPTO_FCRYPT is not set # CONFIG_CRYPTO_KHAZAD is not set # CONFIG_CRYPTO_SALSA20 is not set # CONFIG_CRYPTO_CHACHA20 is not set # CONFIG_CRYPTO_SEED is not set # CONFIG_CRYPTO_SERPENT is not set # CONFIG_CRYPTO_TEA is not set # CONFIG_CRYPTO_TWOFISH is not set # # Compression # # CONFIG_CRYPTO_DEFLATE is not set # CONFIG_CRYPTO_LZO is not set # CONFIG_CRYPTO_842 is not set # CONFIG_CRYPTO_LZ4 is not set # CONFIG_CRYPTO_LZ4HC is not set # # Random Number Generation # # CONFIG_CRYPTO_ANSI_CPRNG is not set # CONFIG_CRYPTO_DRBG_MENU is not set # CONFIG_CRYPTO_JITTERENTROPY is not set # CONFIG_CRYPTO_USER_API_HASH is not set # CONFIG_CRYPTO_USER_API_SKCIPHER is not set # CONFIG_CRYPTO_USER_API_RNG is not set # CONFIG_CRYPTO_USER_API_AEAD is not set # CONFIG_CRYPTO_HW is not set # CONFIG_ASYMMETRIC_KEY_TYPE is not set # # Certificates for signature checking # # CONFIG_SYSTEM_BLACKLIST_KEYRING is not set CONFIG_ARM64_CRYPTO=y # CONFIG_CRYPTO_SHA256_ARM64 is not set # CONFIG_CRYPTO_SHA512_ARM64 is not set # CONFIG_CRYPTO_SHA1_ARM64_CE is not set # CONFIG_CRYPTO_SHA2_ARM64_CE is not set # CONFIG_CRYPTO_GHASH_ARM64_CE is not set CONFIG_CRYPTO_CRCT10DIF_ARM64_CE=y CONFIG_CRYPTO_CRC32_ARM64_CE=y CONFIG_CRYPTO_AES_ARM64=y CONFIG_CRYPTO_AES_ARM64_CE=y # CONFIG_CRYPTO_AES_ARM64_CE_CCM is not set # CONFIG_CRYPTO_AES_ARM64_CE_BLK is not set # CONFIG_CRYPTO_AES_ARM64_NEON_BLK is not set # CONFIG_CRYPTO_CHACHA20_NEON is not set # CONFIG_CRYPTO_AES_ARM64_BS is not set # CONFIG_BINARY_PRINTF is not set # # Library routines # CONFIG_BITREVERSE=y CONFIG_HAVE_ARCH_BITREVERSE=y CONFIG_RATIONAL=y CONFIG_GENERIC_STRNCPY_FROM_USER=y CONFIG_GENERIC_STRNLEN_USER=y CONFIG_GENERIC_NET_UTILS=y CONFIG_GENERIC_PCI_IOMAP=y CONFIG_GENERIC_IO=y CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y # CONFIG_CRC_CCITT is not set CONFIG_CRC16=y CONFIG_CRC_T10DIF=y # CONFIG_CRC_ITU_T is not set CONFIG_CRC32=y # CONFIG_CRC32_SELFTEST is not set CONFIG_CRC32_SLICEBY8=y # CONFIG_CRC32_SLICEBY4 is not set # CONFIG_CRC32_SARWATE is not set # CONFIG_CRC32_BIT is not set # CONFIG_CRC4 is not set # CONFIG_CRC7 is not set CONFIG_LIBCRC32C=y # CONFIG_CRC8 is not set CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y # CONFIG_RANDOM32_SELFTEST is not set CONFIG_ZLIB_INFLATE=y # CONFIG_XZ_DEC is not set # CONFIG_XZ_DEC_BCJ is not set CONFIG_DECOMPRESS_GZIP=y CONFIG_GENERIC_ALLOCATOR=y CONFIG_ASSOCIATIVE_ARRAY=y CONFIG_HAS_IOMEM=y CONFIG_HAS_IOPORT_MAP=y CONFIG_HAS_DMA=y # CONFIG_DMA_NOOP_OPS is not set # CONFIG_DMA_VIRT_OPS is not set CONFIG_CPU_RMAP=y CONFIG_DQL=y CONFIG_NLATTR=y # CONFIG_CORDIC is not set # CONFIG_DDR is not set # CONFIG_IRQ_POLL is not set CONFIG_LIBFDT=y CONFIG_OID_REGISTRY=m CONFIG_UCS2_STRING=y # CONFIG_SG_SPLIT is not set CONFIG_SG_POOL=y CONFIG_ARCH_HAS_SG_CHAIN=y CONFIG_SBITMAP=y # CONFIG_STRING_SELFTEST is not set
Logos
1
eadamsintel/kata-containers
tools/packaging/kernel/configs/arm64_kata_kvm_4.14.x
[ "Apache-2.0" ]
#! /bin/sh -e # DP: use gcc-4.3 instead of gcc as the command name. dir= if [ $# -eq 3 -a "$2" = '-d' ]; then pdir="-d $3" dir="$3/" elif [ $# -ne 1 ]; then echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" exit 1 fi case "$1" in -patch) patch $pdir -f --no-backup-if-mismatch -p0 < $0 ;; -unpatch) patch $pdir -f --no-backup-if-mismatch -R -p0 < $0 ;; *) echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" exit 1 esac exit 0 Index: gcc/ada/comperr.adb =================================================================== --- gcc/ada/comperr.adb.orig 2007-09-10 18:53:41.000000000 +0200 +++ gcc/ada/comperr.adb 2007-12-05 00:15:52.596687382 +0100 @@ -330,7 +330,7 @@ End_Line; Write_Str - ("| Include the exact gcc or gnatmake command " & + ("| Include the exact gcc-4.3 or gnatmake command " & "that you entered."); End_Line; Index: gcc/ada/gnatlink.adb =================================================================== --- gcc/ada/gnatlink.adb.orig 2007-10-19 15:14:33.000000000 +0200 +++ gcc/ada/gnatlink.adb 2007-12-05 00:15:52.596687382 +0100 @@ -137,7 +137,7 @@ -- This table collects the arguments to be passed to compile the binder -- generated file. - Gcc : String_Access := Program_Name ("gcc"); + Gcc : String_Access := Program_Name ("gcc-4.3"); Read_Mode : constant String := "r" & ASCII.Nul; @@ -1368,7 +1368,8 @@ end if; Write_Line (" --GCC=comp Use comp as the compiler"); - Write_Line (" --LINK=nam Use 'nam' for the linking rather than 'gcc'"); + Write_Line (" --LINK=nam Use 'nam' for the linking rather " & + "than 'gcc-4.3'"); Write_Eol; Write_Line (" [non-Ada-objects] list of non Ada object files"); Write_Line (" [linker-options] other options for the linker"); Index: gcc/ada/make.adb =================================================================== --- gcc/ada/make.adb.orig 2007-10-19 15:14:33.000000000 +0200 +++ gcc/ada/make.adb 2007-12-05 00:15:52.604687208 +0100 @@ -662,7 +662,7 @@ -- Compiler, Binder & Linker Data and Subprograms -- ---------------------------------------------------- - Gcc : String_Access := Program_Name ("gcc"); + Gcc : String_Access := Program_Name ("gcc-4.3"); Gnatbind : String_Access := Program_Name ("gnatbind"); Gnatlink : String_Access := Program_Name ("gnatlink"); -- Default compiler, binder, linker programs Index: gcc/ada/gnatchop.adb =================================================================== --- gcc/ada/gnatchop.adb.orig 2007-10-19 15:14:33.000000000 +0200 +++ gcc/ada/gnatchop.adb 2007-12-05 00:15:52.612687034 +0100 @@ -44,7 +44,7 @@ Config_File_Name : constant String_Access := new String'("gnat.adc"); -- The name of the file holding the GNAT configuration pragmas - Gcc : String_Access := new String'("gcc"); + Gcc : String_Access := new String'("gcc-4.3"); -- May be modified by switch --GCC= Gcc_Set : Boolean := False;
Darcs Patch
3
JrCs/opendreambox
recipes/gcc/gcc-4.3.4/debian/ada-gcc-name.dpatch
[ "MIT" ]
\* Copyright (c) 2010-2015, Mark Tarver All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of Mark Tarver may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY Mark Tarver ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Mark Tarver BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *\ (package shen [] (set *installing-kl* false) (set *history* []) (set *tc* false) (set *property-vector* (dict 20000)) (set *process-counter* 0) (set *varcounter* (vector 1000)) (set *prologvectors* (vector 1000)) (set *demodulation-function* (/. X X)) (set *macroreg* [timer-macro cases-macro abs-macro put/get-macro compile-macro datatype-macro let-macro assoc-macro make-string-macro output-macro input-macro error-macro prolog-macro synonyms-macro nl-macro @s-macro defprolog-macro function-macro]) (set *macros* [(/. X (timer-macro X)) (/. X (cases-macro X)) (/. X (abs-macro X)) (/. X (put/get-macro X)) (/. X (compile-macro X)) (/. X (datatype-macro X)) (/. X (let-macro X)) (/. X (assoc-macro X)) (/. X (make-string-macro X)) (/. X (output-macro X)) (/. X (input-macro X)) (/. X (error-macro X)) (/. X (prolog-macro X)) (/. X (synonyms-macro X)) (/. X (nl-macro X)) (/. X (@s-macro X)) (/. X (defprolog-macro X)) (/. X (function-macro X))]) (set *gensym* 0) (set *tracking* []) (set *alphabet* [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z]) (set *special* [@p @s @v cons lambda let where set open]) (set *extraspecial* [define process-datatype input+ defcc read+ defmacro]) (set *spy* false) (set *datatypes* []) (set *alldatatypes* []) (set *shen-type-theory-enabled?* true) (set *synonyms* []) (set *system* []) (set *signedfuncs* []) (set *maxcomplexity* 128) (set *occurs* true) (set *maxinferences* 1000000) (set *maximum-print-sequence-size* 20) (set *catch* 0) (set *call* 0) (set *infs* 0) (set *hush* false) (set *optimise* false) (set *version* "Shen 20.1") (if (not (bound? *home-directory*)) (set *home-directory* "") skip) (if (not (bound? *sterror*)) (set *sterror* (value *stoutput*)) skip) (if (not (bound? *argv*)) (set *argv* ["shen"]) skip) (define initialise_arity_table [] -> [] [F Arity | Table] -> (let DecArity (put F arity Arity) (initialise_arity_table Table))) (define arity F -> (get/or F arity (freeze -1))) (initialise_arity_table [abort 0 absvector? 1 absvector 1 adjoin 2 and 2 append 2 arity 1 assoc 2 boolean? 1 bound? 1 cd 1 close 1 compile 3 concat 2 cons 2 cons? 1 command-line 0 cn 2 declare 2 destroy 1 difference 2 do 2 element? 2 empty? 1 enable-type-theory 1 error-to-string 1 interror 2 eval 1 eval-kl 1 exit 1 explode 1 external 1 fail-if 2 fail 0 fix 2 fold-left 3 fold-right 3 filter 2 for-each 2 findall 5 freeze 1 fst 1 gensym 1 get 3 get/or 4 get-time 1 address-> 3 <-address 2 <-address/or 3 <-vector 2 <-vector/or 3 > 2 >= 2 = 2 hash 2 hd 1 hdv 1 hdstr 1 head 1 if 3 integer? 1 intern 1 identical 4 inferences 0 input 1 input+ 2 implementation 0 intersection 2 internal 1 it 0 kill 0 language 0 length 1 limit 1 lineread 1 load 1 < 2 <= 2 vector 1 macroexpand 1 map 2 mapcan 2 maxinferences 1 nl 1 not 1 nth 2 n->string 1 number? 1 occurs-check 1 occurrences 2 occurs-check 1 open 2 optimise 1 or 2 os 0 package 3 package? 1 port 0 porters 0 pos 2 print 1 profile 1 profile-results 1 pr 2 ps 1 preclude 1 preclude-all-but 1 protect 1 address-> 3 put 4 reassemble 2 read-file-as-string 1 read-file 1 read-file-as-charlist 1 read-file-as-bytelist 1 read 1 read-byte 1 read-from-string 1 read-char-code 1 receive 1 release 0 remove 2 require 3 reverse 1 set 2 simple-error 1 snd 1 specialise 1 spy 1 step 1 stinput 0 stoutput 0 sterror 0 string->n 1 string->symbol 1 string? 1 str 1 subst 3 sum 1 symbol? 1 systemf 1 tail 1 tl 1 tc 1 tc? 0 thaw 1 tlstr 1 track 1 trap-error 2 tuple? 1 type 2 return 3 undefmacro 1 unput 3 unprofile 1 unify 4 unify! 4 union 2 untrack 1 unspecialise 1 undefmacro 1 vector 1 vector? 1 vector-> 3 value 1 value/or 2 variable? 1 version 0 write-byte 2 write-to-file 2 y-or-n? 1 + 2 * 2 / 2 - 2 == 2 <e> 1 <!> 1 @p 2 @v 2 @s 2 preclude 1 include 1 preclude-all-but 1 include-all-but 1 dict 1 dict? 1 dict-count 1 dict-> 3 <-dict/or 3 <-dict 2 dict-rm 2 dict-fold 3 dict-keys 1 dict-values 1 ]) (define systemf F -> (let Shen (intern "shen") External (get Shen external-symbols) Place (put Shen external-symbols (adjoin F External)) F)) (define adjoin X Y -> (if (element? X Y) Y [X | Y])) (put (intern "shen") external-symbols [! } { --> <-- && : ; :- := _ *language* *implementation* *stinput* *stoutput* *sterror* *home-directory* *version* *argv* *maximum-print-sequence-size* *macros* *os* *release* *property-vector* *port* *porters* *hush* @v @p @s <- -> <e> <!> == = >= > /. =! $ - / * + <= < >> <> y-or-n? write-to-file write-byte where when warn version verified variable? value value/or vector-> <-vector <-vector/or vector vector? unspecialise untrack unit unix union unify unify! unput unprofile undefmacro return type tuple? true trap-error track time thaw tc? tc tl tlstr tlv tail systemf synonyms symbol symbol? string->symbol sum subst string? string->n stream string stinput sterror stoutput step spy specialise snd simple-error set save str run reverse remove release read receive read-file read-file-as-bytelist read-file-as-string read-byte read-file-as-charlist read-char-code read-from-string package? put preclude preclude-all-but ps prolog? protect profile-results profile print pr pos porters port package output out os or optimise open occurrences occurs-check n->string number? number null nth not nl mode macroexpand maxinferences mapcan map make-string load loaded list lineread limit length let lazy lambda language kill is intersection inferences intern integer? input input+ include include-all-but it in internal implementation if identical head hd hdv hdstr hash get get/or get-time gensym function fst freeze fix file fail fail-if fwhen findall for-each fold-right fold-left filter false enable-type-theory explode external exception eval-kl eval error-to-string error empty? exit element? do difference destroy defun define defmacro defcc defprolog declare datatype cut cn cons? cons cond concat compile cd cases call close bind bound? boolean? boolean bar! assoc arity abort append and adjoin <-address <-address/or address-> absvector? absvector dict dict? dict-count dict-> <-dict/or <-dict dict-rm dict-fold dict-keys dict-values command-line ]) (define lambda-form-entry \* package and receive are not real functions, but have arity *\ package -> [] receive -> [] F -> (let ArityF (arity F) (cases (= ArityF -1) [] (= ArityF 0) [] \\ change to [[F | F]] for CL if wanted true [[F | (eval-kl (lambda-form F ArityF))]]))) (define lambda-form F 0 -> F F N -> (let X (gensym (protect V)) [lambda X (lambda-form (add-end F X) (- N 1))])) (define add-end [F | Y] X -> (append [F | Y] [X]) F X -> [F X]) (define set-lambda-form-entry [F | LambdaForm] -> (put F lambda-form LambdaForm)) (for-each (/. Entry (set-lambda-form-entry Entry)) [[datatype-error | (/. X (datatype-error X))] [tuple | (/. X (tuple X))] [pvar | (/. X (pvar X))] [dictionary | (/. X (dictionary X))] | [[@v | (lambda V1 (lambda V2 (@v V1 V2)))] [@p | (lambda V3 (lambda V4 (@p V3 V4)))] [@s | (lambda V5 (lambda V6 (@s V5 V6)))] [<e> | (lambda V7 (<e> V7))] [<!> | (lambda V8 (<!> V8))] [== | (lambda V9 (lambda V10 (== V9 V10)))] [= | (lambda V11 (lambda V12 (= V11 V12)))] [>= | (lambda V13 (lambda V14 (>= V13 V14)))] [> | (lambda V15 (lambda V16 (> V15 V16)))] [- | (lambda V17 (lambda V18 (- V17 V18)))] [/ | (lambda V19 (lambda V20 (/ V19 V20)))] [* | (lambda V21 (lambda V22 (* V21 V22)))] [+ | (lambda V23 (lambda V24 (+ V23 V24)))] [<= | (lambda V25 (lambda V26 (<= V25 V26)))] [< | (lambda V27 (lambda V28 (< V27 V28)))] [y-or-n? | (lambda V29 (y-or-n? V29))] [write-to-file | (lambda V30 (lambda V31 (write-to-file V30 V31)))] [write-byte | (lambda V32 (lambda V33 (write-byte V32 V33)))] [variable? | (lambda V34 (variable? V34))] [value | (lambda V35 (value V35))] [value/or | (lambda V36 (lambda V37 (value/or V36 V37)))] [vector-> | (lambda V38 (lambda V39 (lambda V40 (vector-> V38 V39 V40))))] [<-vector | (lambda V41 (lambda V42 (<-vector V41 V42)))] [<-vector/or | (lambda V43 (lambda V44 (lambda V45 (<-vector/or V43 V44 V45))))] [vector | (lambda V46 (vector V46))] [vector? | (lambda V47 (vector? V47))] [unspecialise | (lambda V48 (unspecialise V48))] [untrack | (lambda V49 (untrack V49))] [union | (lambda V50 (lambda V51 (union V50 V51)))] [unify | (lambda V52 (lambda V53 (lambda V54 (lambda V55 (unify V52 V53 V54 V55)))))] [unify! | (lambda V56 (lambda V57 (lambda V58 (lambda V59 (unify! V56 V57 V58 V59)))))] [unput | (lambda V60 (lambda V61 (lambda V62 (unput V60 V61 V62))))] [unprofile | (lambda V63 (unprofile V63))] [undefmacro | (lambda V64 (undefmacro V64))] [return | (lambda V65 (lambda V66 (lambda V67 (return V65 V66 V67))))] [type | (lambda V68 (lambda V69 (type V68 V69)))] [tuple? | (lambda V70 (tuple? V70))] [trap-error | (lambda V71 (lambda V72 (trap-error V71 V72)))] [track | (lambda V73 (track V73))] [thaw | (lambda V74 (thaw V74))] [tc | (lambda V75 (tc V75))] [tl | (lambda V76 (tl V76))] [tlstr | (lambda V77 (tlstr V77))] [tail | (lambda V78 (tail V78))] [systemf | (lambda V79 (systemf V79))] [symbol? | (lambda V80 (symbol? V80))] [string->symbol | (lambda V81 (string->symbol V81))] [sum | (lambda V82 (sum V82))] [subst | (lambda V83 (lambda V84 (lambda V85 (subst V83 V84 V85))))] [string?| (lambda V86 (string? V86))] [string->n | (lambda V87 (string->n V87))] [step | (lambda V88 (step V88))] [spy | (lambda V89 (spy V89))] [specialise | (lambda V90 (specialise V90))] [snd | (lambda V91 (snd V91))] [simple-error | (lambda V92 (simple-error V92))] [set | (lambda V93 (lambda V94 (set V93 V94)))] [str | (lambda V95 (str V95))] [reverse | (lambda V96 (reverse V96))] [remove | (lambda V97 (lambda V98 (remove V97 V98)))] [read | (lambda V99 (read V99))] [read-file | (lambda V100 (read-file V100))] [read-file-as-bytelist | (lambda V101 (read-file-as-bytelist V101))] [read-file-as-string | (lambda V102 (read-file-as-string V102))] [read-byte | (lambda V103 (read-byte V103))] [read-file-as-charlist | (lambda V104 (read-file-as-charlist V104))] [read-char-code | (lambda V105 (read-char-code V105))] [read-from-string | (lambda V106 (read-from-string V106))] [package? | (lambda V107 (package? V107))] [put | (lambda V108 (lambda V109 (lambda V110 (lambda V111 (put V108 V109 V110 V111)))))] [preclude | (lambda V112 (preclude V112))] [preclude-all-but | (lambda V113 (preclude-all-but V113))] [ps | (lambda V114 (ps V114))] [protect | (lambda V115 (protect V115))] [profile-results | (lambda V116 (profile-results V116))] [profile | (lambda V117 (profile V117))] [print | (lambda V118 (print V118))] [pr | (lambda V119 (lambda V120 (pr V119 V120)))] [pos | (lambda V121 (lambda V122 (pos V121 V122)))] [or | (lambda V123 (lambda V124 (or V123 V124)))] [optimise | (lambda V125 (optimise V125))] [open | (lambda V126 (lambda V127 (open V126 V127)))] [occurrences | (lambda V128 (lambda V129 (occurrences V128 V129)))] [occurs-check | (lambda V130 (occurs-check V130))] [n->string | (lambda V131 (n->string V131))] [number? | (lambda V132 (number? V132))] [nth | (lambda V133 (lambda V134 (nth V133 V134)))] [not | (lambda V135 (not V135))] [nl | (lambda V136 (nl V136))] [macroexpand | (lambda V137 (macroexpand V137))] [maxinferences | (lambda V138 (maxinferences V138))] [mapcan | (lambda V139 (lambda V140 (mapcan V139 V140)))] [map | (lambda V141 (lambda V142 (map V141 V142)))] [load | (lambda V143 (load V143))] [lineread | (lambda V144 (lineread V144))] [limit | (lambda V145 (limit V145))] [length | (lambda V146 (length V146))] [intersection | (lambda V147 (lambda V148 (intersection V147 V148)))] [intern | (lambda V149 (intern V149))] [integer? (lambda V150 (integer? V150))] [input | (lambda V151 (input V151))] [input+ | (lambda V152 (lambda V153 (input+ V152 V153)))] [include | (lambda V154 (include V154))] [include-all-but | (lambda V155 (include-all-but V155))] [internal | (lambda V156 (internal V156))] [if | (lambda V157 (lambda V158 (lambda V159 (if V157 V158 V159))))] [identical | (lambda V160 (lambda V161 (lambda V162 (lambda V163 (identical V160 V161 V162 V163)))))] [head | (lambda V164 (head V164))] [hd | (lambda V165 (hd V165))] [hdv | (lambda V166 (hdv V166))] [hdstr | (lambda V167 (hdstr V167))] [hash | (lambda V168 (lambda V169 (hash V168 V169)))] [get | (lambda V170 (lambda V171 (lambda V172 (get V170 V171 V172))))] [get/or | (lambda V173 (lambda V174 (lambda V175 (lambda V176 (get/or V173 V174 V175 V176)))))] [get-time | (lambda V177 (get-time V177))] [gensym | (lambda V178 (gensym V178))] [fst | (lambda V179 (fst V179))] [freeze | (lambda V180 (freeze V180))] [fix | (lambda V181 (lambda V182 (fix V181 V182)))] [fail-if | (lambda V183 (lambda V184 (fail-if V183 V184)))] [findall | (lambda V185 (lambda V186 (lambda V187 (lambda V188 (lambda V189 (findall V185 V186 V187 V188 V189))))))] [for-each | (lambda V190 (lambda V191 (for-each V190 V191)))] [fold-right | (lambda V192 (lambda V193 (lambda V194 (fold-right V192 V193 V194))))] [fold-left | (lambda V195 (lambda V196 (lambda V197 (fold-left V195 V196 V197))))] [filter | (lambda V198 (lambda V199 (filter V198 V199)))] [enable-type-theory | (lambda V200 (enable-type-theory V200))] [explode | (lambda V201 (explode V201))] [external | (lambda V202 (external V202))] [eval-kl | (lambda V203 (eval-kl V203))] [eval | (lambda V204 (eval V204))] [error-to-string | (lambda V205 (error-to-string V205))] [empty? | (lambda V206 (empty? V206))] [exit | (lambda V207 (exit V207))] [element? | (lambda V208 (lambda V209 (element? V208 V209)))] [do | (lambda V210 (lambda V211 (do V210 V211)))] [difference | (lambda V212 (lambda V213 (difference V212 V213)))] [destroy | (lambda V214 (destroy V214))] [declare | (lambda V215 (lambda V216 (declare V215 V216)))] [cn | (lambda V217 (lambda V218 (cn V217 V218)))] [cons? | (lambda V219 (cons? V219))] [cons | (lambda V220 (lambda V221 (cons V220 V221)))] [concat | (lambda V222 (lambda V223 (concat V222 V223)))] [compile | (lambda V224 (lambda V225 (lambda V226 (compile V224 V225 V226))))] [cd | (lambda V227 (cd V227))] [close | (lambda V228 (close V228))] [bound? | (lambda V229 (bound? V229))] [boolean? | (lambda V230 (boolean? V230))] [assoc | (lambda V231 (lambda V232 (assoc V231 V232)))] [arity | (lambda V233 (arity V233))] [append | (lambda V234 (lambda V235 (append V234 V235)))] [and | (lambda V236 (lambda V237 (and V236 V237)))] [adjoin | (lambda V238 (lambda V239 (adjoin V238 V239)))] [<-address | (lambda V240 (lambda V241 (<-address V240 V241)))] [<-address/or | (lambda V242 (lambda V243 (lambda V244 (<-address/or V242 V243 V244))))] [address-> | (lambda V245 (lambda V246 (lambda V247 (address-> V245 V246 V247))))] [absvector? | (lambda V248 (absvector? V248))] [absvector | (lambda V249 (absvector V249))] [dict | (lambda V250 (dict V250))] [dict? | (lambda V251 (dict? V251))] [dict-count | (lambda V252 (dict-count V252))] [dict-> | (lambda V253 (lambda V254 (lambda V255 (dict-> V253 V254 V255))))] [<-dict/or | (lambda V256 (lambda V257 (lambda V258 (<-dict/or V256 V257 V258))))] [<-dict | (lambda V259 (lambda V260 (<-dict V259 V260)))] [dict-rm | (lambda V261 (lambda V262 (dict-rm V261 V262)))] [dict-fold | (lambda V263 (lambda V264 (lambda V265 (dict-fold V263 V264 V265))))] [dict-keys | (lambda V266 (dict-keys V266))] [dict-values | (lambda V267 (dict-values V267))]]]) (define specialise F -> (do (set *special* [F | (value *special*)]) F)) (define unspecialise F -> (do (set *special* (remove F (value *special*))) F)) )
Shen
3
otabat/shen-jvm
shen/src/shen-replace/declarations-replace.shen
[ "MIT" ]
server { server_name ssl.both.com; } # a duplicate vhost server { server_name ssl.both.com; } # a duplicate by means of wildcard server { server_name *.both.com; } # combined HTTP and HTTPS server { server_name ssl.both.com; listen 80; listen 5001 ssl; ssl_certificate cert.pem; ssl_certificate_key cert.key; } # HTTPS, duplicate by means of wildcard server { server_name *.both.com; listen 5001 ssl; ssl_certificate cert.pem; ssl_certificate_key cert.key; }
DIGITAL Command Language
3
4n3i5v74/certbot
certbot-nginx/tests/testdata/etc_nginx/sites-enabled/both.com
[ "Apache-2.0" ]
#!/bin/bash for i in chrome/app/resources/generated_resources_*.xtb; do fn=`basename $i` lc=${fn#generated_resources_} lc=${lc%.xtb} outf=content/nw/src/resources/locale/nw_strings_$lc.xtb echo output locale: $lc cat > $outf <<EOF <?xml version="1.0" ?> <!DOCTYPE translationbundle> <translationbundle lang="$lc"> EOF while read id; do echo id: $id grep $id $i >> $outf done < content/nw/src/resources/locale/id_list cat >> $outf <<"EOF2" </translationbundle> EOF2 done
Shell
4
namaljayathunga/nw.js
tools/extract_l10n_id.sh
[ "MIT" ]
.demo-button { button, a { margin: 8px; text-transform: uppercase; } section { display: flex; align-items: center; margin: 8px; } p { padding: 5px 15px; } .demo-section-header { font-weight: 500; margin: 0; } .demo-no-flex { display: block; } }
SCSS
3
MarkArranz/material2
src/demo-app/button/button-demo.scss
[ "MIT" ]
--TEST-- Bug #72596 (imagetypes function won't advertise WEBP support) --EXTENSIONS-- gd --FILE-- <?php var_dump(function_exists('imagewebp') === (bool) (imagetypes() & IMG_WEBP)); ?> --EXPECT-- bool(true)
PHP
3
NathanFreeman/php-src
ext/gd/tests/bug72596.phpt
[ "PHP-3.01" ]
------------------------------------------------------------------------------- -- -- File: ChannelBond.vhd -- Author: Elod Gyorgy -- Original Project: HDMI input on 7-series Xilinx FPGA -- Date: 8 October 2014 -- ------------------------------------------------------------------------------- -- (c) 2014 Copyright Digilent Incorporated -- All Rights Reserved -- -- This program is free software; distributed under the terms of BSD 3-clause -- license ("Revised BSD License", "New BSD License", or "Modified BSD License") -- -- Redistribution and use in source and binary forms, with or without modification, -- are permitted provided that the following conditions are met: -- -- 1. Redistributions of source code must retain the above copyright notice, this -- list of conditions and the following disclaimer. -- 2. Redistributions in binary form must reproduce the above copyright notice, -- this list of conditions and the following disclaimer in the documentation -- and/or other materials provided with the distribution. -- 3. Neither the name(s) of the above-listed copyright holder(s) nor the names -- of its contributors may be used to endorse or promote products derived -- from this software without specific prior written permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER 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. -- ------------------------------------------------------------------------------- -- -- Purpose: -- This module de-skews data channels relative to each other. TMDS specs -- allow 0.2 Tcharacter + 1.78ns skew between channels. To re-align the -- channels all are buffered in FIFOs until a special marker (the beginning -- of a blanking period) is found on all the channels. -- ------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; use work.DVI_Constants.ALL; -- Uncomment the following library declaration if using -- arithmetic functions with Signed or Unsigned values --use IEEE.NUMERIC_STD.ALL; -- Uncomment the following library declaration if instantiating -- any Xilinx leaf cells in this code. --library UNISIM; --use UNISIM.VComponents.all; entity ChannelBond is Port ( PixelClk : in std_logic; pDataInRaw : in std_logic_vector(9 downto 0); pMeVld : in std_logic; pOtherChVld : in std_logic_vector(1 downto 0); pOtherChRdy : in std_logic_vector(1 downto 0); pDataInBnd : out std_logic_vector(9 downto 0); pMeRdy : out std_logic ); end ChannelBond; architecture Behavioral of ChannelBond is constant kFIFO_Depth : natural := 32; type FIFO_t is array (0 to kFIFO_Depth-1) of std_logic_vector(9 downto 0); signal pFIFO : FIFO_t; signal pDataFIFO : std_logic_vector(9 downto 0); signal pRdA, pWrA : natural range 0 to kFIFO_Depth-1; signal pRdEn : std_logic; signal pAllVld, pAllVld_q, pMeRdy_int: std_logic; signal pBlnkBgnFlag, pTokenFlag, pTokenFlag_q, pAllVldBgnFlag : std_logic; begin pAllVld <= pMeVld and pOtherChVld(0) and pOtherChVld(1); pDataInBnd <= pDataFIFO; -- raw data with skew removed pMeRdy <= pMeRdy_int; -- data is de-skewed and valid -- The process below should result in a dual-port distributed RAM with registered output FIFO: process (PixelClk) begin if Rising_Edge(PixelClk) then if (pAllVld = '1') then -- begin writing in FIFO as soon as all the channels have valid data pFIFO(pWrA) <= pDataInRaw; end if; pDataFIFO <= pFIFO(pRdA); -- register FIFO output end if; end process FIFO; -- FIFO address counters FIFO_WrA: process (PixelClk) begin if Rising_Edge(PixelClk) then if (pAllVld = '1') then pWrA <= pWrA + 1; else -- when invalid data, go back to the beginning pWrA <= 0; end if; end if; end process FIFO_WrA; FIFO_RdA: process (PixelClk) begin if Rising_Edge(PixelClk) then if (pAllVld = '0') then pRdA <= 0; elsif (pRdEn = '1') then pRdA <= pRdA + 1; end if; end if; end process FIFO_RdA; DataValidFlag: process(PixelClk) begin if Rising_Edge(PixelClk) then pAllVld_q <= pAllVld; pAllVldBgnFlag <= not pAllVld_q and pAllVld; -- this flag used below delays enabling read, thus making sure data is written first before being read end if; end process DataValidFlag; ------------------------------------------------------------------------------- -- Channel bonding is done here: -- 1 When all the channels have valid data (ie. alignment lock), FIFO is flow-through -- 2 When marker is found on this channel, FIFO read is paused, thus holding data -- 3 When all channels report the marker, FIFO read begins again, thus syncing markers ------------------------------------------------------------------------------- FIFO_RdEn: process(PixelClk) begin if Rising_Edge(PixelClk) then if (pAllVld = '0') then pRdEn <= '0'; elsif (pAllVldBgnFlag = '1' or (pMeRdy_int = '1' and pOtherChRdy = "11")) then pRdEn <= '1'; elsif (pBlnkBgnFlag = '1' and not (pMeRdy_int = '1' and pOtherChRdy = "11")) then pRdEn <= '0'; end if; end if; end process FIFO_RdEn; -- Detect blanking period begin TokenDetect: process(PixelClk) begin if Rising_Edge(PixelClk) then if (pRdEn = '0' or pDataFIFO = kCtlTkn0 or pDataFIFO = kCtlTkn1 or pDataFIFO = kCtlTkn2 or pDataFIFO = kCtlTkn3) then pTokenFlag <= '1'; --token flag activates on invalid data, which avoids a BlnkBgn pulse if the valid signal goes up in the middle of a blanking period else pTokenFlag <= '0'; end if; pTokenFlag_q <= pTokenFlag; pBlnkBgnFlag <= not pTokenFlag_q and pTokenFlag; end if; end process TokenDetect; -- Ready signal when marker is received IAmReady: process(PixelClk) begin if Rising_Edge(PixelClk) then if (pAllVld = '0') then -- if not all channels are valid, we are not ready either pMeRdy_int <= '0'; elsif (pBlnkBgnFlag = '1') then pMeRdy_int <= '1'; end if; end if; end process IAmReady; end Behavioral;
VHDL
5
michalkouril/PYNQ
boards/ip/dvi2rgb_v1_7/src/ChannelBond.vhd
[ "BSD-3-Clause" ]
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { Disposable, IDisposable } from 'vs/base/common/lifecycle'; import { BaseWindowDriver } from 'vs/platform/driver/browser/baseDriver'; class BrowserWindowDriver extends BaseWindowDriver { click(selector: string, xoffset?: number | undefined, yoffset?: number | undefined): Promise<void> { throw new Error('Method not implemented.'); } doubleClick(selector: string): Promise<void> { throw new Error('Method not implemented.'); } openDevTools(): Promise<void> { throw new Error('Method not implemented.'); } } export async function registerWindowDriver(): Promise<IDisposable> { (<any>window).driver = new BrowserWindowDriver(); return Disposable.None; }
TypeScript
3
sbj42/vscode
src/vs/platform/driver/browser/driver.ts
[ "MIT" ]
package com.baeldung.functional; import java.util.logging.Level; import java.util.logging.Logger; public class ReferentialTransparency { private static Logger logger = Logger.getGlobal(); public void main() { String data = new SimpleData().setData("Baeldung") .getData(); logger.log(Level.INFO, new SimpleData().setData("Baeldung") .getData()); logger.log(Level.INFO, data); logger.log(Level.INFO, "Baeldung"); } public class SimpleData { private Logger logger = Logger.getGlobal(); private String data; public String getData() { logger.log(Level.INFO, "Get data called for SimpleData"); return data; } public SimpleData setData(String data) { logger.log(Level.INFO, "Set data called for SimpleData"); this.data = data; return this; } } }
Java
3
DBatOWL/tutorials
core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/ReferentialTransparency.java
[ "MIT" ]
<%= cache "uhoh" do %> <%= uncacheable! %> <% end %>
HTML+ERB
2
jstncarvalho/rails
actionview/test/fixtures/test/uncacheable.html.erb
[ "MIT" ]
{ "$schema": "../schemas/design-system.schema.json5", "lastUpdated": "2020-07-22", "name": "Chromium", "url": "https://www.chromium.org/", "by": "Open Source", "description": "Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all Internet users to experience the web.", "components": [ { "name": "File", "concepts": [ { "name": "Default", "image": "chromium-file-default.png" }, { "name": "Default (with file selection)", "image": "chromium-file-default-selection.png" }, { "name": "Multiple", "image": "chromium-file-multiple.png" }, { "name": "Multiple (with file selection)", "image": "chromium-file-multiple-selection.png" } ] } ] }
JSON5
3
mfreed7/open-ui
research/src/sources/chromium.json5
[ "W3C-20150513" ]
#ifndef CSVREADER_H #define CSVREADER_H #include <iostream> #include <fstream> #include <opencv2/core/core.hpp> #include "Utils.h" using namespace std; using namespace cv; class CsvReader { public: /** * The default constructor of the CSV reader Class. * The default separator is ' ' (empty space) * * @param path - The path of the file to read * @param separator - The separator character between words per line * @return */ CsvReader(const string &path, char separator = ' '); /** * Read a plane text file with .ply format * * @param list_vertex - The container of the vertices list of the mesh * @param list_triangle - The container of the triangles list of the mesh * @return */ void readPLY(vector<Point3f> &list_vertex, vector<vector<int> > &list_triangles); private: /** The current stream file for the reader */ ifstream _file; /** The separator character between words for each line */ char _separator; }; #endif
C
4
thisisgopalmandal/opencv
samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/CsvReader.h
[ "BSD-3-Clause" ]
(set-info :smt-lib-version 2.6) (set-logic QF_UFLRA) (set-info :source |CPAchecker with k-induction on SV-COMP14 program using MathSAT5, submitted by Philipp Wendler, http://cpachecker.sosy-lab.org|) (set-info :category "industrial") (set-info :status unsat) (declare-fun ldv_spin@1 () Real) (declare-fun |main::ldv_s_ds1390_driver_spi_driver@1| () Real) (define-fun _7 () Real 0) (define-fun _1303 () Real |main::ldv_s_ds1390_driver_spi_driver@1|) (define-fun _1304 () Bool (= _1303 _7)) (define-fun _2713 () Real ldv_spin@1) (define-fun _2714 () Bool (= _2713 _7)) (define-fun _2715 () Bool (and _1304 _2714)) (define-fun _2 () Bool false) (assert _2715) (assert _2) (check-sat) (exit)
SMT
3
livinlife6751/infer
sledge/test/smt/QF_UFLRA/cpachecker-induction-svcomp14/cpachecker-induction.43_1a_cilled_true-unreach-call_ok_nondet_linux-43_1a-drivers--rtc--rtc-ds1390.ko-ldv_main0_sequence_infinite_withcheck_stateful.cil.out.c.smt2
[ "MIT" ]
// Test that anonymous lifetimes are not permitted in struct declarations struct Foo { x: &isize //~ ERROR missing lifetime specifier } fn main() {}
Rust
4
Eric-Arellano/rust
src/test/ui/regions/regions-in-structs-anon.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
#![feature(decl_macro)] macro x() { struct MyStruct; } x!(); x!();
Rust
1
Eric-Arellano/rust
src/test/ui/hygiene/auxiliary/needs_hygiene.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
[#name: "TheCastle", #levels: 6, #version: 3.6400, #creator: "ChallengeYou", #Floor: [[[[160, 325], [320, 325], [320, 80], [160, 80]], [[1, 1], 2]], [[[170, 315], [310, 315], [310, 220], [170, 220]], [[4, 1], 2]], [[[170, 315], [310, 315], [310, 220], [170, 220]], [[3, 1], 2]], [[[170, 320], [310, 320], [310, 210], [170, 210]], [[4, 1], 2]], [[[170, 320], [210, 320], [210, 280], [170, 280]], [[8, 1], 8]], [[[230, 210], [250, 210], [250, 190], [230, 190]], [[1, 1], 2]]], #walls: [[10, 0, 220, 290, [4, 4, 1], 1], [15, 0, 220, 250, [2, 2, 1], 2], [0, 40, 220, 250, [2, 2, 1], 2], [0, 30, 260, 250, [2, 2, 1], 2], [-40, 0, 260, 290, [2, 2, 1], 2], [-15, 0, 260, 250, [2, 2, 1], 2], [0, -40, 260, 290, [4, 4, 1], 1], [40, 0, 220, 250, [4, 4, 1], 1], [0, 40, 220, 250, [4, 4, 1], 1], [-25, 0, 260, 290, [4, 4, 1], 1], [-15, -15, 250, 305, [4, 4, 1], 1], [-10, -15, 240, 305, [4, 4, 1], 1], [0, -30, 245, 250, [1, 1, 1], 2], [0, -30, 235, 250, [1, 1, 1], 2], [-10, 0, 245, 230, [1, 1, 1], 2], [-15, 0, 260, 250, [1, 1, 1], 3], [0, 40, 260, 250, [1, 1, 1], 3], [15, 0, 220, 290, [1, 1, 1], 3], [0, -40, 220, 290, [1, 1, 1], 3], [40, 0, 220, 250, [1, 1, 1], 4], [0, -15, 260, 290, [1, 1, 1], 4], [-40, 0, 260, 290, [1, 1, 1], 4], [0, -15, 220, 290, [1, 1, 1], 4], [0, 15, 260, 250, [1, 1, 1], 4], [15, 0, 220, 250, [1, 1, 1], 3], [-15, 0, 260, 290, [1, 1, 1], 3], [0, 15, 220, 250, [1, 1, 1], 4], [-25, 0, 285, 250, [3, 3, 1], 3], [25, 0, 260, 290, [3, 3, 1], 3], [0, -40, 285, 290, [3, 3, 1], 3], [-25, 0, 220, 250, [3, 3, 1], 3], [0, 40, 195, 250, [3, 3, 1], 3], [25, 0, 195, 290, [3, 3, 1], 3], [0, 25, 220, 225, [3, 3, 1], 4], [0, 25, 260, 225, [3, 3, 1], 4], [0, 25, 220, 290, [3, 3, 1], 4], [40, 0, 220, 315, [3, 3, 1], 4], [0, -25, 260, 315, [3, 3, 1], 4], [-140, 0, 310, 320, [3, 3, 1], 4], [0, -110, 170, 320, [3, 3, 1], 4], [60, 0, 170, 210, [3, 3, 1], 4], [0, -110, 310, 320, [3, 3, 1], 4], [-60, 0, 310, 210, [3, 3, 1], 4], [0, -20, 250, 210, [3, 3, 1], 4], [20, 0, 230, 190, [3, 3, 1], 4], [0, -20, 230, 210, [3, 3, 1], 4], [65, 0, 245, 220, [2, 2, 1], 3], [0, 95, 170, 220, [1, 3, 1], 3], [140, 0, 170, 315, [1, 3, 1], 3], [0, 95, 310, 220, [3, 1, 1], 3], [65, 0, 170, 220, [2, 2, 1], 3], [0, 95, 170, 220, [1, 3, 1], 2], [140, 0, 170, 220, [3, 1, 1], 2], [140, 0, 170, 315, [1, 3, 1], 2], [0, 95, 310, 220, [3, 1, 1], 2], [0, 95, 310, 220, [3, 3, 1], 1], [-140, 0, 310, 220, [3, 3, 1], 1], [0, 95, 170, 220, [3, 3, 1], 1], [-140, 0, 310, 315, [3, 3, 1], 1], [0, -25, 235, 250, [3, 1, 1], 1], [-20, 0, 255, 225, [1, 1, 1], 1], [0, 10, 260, 220, [3, 1, 1], 1], [20, 0, 240, 230, [1, 1, 1], 1], [0, 15, 240, 230, [1, 1, 1], 1], [0, -15, 245, 250, [1, 3, 1], 1], [-10, 0, 255, 235, [3, 1, 1], 1], [0, 10, 245, 210, [1, 1, 1], 3], [0, 10, 235, 210, [1, 1, 1], 3], [10, 0, 235, 210, [1, 1, 1], 3], [10, 5, 225, 270, [4, 4, 1], 1], [-20, 5, 255, 270, [4, 4, 1], 1], [0, -15, 255, 270, [4, 4, 1], 1], [0, 15, 225, 255, [4, 4, 1], 1], [0, -15, 235, 290, [4, 4, 1], 1], [0, 5, 235, 220, [2, 2, 1], 1], [0, -10, 245, 290, [1, 1, 1], 3], [-15, 0, 260, 280, [1, 1, 1], 3], [-25, 0, 260, 280, [1, 1, 1], 2], [0, 10, 235, 280, [1, 1, 1], 2], [15, 0, 245, 280, [4, 4, 1], 1], [5, 0, 170, 270, [1, 1, 1], 4], [-5, 0, 310, 270, [1, 1, 1], 4], [0, -30, 250, 220, [1, 3, 1], 3], [-20, 0, 250, 190, [1, 3, 1], 3], [0, 30, 230, 190, [3, 3, 1], 3], [0, -30, 230, 220, [3, 1, 1], 2], [20, 0, 230, 190, [3, 1, 1], 2], [0, 30, 250, 190, [3, 3, 1], 2], [0, 30, 230, 190, [3, 3, 1], 1], [0, 30, 250, 190, [3, 3, 1], 1], [20, 0, 230, 190, [3, 3, 1], 1], [10, 0, 170, 270, [3, 3, 1], 1], [25, 10, 255, 210, [2, 2, 1], 4], [30, -10, 280, 220, [2, 2, 1], 4], [-25, 10, 225, 210, [1, 1, 1], 4], [-20, 0, 200, 220, [1, 1, 1], 4], [0, 10, 245, 50, [2, 2, 1], 1], [10, 0, 235, 50, [2, 2, 1], 1], [0, -10, 235, 60, [2, 2, 1], 1], [40, 0, 170, 210, [3, 3, 1], 5], [0, -40, 170, 320, [3, 3, 1], 5], [40, 0, 170, 320, [3, 3, 1], 5], [0, -40, 310, 320, [3, 3, 1], 5], [-40, 0, 310, 210, [3, 3, 1], 5], [0, -20, 250, 210, [3, 3, 1], 5], [0, -20, 230, 210, [3, 3, 1], 5], [-5, 0, 250, 190, [3, 3, 1], 5], [5, 0, 230, 190, [3, 3, 1], 5], [0, 40, 210, 280, [2, 2, 1], 5], [40, 0, 170, 280, [2, 2, 1], 5], [40, 0, 170, 280, [3, 3, 1], 6], [0, -40, 210, 320, [3, 3, 1], 6], [40, 0, 170, 320, [3, 3, 1], 6], [0, -40, 170, 320, [3, 3, 1], 6], [0, 40, 270, 280, [3, 3, 1], 6], [40, 0, 270, 280, [3, 3, 1], 6], [0, -40, 310, 320, [3, 3, 1], 6], [-40, 0, 310, 320, [3, 3, 1], 6], [0, 40, 210, 210, [3, 3, 1], 6], [40, 0, 170, 250, [3, 3, 1], 6], [0, 40, 170, 210, [3, 3, 1], 6], [40, 0, 170, 210, [3, 3, 1], 6], [0, -40, 270, 250, [3, 3, 1], 6], [40, 0, 270, 250, [3, 3, 1], 6], [-40, 0, 310, 210, [3, 3, 1], 6], [0, 40, 310, 210, [3, 3, 1], 6], [-40, 0, 310, 320, [3, 3, 1], 5], [0, 40, 270, 280, [3, 3, 1], 5], [40, 0, 270, 280, [3, 3, 1], 5], [0, 40, 270, 210, [3, 3, 1], 5], [40, 0, 270, 250, [3, 3, 1], 5], [0, 40, 210, 210, [3, 3, 1], 5], [-40, 0, 210, 250, [3, 3, 1], 5], [0, 40, 310, 210, [3, 3, 1], 5], [0, 40, 170, 210, [3, 3, 1], 5], [0, 10, 245, 160, [3, 3, 1], 1], [0, 20, 245, 130, [3, 3, 1], 1], [0, 10, 245, 180, [3, 3, 1], 1], [0, 10, 235, 180, [3, 3, 1], 1], [0, -10, 235, 170, [3, 3, 1], 1], [0, -20, 235, 150, [3, 3, 1], 1], [10, 0, 235, 150, [3, 3, 1], 1], [-10, 0, 245, 160, [3, 3, 1], 1], [10, 0, 235, 170, [3, 3, 1], 1], [-10, 0, 245, 180, [3, 3, 1], 1], [0, 40, 245, 150, [3, 3, 1], 2], [0, -40, 235, 190, [3, 3, 1], 2], [0, -20, 245, 190, [3, 3, 1], 3], [0, 20, 235, 170, [3, 3, 1], 3]], #Begin: [[[240, 55], [2], 1]], #Finish: [[[190, 230], [2, 1], 1]], #Plat: [[[240, 75], [1, 5, 1], 1], [[240, 65], [1, 5, 1], 1], [[240, 55], [1, 5, 1], 1], [[240, 55], [1, 5, 1], 2], [[240, 200], [2, 5, 1], 4], [[240, 215], [1, 5, 1], 3], [[175, 315], [1, 5, 1], 6], [[175, 305], [1, 5, 1], 6], [[175, 295], [1, 5, 1], 6], [[195, 285], [1, 5, 1], 6], [[205, 285], [1, 5, 1], 6], [[190, 280], [1, 5, 1], 4], [[300, 220], [2, 5, 1], 6], [[195, 245], [1, 5, 1], 6], [[300, 310], [2, 5, 1], 6], [[205, 215], [1, 5, 1], 5], [[175, 235], [1, 5, 1], 6], [[175, 225], [1, 5, 1], 6], [[175, 215], [1, 5, 1], 6], [[205, 245], [1, 5, 1], 6], [[185, 245], [1, 5, 1], 6], [[175, 245], [1, 5, 1], 6], [[185, 285], [1, 5, 1], 6], [[175, 285], [1, 5, 1], 6], [[180, 240], [2, 5, 1], 5], [[200, 240], [2, 5, 1], 5], [[180, 220], [2, 5, 1], 5], [[195, 225], [1, 5, 1], 5], [[205, 225], [1, 5, 1], 5], [[240, 155], [1, 4, 1], 2], [[240, 175], [1, 4, 1], 2]], #TriPlat: [], #DiaPlat: [], #Hole: [[[240, 270], [3], 2], [[265, 270], [3], 3], [[240, 295], [3], 4], [[215, 270], [3], 3], [[240, 245], [3], 4], [[285, 295], [3], 4], [[285, 245], [3], 4], [[195, 245], [3], 4], [[195, 295], [3], 4], [[200, 260], [2], 2], [[285, 270], [3], 1], [[200, 270], [3], 1], [[210, 230], [2], 1], [[240, 210], [2], 1], [[240, 215], [1], 4], [[240, 235], [1], 3], [[190, 300], [1], 5]], #Board: [[[243, 85], ["Welcome to The Castle", 2], 1]], #Monster: [[[174, 284], [2, 1], 4], [[307, 256], [2, 1], 4], [[232, 273], [3, 1], 4], [[190, 304], [2, 1], 3], [[210, 238], [2, 1], 3], [[257, 300], [2, 1], 3], [[191, 233], [2, 1], 2], [[280, 298], [2, 1], 2], [[273, 232], [2, 1], 1], [[255, 219], [2, 1], 4], [[215, 220], [3, 1], 4], [[271, 240], [2, 1], 3], [[294, 233], [2, 1], 2], [[207, 291], [2, 1], 2], [[250, 223], [2, 1], 1], [[208, 247], [2, 1], 1], [[180, 300], [3, 1], 5], [[175, 215], [3, 1], 6]], #Chaser: [], #Teleport: [], #Portal: [], #Slingshot: [[[240, 95], [1], 1]], "Crumbs": [[[230, 215], [4], 4], [[175, 285], [4], 6]], #Door: [[[240, 190], [1, 1, 1], 5], [[235, 190], [1, 1, 1], 5], [[240, 250], [1, 1, 1], 3], [[235, 250], [1, 1, 1], 3], [[235, 290], [1, 1, 1], 3], [[240, 290], [1, 1, 1], 3], [[255, 235], [2, 1, 1], 1], [[230, 290], [1, 1, 1], 1]], #Key2: [], #Ladder: [], #Ramp: [[[240, 250], [1, 5], 1], [[240, 230], [1, 5], 2], [[240, 210], [1, 5], 3], [[240, 190], [1, 5], 4], [[240, 190], [2, 5], 4], [[290, 265], [2, 5], 3], [[180, 265], [2, 5], 3], [[200, 270], [2, 5], 1], [[260, 285], [4, 5], 1], [[240, 170], [2, 5], 3], [[240, 150], [2, 5], 2], [[240, 130], [2, 5], 1], [[190, 305], [2, 5], 4], [[180, 315], [3, 5], 5], [[200, 215], [4, 5], 4], [[205, 240], [2, 5], 5]], #TriWall: [[[245, 130], [1, 3, 2], 1], [[245, 150], [1, 3, 2], 2], [[235, 150], [1, 3, 2], 2], [[245, 170], [1, 3, 2], 3], [[235, 170], [1, 3, 2], 3], [[245, 190], [1, 3, 2], 4], [[235, 190], [1, 3, 2], 4], [[235, 130], [1, 3, 2], 1]], #Diamond: [[[182, 223], [2], 4], [[173, 316], [2], 4], [[187, 302], [2], 2], [[240, 269], [2], 3], [[306, 316], [1], 4], [[307, 223], [1], 4], [[240, 270], [1], 4], [[295, 305], [2], 3], [[180, 230], [2], 3], [[300, 225], [2], 2], [[257, 223], [3], 1], [[195, 305], [2], 1], [[180, 310], [2], 5], [[205, 285], [3], 6]], #Pillar: [[[245, 190], [1, 1, 1, 1], 5], [[235, 190], [1, 1, 1, 1], 5], [[305, 270], [1, 1, 1, 1], 4], [[175, 270], [1, 1, 1, 1], 4]], #BackMusic: [], #Theme: [], #JetPack: [], #Fuel: []]
Cycript
3
smola/language-dataset
data/github.com/Ruixel/YACY/49835f35a0d114d60c20e91f9c5f7707db77a2ec/res/levels/Castle.cy
[ "MIT" ]
{-# LANGUAGE CPP, RankNTypes, UndecidableInstances, GADTs, TypeSynonymInstances, FlexibleInstances, MultiParamTypeClasses, FlexibleContexts, ScopedTypeVariables #-} {-# OPTIONS_GHC -fno-warn-orphans #-} module Graphics.UI.FLTK.LowLevel.Dial ( -- * Hierarchy -- -- $hierarchy -- * Widget Functions -- -- $functions ) where #include "Fl_ExportMacros.h" #include "Fl_Types.h" #include "Fl_DialC.h" import C2HS hiding (cFromEnum, cFromBool, cToBool,cToEnum) import Graphics.UI.FLTK.LowLevel.Fl_Enumerations import Graphics.UI.FLTK.LowLevel.Fl_Types import Graphics.UI.FLTK.LowLevel.Utils import Graphics.UI.FLTK.LowLevel.Dispatch import Graphics.UI.FLTK.LowLevel.Hierarchy {# fun Fl_Dial_resize as resize' { id `Ptr ()',`Int',`Int',`Int',`Int' } -> `()' supressWarningAboutRes #} instance (impl ~ (Rectangle -> IO ())) => Op (Resize ()) Dial orig impl where runOp _ _ dial rectangle = withRef dial $ \dialPtr -> do let (x_pos,y_pos,w_pos,h_pos) = fromRectangle rectangle resize' dialPtr x_pos y_pos w_pos h_pos {# fun Fl_Dial_hide as hide' { id `Ptr ()' } -> `()' #} instance (impl ~ ( IO ())) => Op (Hide ()) Dial orig impl where runOp _ _ dial = withRef dial $ \dialPtr -> hide' dialPtr {# fun Fl_Dial_show as show' { id `Ptr ()' } -> `()' #} instance (impl ~ ( IO ())) => Op (ShowWidget ()) Dial orig impl where runOp _ _ dial = withRef dial $ \dialPtr -> show' dialPtr {#fun Fl_Dial_handle as dialHandle' { id `Ptr ()', id `CInt' } -> `Int' #} instance (impl ~ (Event -> IO (Either UnknownEvent ()))) => Op (Handle ()) Dial orig impl where runOp _ _ dial event = withRef dial (\p -> dialHandle' p (fromIntegral . fromEnum $ event)) >>= return . successOrUnknownEvent {# fun Fl_Dial_draw as draw'' { id `Ptr ()' } -> `()' #} instance (impl ~ ( IO ())) => Op (Draw ()) Dial orig impl where runOp _ _ dial = withRef dial $ \dialPtr -> draw'' dialPtr -- $hierarchy -- @ -- "Graphics.UI.FLTK.LowLevel.Base.Widget" -- | -- v -- "Graphics.UI.FLTK.LowLevel.Base.Valuator" -- | -- v -- "Graphics.UI.FLTK.LowLevel.Base.Dial" -- | -- v -- "Graphics.UI.FLTK.LowLevel.Dial" -- @ -- $functions -- @ -- draw :: 'Ref' 'Dial' -> 'IO' () -- -- handle :: 'Ref' 'Dial' -> 'Event' -> 'IO' ('Either' 'UnknownEvent' ()) -- -- hide :: 'Ref' 'Dial' -> 'IO' () -- -- resize :: 'Ref' 'Dial' -> 'Rectangle' -> 'IO' () -- -- showWidget :: 'Ref' 'Dial' -> 'IO' () -- @
C2hs Haskell
4
ericu/fltkhs
src/Graphics/UI/FLTK/LowLevel/Dial.chs
[ "MIT" ]
<ul class="options_list"> <li data-option="suggestions"> <div class="checkbox-container"><input type="checkbox" data-option="suggestions" id="suggestions"{{#if suggestions}} checked=true{{/if}}><label for="suggestions" data-option="suggestions"></label></div> <div class="option_description" data-option="suggestions">Enable automatic suggestions and command descriptions</div></li> <li data-option="electric_punctuation"> <div class="checkbox-container"><input type="checkbox" data-option="electric_punctuation" id="electric_punctuation"{{#if electric_punctuation}} checked=true{{/if}}><label for="electric_punctuation" data-option="electric_punctuation"></label></div> <div class="option_description" data-option="electric_punctuation">Auto-insert pair brackets, parentheses, and quotes</div></li> <li data-option="profiler"> <div class="alert profiler_enabled"><strong>Query profiler active:</strong> re-run the query to see results.</div> <div class="checkbox-container"><input type="checkbox" data-option="profiler" id="profiler" {{#if profiler}} checked=true{{/if}}><label for="profiler" data-option="profiler"></label></div> <div class="option_description" data-option="profiler">Enable query profiler</div></li> <li class="text-input" data-option="query_limit"> <div class="input-container"><input type="text" data-option="query_limit" id="query_limit" value="{{query_limit}}"/><label for="query_limit" data-option="query_limit"></label></div> <div class="input_description" data-option="profiler">Max results per query (Note: returning more results will increase loading time)</div></li> </ul>
Handlebars
3
zadcha/rethinkdb
admin/static/handlebars/dataexplorer-options.hbs
[ "Apache-2.0" ]
#![allow(bare_trait_objects)] trait Trait<'a> {} fn main() { let _: &for<'a> Trait<'a> + 'static; //~^ ERROR expected a path on the left-hand side of `+`, not `&for<'a> Trait<'a>` //~| HELP try adding parentheses //~| SUGGESTION &(for<'a> Trait<'a> + 'static) }
Rust
3
Eric-Arellano/rust
src/test/ui/parser/trait-object-polytrait-priority.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
DAFETF NAIF DAF ENCODED TRANSFER FILE 'DAF/CK ' '2' '6' 'DAWN FC ALIGNMENT ' BEGIN_ARRAY 1 10 'DAWN FC2 ALIGNMENT, 10/22/15 ' '1D16542FF6^A' '1D165709F6^A' '-31970' '-318F8' '2' '1' 10 'FFFFE89764F228^0' '-19D0E9E6478CB6^-2' '62A2E9911F8D98^-2' '27DEA9760525CA^-2' '0^0' '0^0' '0^0' '1000000602F071^-1' '1D16542FF6^A' '1D165709F6^A' END_ARRAY 1 10 TOTAL_ARRAYS 1 ~NAIF/SPC BEGIN COMMENTS~ This CK is for testing with the image: /home/pgiroux/Desktop/FC21A0038582_15170161546F6F.cub This CK was generated using the following command: {} ~NAIF/SPC END COMMENTS~
XC
2
ladoramkershner/ale
tests/pytests/data/FC21A0038582_15170161546F6F/dawn_fc_v3_1_sliced_-203120.xc
[ "Unlicense" ]
load '../train/train.plot' plot '../train-wiki/model.step-trainlossavg10' t 'wikipedia train loss' w lines ls 1 dt '.', \ 'model.step-trainlossavg10' t 'hn train loss' w lines ls 2 dt '.', \ 'model-3.step-trainlossavg10' u ($1+197000):2 t 'hn train loss 3' w lines ls 4 dt '.', \ '../train-wiki/model.step-devloss' t 'wikipedia dev loss' w lines ls 1, \ 'model.step-devloss' t 'hn dev loss' w lines ls 2, \ 'model-2.step-devloss' t 'hn dev loss 2' w lines ls 3, \ 'model-3.step-devloss' u ($1+197000):2 t 'hn dev loss 3' w lines ls 4
Gnuplot
3
DanielMabadeje/Artificial-Intelligence-Deep-Learning-Machine-Learning-Tutorials
Projects/hackernews-comments/train-wiki-hn/train.plot
[ "Apache-2.0" ]
/** * TestNetworkC exercises the basic networking layers, collection and * dissemination. The application samples DemoSensorC at a basic rate * and sends packets up a collection tree. The rate is configurable * through dissemination. * * See TEP118: Dissemination, TEP 119: Collection, and TEP 123: The * Collection Tree Protocol for details. * * @author Philip Levis * @version $Revision: 1.7 $ $Date: 2009-09-16 00:51:50 $ */ #include "TestNetwork.h" #include "Ctp.h" configuration TestNetworkAppC {} implementation { components TestNetworkC, MainC, LedsC, ActiveMessageC; components DisseminationC; components new DisseminatorC(uint32_t, SAMPLE_RATE_KEY) as Object32C; components CollectionC as Collector; components new CollectionSenderC(CL_TEST); components new TimerMilliC(); components new DemoSensorC(); components new SerialAMSenderC(CL_TEST); components SerialActiveMessageC; #ifndef NO_DEBUG components new SerialAMSenderC(AM_COLLECTION_DEBUG) as UARTSender; components UARTDebugSenderP as DebugSender; #endif components RandomC; components new QueueC(message_t*, 12); components new PoolC(message_t, 12); TestNetworkC.Boot -> MainC; TestNetworkC.RadioControl -> ActiveMessageC; TestNetworkC.SerialControl -> SerialActiveMessageC; TestNetworkC.RoutingControl -> Collector; TestNetworkC.DisseminationControl -> DisseminationC; TestNetworkC.Leds -> LedsC; TestNetworkC.Timer -> TimerMilliC; TestNetworkC.DisseminationPeriod -> Object32C; TestNetworkC.Send -> CollectionSenderC; TestNetworkC.ReadSensor -> DemoSensorC; TestNetworkC.RootControl -> Collector; TestNetworkC.Receive -> Collector.Receive[CL_TEST]; TestNetworkC.UARTSend -> SerialAMSenderC.AMSend; TestNetworkC.CollectionPacket -> Collector; TestNetworkC.CtpInfo -> Collector; TestNetworkC.CtpCongestion -> Collector; TestNetworkC.Random -> RandomC; TestNetworkC.Pool -> PoolC; TestNetworkC.Queue -> QueueC; TestNetworkC.RadioPacket -> ActiveMessageC; #ifndef NO_DEBUG components new PoolC(message_t, 10) as DebugMessagePool; components new QueueC(message_t*, 10) as DebugSendQueue; DebugSender.Boot -> MainC; DebugSender.UARTSend -> UARTSender; DebugSender.MessagePool -> DebugMessagePool; DebugSender.SendQueue -> DebugSendQueue; Collector.CollectionDebug -> DebugSender; TestNetworkC.CollectionDebug -> DebugSender; #endif TestNetworkC.AMPacket -> ActiveMessageC; }
nesC
4
mtaghiza/tinyos-main-1
apps/tests/TestNetwork/TestNetworkAppC.nc
[ "BSD-3-Clause" ]
<p>{{{raw}}}</p>
Handlebars
0
fuelingtheweb/prettier
tests/handlebars/raw.hbs
[ "MIT" ]
#tag Class Protected Class TreeViewWFS Implements WndProcSubclassWFS #tag Method, Flags = &h21 Private Function AddImageToImageList(p as Picture) As Integer #if TargetWin32 Declare Function ImageList_Create Lib "comctl32" ( cx as Integer, cy as Integer, _ flags as Integer, initialSize as Integer, growBy as Integer ) as Integer Const ILC_COLOR4 = &h0004 Const ILC_COLOR8 = &h0008 Const ILC_COLOR16 = &h0010 Const ILC_COLOR24 = &h0018 Const ILC_COLOR32 = &h0020 Dim TVM_SETIMAGELIST as Integer = TV_FIRST + 9 // We have two lists, so which list we work on // may change. If the list hasn't been created // yet, then we need to make it now as well. dim flags as Integer select case p.Depth case 32 flags = ILC_COLOR32 case 24 flags = ILC_COLOR24 case 16 flags = ILC_COLOR16 case 8 flags = ILC_COLOR8 case 4 flags = ILC_COLOR4 end if mImageList = 0 then // Make the new image list mImageList = ImageList_Create( p.Width, p.Height, flags, 1, 1 ) Call SendMessage( TVM_SETIMAGELIST, 0, mImageList ) end // Now we have an image list to work with, so let's // add the picture. This is rather much a pain in // the arse, but that's ok, we can do it using declares! // We need to make an HBITMAP from the image that // also uses the mask properly dim hbitmap as Integer hbitmap = HBITMAPFromPicture( p ) // Now that we have the HBITMAP from the Picture // object, we can add it to the image list Declare Function ImageList_Add Lib "comctl32" ( list as Integer, _ image as Integer, mask as Integer ) as Integer dim index as Integer index = ImageList_Add( mImageList, hbitmap, 0 ) // Now that we're done with the bitmap, we should // release it Declare Sub DeleteObject Lib "Gdi32" ( obj as Integer ) DeleteObject( hbitmap ) return index #else #pragma unused p #endif End Function #tag EndMethod #tag Method, Flags = &h0 Sub AddItem(ByRef item as TreeViewItemWFS, parent as TreeViewItemWFS = nil) #if TargetWin32 // Set up the proper structure we need to add a new item in // the TreeView. Dim TVM_INSERTITEMA as Integer = TV_FIRST + 0 Dim TVM_INSERTITEMW as Integer = TV_FIRST + 50 Dim tvinsertstruct as new MemoryBlock( 52 ) // Set the parent handle properly. This allows us to add // sub items to anything passed into us. if parent <> nil then tvinsertstruct.Long( 0 ) = parent.Handle else tvinsertstruct.Long( 0 ) = 0 end // Determine where you would like this item to appear // in relationship to the parent item. Const TVI_ROOT = &hFFFF0000 Const TVI_FIRST = &hFFFF0001 Const TVI_LAST = &hFFFF0002 Const TVI_SORT = &hFFFF0003 if parent = nil then tvinsertstruct.Long( 4 ) = TVI_ROOT else tvinsertstruct.Long( 4 ) = TVI_LAST end // Next, figure out what flags are valid with this // object. Const TVIF_TEXT = &h0001 Const TVIF_IMAGE = &h0002 Const TVIF_PARAM = &h0004 Const TVIF_STATE = &h0008 Const TVIF_HANDLE = &h0010 Const TVIF_SELECTEDIMAGE = &h0020 Const TVIF_CHILDREN = &h0040 dim flags as Integer dim imageIndex, selectedImageIndex as Integer = -1 // Every item has some text to it, so this flag is always valid flags = TVIF_TEXT // If we have an image, then we need to add it to the image // map if item.Image <> nil then flags = flags + TVIF_IMAGE imageIndex = AddImageToImageList( item.Image ) // We will fall back on this image to be our drag image item.DragImageIndex = imageIndex end // If we have a different image to show when this item is // selected, we should add that to the image list as well. if item.SelectedImage <> nil then flags = flags + TVIF_SELECTEDIMAGE selectedImageIndex = AddImageToImageList( item.SelectedImage ) // We want to use this image when dragging the item since // the item must be selected in order to start dragging it. item.DragImageIndex = selectedImageIndex end // Set the flags we're using tvinsertstruct.Long( 8 ) = flags // Set the new item's text dim text as MemoryBlock if mUnicodeSavvy then dim theText as String = ConvertEncoding( Item.Text, Encodings.UTF16 ) text = new MemoryBlock( LenB( theText ) + 2 ) text.WString( 0 ) = theText tvinsertstruct.Ptr( 24 ) = text tvinsertstruct.Long( 28 ) = Len( theText ) + 1 else text = new MemoryBlock( Len( item.Text ) + 1 ) text.CString( 0 ) = Item.Text tvinsertstruct.Ptr( 24 ) = text tvinsertstruct.Long( 28 ) = text.Size end if // Then be sure to set the proper image indexes if we have them if imageIndex >= 0 then tvinsertstruct.Long( 32 ) = imageIndex end if selectedImageIndex >= 0 then tvinsertstruct.Long( 36 ) = selectedImageIndex end // After all that jazz, add the item itself if mUnicodeSavvy then item.Handle = SendMessage( TVM_INSERTITEMW, 0, MemoryBlockToInteger( tvinsertstruct ) ) else item.Handle = SendMessage( TVM_INSERTITEMA, 0, MemoryBlockToInteger( tvinsertstruct ) ) end if // And make sure this item's handle maps to the actual item in // our list if mItems = nil then mItems = new Dictionary mItems.Value( item.Handle ) = item #else #pragma unused item #pragma unused parent #endif End Sub #tag EndMethod #tag Method, Flags = &h21 Private Sub BeginDrag(lpnmtreeview as MemoryBlock) #if TargetWin32 // First, we want to make the proper image list for the drag item Dim TVM_CREATEDRAGIMAGE as Integer = TV_FIRST + 18 Dim oldItemOffset as Integer = 16 Dim newItemOffset as Integer = oldItemOffset + 40 // Create the drag item from the tree view mDragging = SendMessage( TVM_CREATEDRAGIMAGE, 0, lpnmtreeview.Long( newItemOffset + 4 ) ) // Now tell the image list to start dragging this Declare Sub ImageList_BeginDrag Lib "ComCtl32" ( hImg as Integer, index as Integer, _ dx as Integer, dy as Integer ) ImageList_BeginDrag( mDragging, 0, 0, 0 ) // Set where to start the drag from Dim x, y as Integer Declare Sub ImageList_DragEnter Lib "ComCtl32" ( hOwner as Integer, x as Integer, y as Integer ) x = lpnmtreeview.Long( newItemOffset + 40 ) y = lpnmtreeview.Long( newItemOffset + 44 ) ImageList_DragEnter( mWnd, x, y ) // Hide the mouse cursor Declare Sub ShowCursor Lib "User32" ( show as Boolean ) ShowCursor( false ) // And capture all mouse movements in this window Declare Sub SetCapture Lib "User32" ( hwnd as Integer ) SetCapture( mWnd ) #else #pragma unused lpnmtreeview #endif End Sub #tag EndMethod #tag Method, Flags = &h0 Sub Constructor() #if TargetWin32 // We need to initialize the common controls library and tell it // that we are going to be adding treeviews Declare Sub InitCommonControlsEx Lib "comctl32" ( ex as Ptr ) dim ex as new MemoryBlock( 8 ) ex.Long( 0 ) = ex.Size Const ICC_TREEVIEW_CLASSES = &h00000002 ex.Long( 4 ) = ICC_TREEVIEW_CLASSES InitCommonControlsEx( ex ) #endif End Sub #tag EndMethod #tag Method, Flags = &h0 Sub Create(w as Window, x as Integer, y as Integer, width as Integer, height as Integer) #if TargetWin32 Const WC_TREEVIEW = "SysTreeView32" Soft Declare Function CreateWindowExA Lib "User32" ( ex as Integer, className as CString, _ title as Integer, style as Integer, x as Integer, y as Integer, width as Integer, _ height as Integer, parent as Integer, menu as Integer, hInstance as Integer, _ lParam as Integer ) as Integer Soft Declare Function CreateWindowExW Lib "User32" ( ex as Integer, className as WString, _ title as Integer, style as Integer, x as Integer, y as Integer, width as Integer, _ height as Integer, parent as Integer, menu as Integer, hInstance as Integer, _ lParam as Integer ) as Integer Declare Function GetModuleHandleA Lib "Kernel32" ( name as Integer ) as Integer // First, get the HINSTANCE of this application so we can // use it to create a window dim hInstance as Integer hInstance = GetModuleHandleA( 0 ) Const TVS_HASBUTTONS = &h0001 Const TVS_HASLINES = &h0002 Const TVS_LINESATROOT = &h0004 Const TVS_EDITLABELS = &h0008 Const TVS_DISABLEDRAGDROP = &h0010 Const TVS_SHOWSELALWAYS = &h0020 Const TVS_RTLREADING = &h0040 Const TVS_NOTOOLTIPS = &h0080 Const TVS_CHECKBOXES = &h0100 Const TVS_TRACKSELECT = &h0200 Const TVS_SINGLEEXPAND = &h0400 Const TVS_INFOTIP = &h0800 Const TVS_FULLROWSELECT = &h1000 Const TVS_NOSCROLL = &h2000 Const TVS_NONEVENHEIGHT = &h4000 Const WS_CHILD = &h40000000 Const WS_EX_CLIENTEDGE = &h00000200 // Figure out what style we want. Right now we just pick the style // for the user, but this could be pretty easily user-configurable. dim style as Integer style = TVS_HASLINES + TVS_LINESATROOT + TVS_HASBUTTONS + TVS_EDITLABELS // For now, we're not going to allow dragging. It seems to be // messed up because the RB Framework captures the mouse out // from underneath us. style = style + TVS_DISABLEDRAGDROP Const SB_SETUNICODEFORMAT = &h2005 mUnicodeSavvy = System.IsFunctionAvailable( "CreateWindowExW", "User32" ) // Actually create the window that is our treeview if mUnicodeSavvy then mWnd = CreateWindowExW( WS_EX_CLIENTEDGE, WC_TREEVIEW, 0, WS_CHILD + style, _ x, y, width, height, w.WinHWND, 0, hInstance, 0 ) Call SendMessage( SB_SETUNICODEFORMAT, 1, 0 ) else mWnd = CreateWindowExA( WS_EX_CLIENTEDGE, WC_TREEVIEW, 0, WS_CHILD + style, _ x, y, width, height, w.WinHWND, 0, hInstance, 0 ) Call SendMessage( SB_SETUNICODEFORMAT, 0, 0 ) end if // Make sure the window is shown properly Declare Sub ShowWindow Lib "User32" ( hwnd as Integer, type as Integer ) Const SW_SHOW = 5 ShowWindow( mWnd, SW_SHOW ) // Subclass the RB Window so that we can get messages // for this window. Be sure to keep the RB Window around tho WndProcHelpersWFS.Subclass( w, self ) mRBWindow = w #else #pragma unused w #pragma unused x #pragma unused y #pragma unused width #pragma unused height #endif End Sub #tag EndMethod #tag Method, Flags = &h0 Sub Destructor() // If we've been subclassed, we should unsubclass // ourselves if mRBWindow <> nil then WndProcHelpersWFS.Unsubclass( mRBWindow, self ) end #if TargetWin32 // And then destroy our window if we have one made Declare Sub DestroyWindow Lib "User32" ( hwnd as Integer ) if mWnd <> 0 then DestroyWindow( mWnd ) end mWnd = 0 // Also be sure to destroy our image list when we're done Declare Sub ImageList_Destroy Lib "ComCtl32" ( list as Integer ) if mImageList <> 0 then ImageList_Destroy( mImageList ) end mImageList = 0 #endif End Sub #tag EndMethod #tag Method, Flags = &h0 Sub EnsureItemIsVisible(item as TreeViewItemWFS) // We want to make sure this item is visible to the // user, and that all parents are properly expanded // to show the item Dim TVM_ENSUREVISIBLE as Integer = TV_FIRST + 20 Call SendMessage( TVM_ENSUREVISIBLE, 0, item.Handle ) End Sub #tag EndMethod #tag Method, Flags = &h21 Private Function HandleWM_LButtonUp() As Integer #if TargetWin32 // If we're not dragging, then bail out if mDragging = 0 then return 0 // Signal that we're leaving the drag Declare Sub ImageList_DragLeave Lib "ComCtl32" ( htree as Integer ) ImageList_DragLeave( mWnd ) // And end the drag Declare Sub ImageList_EndDrag Lib "ComCtl32" () ImageList_EndDrag() // Get the selected item DIm TVM_GETNEXTITEM as Integer = TV_FIRST + 10 Const TVGN_DROPHILITE = &h0008 Dim selected as Integer selected = SendMessage( TVM_GETNEXTITEM, TVGN_DROPHILITE, 0 ) // Now select it properly Dim TVM_SELECTITEM as Integer = TV_FIRST + 11 Const TVGN_CARET = &h0009 // First select the caret Call SendMessage( TVM_SELECTITEM, TVGN_CARET, selected ) // Then the highlight Call SendMessage( TVM_SELECTITEM, TVGN_DROPHILITE, selected ) // Then release our capture on the mouse Declare Sub ReleaseCapture Lib "User32" () ReleaseCapture() // And re-show the regular cursor Declare Sub ShowCursor Lib "User32" ( show as Boolean ) ShowCursor( true ) // And destroy our image list Declare Sub ImageList_Destroy Lib "ComCtl32" ( list as Integer ) ImageList_Destroy( mDragging ) mDragging = 0 return 1 #endif End Function #tag EndMethod #tag Method, Flags = &h21 Private Function HandleWM_MouseMove(lParam as Integer) As Integer #if TargetWin32 // If we're not dragging, then we don't care if mDragging = 0 then return 0 // We're dragging, so we care. Tell the image list that // the drag has moved Declare Sub ImageList_DragMove Lib "ComCtl32" ( x as Integer, y as Integer ) dim x, y as Integer x = BitwiseAnd( lParam, &hFFFF ) y = BitwiseAnd( Bitwise.ShiftRight( lParam, 16 ), &hFFFF ) ImageList_DragMove( x - 32, y - 25 ) // Lock the new image from showing yet Declare Sub ImageList_DragShowNolock Lib "ComCtl32" ( show as Boolean ) ImageList_DragShowNolock( false ) // We should hilight the item that we're dragging over so it's // proper UI behavior Dim TVM_HITTEST as Integer = TV_FIRST + 17 Dim TVM_SELECTITEM as Integer = TV_FIRST + 11 Const TVGN_DROPHILITE = &h0008 Dim tvhittestinfo as new MemoryBlock( 16 ) tvhittestinfo.Long( 0 ) = x - 20 tvhittestinfo.Long( 4 ) = y - 20 // Get the hit target dim hitTarget as Integer hitTarget = SendMessage( TVM_HITTEST, 0, MemoryBlockToInteger( tvhittestinfo ) ) if hitTarget <> 0 then // There was a hit target, so select it for highlighting. Call SendMessage( TVM_SELECTITEM, TVGN_DROPHILITE, hitTarget ) end // Now show the new image ImageList_DragShowNolock( true ) #else #pragma unused lParam #endif End Function #tag EndMethod #tag Method, Flags = &h21 Private Function HandleWM_Notify(hWnd as Integer, controlID as Integer, nmhdr as MemoryBlock) As Integer // Check to see if the code for the nmhdr is one that // we care about dim code as Integer = nmhdr.Long( 8 ) Dim TVN_SELCHANGEDA as Integer = TVN_FIRST - 2 Dim TVN_SELCHANGEDW as Integer = TVN_FIRST - 51 DIm TVN_ENDLABELEDITA as Integer = TVN_FIRST - 11 Dim TVN_ENDLABELEDITW as Integer = TVN_FIRST - 60 Dim TVN_BEGINDRAGA as Integer = TVN_FIRST - 7 Dim TVN_BEGINDRAGW as Integer = TVN_FIRST - 56 Dim oldItemOffset as Integer = 16 Dim newItemOffset as Integer = oldItemOffset + 40 dim oldItemHandle, newItemHandle as Integer dim item as TreeViewItemWFS Const TVIF_TEXT = &h0001 Const TVIF_IMAGE = &h0002 Const TVIF_PARAM = &h0004 Const TVIF_STATE = &h0008 Const TVIF_HANDLE = &h0010 Const TVIF_SELECTEDIMAGE = &h0020 Const TVIF_CHILDREN = &h0040 if code = TVN_SELCHANGEDA or code = TVN_SELCHANGEDW then // If this is the case, then the nmhdr is really a NMTREEVIEW // We should figure out who's been unselected, and // fire off an event for them. // Get a handle to the old item if BitwiseAnd( nmhdr.Long( oldItemOffset + 0 ), TVIF_HANDLE ) = TVIF_HANDLE then oldItemHandle = nmhdr.Long( oldItemOffset + 4 ) end if oldItemHandle <> 0 then ItemUnselected( mItems.Value( oldItemHandle ) ) end // Get a handle to the new item if BitwiseAnd( nmhdr.Long( newItemOffset + 0 ), TVIF_HANDLE ) = TVIF_HANDLE then newItemHandle = nmhdr.Long( newItemOffset + 4 ) end if newItemHandle <> 0 then ItemSelected( mItems.Value( newItemHandle ) ) end elseif code = TVN_ENDLABELEDITA or code = TVN_ENDLABELEDITW then // The user is done editing a label. We really have a // NMTVDISPINFO structure that points to the new // information if nmhdr.Long( 28 ) <> 0 then // Get the new text and stuff it into the proper item item = mItems.Value( nmhdr.Long( 16 ) ) if code = TVN_ENDLABELEDITA then if mUnicodeSavvy then item.Text = nmhdr.Ptr( 28 ).WString( 0 ) else item.Text = nmhdr.Ptr( 28 ).CString( 0 ) end if else item.Text = nmhdr.Ptr( 28 ).WString( 0 ) end mItems.Value( nmhdr.Long( 16 ) ) = item // We want to accept the label text change return 1 end elseif code = TVN_BEGINDRAGA or code = TVN_BEGINDRAGW then // We're starting a drag operation, so get that ball rolling BeginDrag( nmhdr ) end return 0 #pragma unused hWnd #pragma unused controlID End Function #tag EndMethod #tag Method, Flags = &h21 Private Function HBITMAPFromPicture(p as Picture) As Integer #if TargetWin32 #if RBVersion < 2010.05 // DISCLAIMER!!! READ THIS!!!! // The following declare uses a very unsupported feature in REALbasic. This means a few // things. 1) Don't rely on this call working forever -- it's entirely possible that upgrading to // a new version of REALbasic will cause this declare to break. 2) Don't try to use declares // into the plugins APIs yourself. And 3) Since this is not a supported way to use declares, you // get everything you deserve if you use a declare like this. You will eventually come down // with the plague and someone will drink all your beer. Basically... don't use this sort of thing! // The declare will be removed as soon as there is a sanctioned way to get this functionality // from REALbasic. This declare should (hypothetically) work in 5.5 only (tho it may work in // version 5 as well). Consider all other versions of REALbasic unsupported. #if RBVersion < 2006.01 then Declare Function REALGraphicsDC Lib "" ( g as Graphics ) as Integer #endif // DISCLAIMER!!! READ THIS!!!! // The following declare uses a very unsupported feature in REALbasic. This means a few // things. 1) Don't rely on this call working forever -- it's entirely possible that upgrading to // a new version of REALbasic will cause this declare to break. 2) Don't try to use declares // into the plugins APIs yourself. And 3) Since this is not a supported way to use declares, you // get everything you deserve if you use a declare like this. You will eventually come down // with the plague and someone will drink all your beer. Basically... don't use this sort of thing! // The declare will be removed as soon as there is a sanctioned way to get this functionality // from REALbasic. This declare should (hypothetically) work in 5.5 only (tho it may work in // version 5 as well). Consider all other versions of REALbasic unsupported. Declare Sub drawPicturePrimitive Lib "" ( hdc as Integer, p as Picture, drawRect as Ptr, transparent as Boolean ) Declare Function CreateCompatibleDC Lib "Gdi32" ( hdc as Integer ) as Integer Declare Function CreateCompatibleBitmap Lib "Gdi32" ( hdc as Integer, width as Integer, height as Integer ) as Integer Declare Function SelectObject Lib "Gdi32" ( hdc as Integer, hbitmap as Integer ) as Integer Declare Sub DeleteDC Lib "Gdi32" ( hdc as Integer ) // First, get the HDC from the graphics object for the picture Dim hPictureDC as Integer #if RBVersion < 2006.01 then hPictureDC = REALGraphicsDC( p.Graphics ) #else hPictureDC = p.Graphics.Handle( Graphics.HandleTypeHDC ) #endif // Then make a compatible device context Dim hScratchDC as Integer hScratchDC = CreateCompatibleDC( hPictureDC ) // Then make the bitmap that we'll be using Dim hBitmap as Integer hBitmap = CreateCompatibleBitmap( hPictureDC, p.Width, p.Height ) // Select the bitmap into the context and keep the old // contents around Dim hOld as Integer hOld = SelectObject( hScratchDC, hBitmap ) // Now draw the original image to the newly created // bitmap dim drawRect as new MemoryBlock( 8 ) drawRect.Short( 4 ) = p.Width drawRect.Short( 6 ) = p.Height drawPicturePrimitive( hScratchDC, p, drawRect, false ) // Be sure to select the old bitmap back into place Dim hRet as Integer hRet = SelectObject( hScratchDC, hOld ) // And free our memory DeleteDC( hScratchDC ) // And return our bitmap return hRet #endif #else // Since REAL Software decided to break Lib "" declares without giving // any replacement whatsoever for this functionality, we have to go the // slow route. We will save the bitmaps out to disk, and then load them // back up so we can get the handle. Declare Function LoadImageW Lib "User32" ( hInst as Integer, name as WString, type as Integer, cx as Integer, cy as Integer, load as Integer ) as Integer dim main as FolderItem = SpecialFolder.Temporary.Child( "main" ) p.Save( main, Picture.SaveAsWindowsBMP ) Const IMAGE_BITMAP = 0 Const LR_LOADFROMFILE = &H10 return LoadImageW( 0, main.AbsolutePath, IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE ) #endif End Function #tag EndMethod #tag Method, Flags = &h21 Private Function IntegerToMemoryBlock(i as Integer) As MemoryBlock dim mb as new MemoryBlock( 4 ) mb.Long( 0 ) = i return mb.Ptr( 0 ) End Function #tag EndMethod #tag Method, Flags = &h21 Private Function MemoryBlockToInteger(mb as MemoryBlock) As Integer dim ret as new MemoryBlock( 4 ) ret.Ptr( 0 ) = mb return ret.Long( 0 ) End Function #tag EndMethod #tag Method, Flags = &h0 Sub RemoveAllItems() Dim TVM_DELETEITEM as Integer = TV_FIRST + 1 Const TVI_ROOT = &hFFFF0000 Call SendMessage( TVM_DELETEITEM, 0, TVI_ROOT ) mItems = nil End Sub #tag EndMethod #tag Method, Flags = &h0 Sub RemoveItem(item as TreeViewItemWFS) Dim TVM_DELETEITEM as Integer = TV_FIRST + 1 Call SendMessage( TVM_DELETEITEM, 0, item.Handle ) try mItems.Remove( item.Handle ) catch end End Sub #tag EndMethod #tag Method, Flags = &h0 Sub SelectItem(item as TreeViewItemWFS) // We want to change the selection to the // proper item Dim TVM_SELECTITEM as Integer = TV_FIRST + 11 Const TVGN_CARET = &h0009 Const TVGN_DROPHILITE = &h0008 // First set the caret Call SendMessage( TVM_SELECTITEM, TVGN_CARET, item.Handle ) // Then set the highlight Call SendMessage( TVM_SELECTITEM, TVGN_DROPHILITE, item.Handle ) End Sub #tag EndMethod #tag Method, Flags = &h21 Private Function SendMessage(msg as Integer, wParam as Integer, lParam as Integer) As Integer #if TargetWin32 Soft Declare Function SendMessageA Lib "User32" ( wnd as Integer, msg as Integer, _ wParam as Integer, lParam as Integer ) as Integer Soft Declare Function SendMessageW Lib "User32" ( wnd as Integer, msg as Integer, _ wParam as Integer, lParam as Integer ) as Integer if mUnicodeSavvy then return SendMessageW( mWnd, msg, wParam, lParam ) else return SendMessageA( mWnd, msg, wParam, lParam ) end if #else #pragma unused msg #pragma unused wParam #pragma unused lParam #endif End Function #tag EndMethod #tag Method, Flags = &h0 Function WndProc(hWnd as Integer, msg as Integer, wParam as Integer, lParam as Integer, ByRef returnValue as Integer) As Boolean Const WM_NOTIFY = &h004E Const WM_MOUSEMOVE = &h0200 Const WM_LBUTTONUP = &h0202 select case msg case WM_NOTIFY // We got a notification of some sort, so let's try to // handle it returnValue = HandleWM_Notify( hWnd, wParam, IntegerToMemoryBlock( lParam ) ) return true case WM_MOUSEMOVE // Handle the mouse moving returnValue = HandleWM_MouseMove( lParam ) return true case WM_LBUTTONUP // Handle the mouse up returnValue = HandleWM_LButtonUp return true end select return false End Function #tag EndMethod #tag Hook, Flags = &h0 Event ItemSelected(item as TreeViewItemWFS) #tag EndHook #tag Hook, Flags = &h0 Event ItemUnselected(item as TreeViewItemWFS) #tag EndHook #tag Property, Flags = &h21 Private mDragging As Integer #tag EndProperty #tag Property, Flags = &h21 Private mImageList As Integer #tag EndProperty #tag Property, Flags = &h21 Private mItems As Dictionary #tag EndProperty #tag Property, Flags = &h21 Private mRBWindow As Window #tag EndProperty #tag Property, Flags = &h1 Protected mUnicodeSavvy As Boolean #tag EndProperty #tag Property, Flags = &h21 Private mWnd As Integer #tag EndProperty #tag Constant, Name = TVN_FIRST, Type = Integer, Dynamic = False, Default = \"-400", Scope = Private #tag EndConstant #tag Constant, Name = TV_FIRST, Type = Integer, Dynamic = False, Default = \"&h1100", Scope = Private #tag EndConstant #tag ViewBehavior #tag ViewProperty Name="Index" Visible=true Group="ID" InitialValue="-2147483648" InheritedFrom="Object" #tag EndViewProperty #tag ViewProperty Name="Left" Visible=true Group="Position" InitialValue="0" InheritedFrom="Object" #tag EndViewProperty #tag ViewProperty Name="Name" Visible=true Group="ID" InheritedFrom="Object" #tag EndViewProperty #tag ViewProperty Name="Super" Visible=true Group="ID" InheritedFrom="Object" #tag EndViewProperty #tag ViewProperty Name="Top" Visible=true Group="Position" InitialValue="0" InheritedFrom="Object" #tag EndViewProperty #tag EndViewBehavior End Class #tag EndClass
REALbasic
5
bskrtich/WFS
Windows Functionality Suite/UI Extras/Classes/TreeViewWFS.rbbas
[ "MIT" ]
( { (({RHPF.ar(OnePole.ar(BrownNoise.ar, 0.99), LPF.ar(BrownNoise.ar, 14) * 400 + 500, 0.03, 0.003)}!2) + ({RHPF.ar(OnePole.ar(BrownNoise.ar, 0.99), LPF.ar(BrownNoise.ar, 20) * 800 + 1000, 0.03, 0.005)}!2)) * 10; }.play ) Env.perc.test; Env.circle.test; // // Paulstretch // ( SynthDef(\paulstretchMono, { |out = 0, bufnum, envBufnum, pan = 0, stretch = 50, window = 0.25, amp = 1| // Paulstretch for SuperCollider // Based on the Paul's Extreme Sound Stretch algorithm by Nasca Octavian PAUL // https://github.com/paulnasca/paulstretch_python/blob/master/paulstretch_steps.png // // By Jean-Philippe Drecourt // http://drecourt.com // April 2020 // // Arguments: // out: output bus (stereo output) // bufnum: the sound buffer. Must be Mono. (Use 2 instances with Buffer.readChannel for stereo) // envBufnum: The grain envelope buffer created as follows: //// envBuf = Buffer.alloc(s, s.sampleRate, 1); //// envSignal = Signal.newClear(s.sampleRate).waveFill({|x| (1 - x.pow(2)).pow(1.25)}, -1.0, 1.0); //// envBuf.loadCollection(envSignal); // pan: Equal power panning, useful for stereo use. // stretch: stretch factor (modulatable) // window: the suggested grain size, will be resized to closest fft window size // amp: amplification var trigPeriod, sig, chain, trig, pos, fftSize; // Calculating fft buffer size according to suggested window size fftSize = 2**floor(log2(window*SampleRate.ir)); // Grain parameters // The grain is the exact length of the FFT window trigPeriod = fftSize/SampleRate.ir; trig = Impulse.ar(1/trigPeriod); pos = Demand.ar(trig, 0, demandUGens: Dseries(0, trigPeriod/stretch)); // Extraction of 2 consecutive grains // Both grains need to be treated together for superposition afterwards sig = [GrainBuf.ar(1, trig, trigPeriod, bufnum, 1, pos, envbufnum: envBufnum), GrainBuf.ar(1, trig, trigPeriod, bufnum, 1, pos + (trigPeriod/(2*stretch)), envbufnum: envBufnum)]*amp; // FFT magic sig = sig.collect({ |item, i| chain = FFT(LocalBuf(fftSize), item, hop: 1.0, wintype: -1); // PV_Diffuser is only active if its trigger is 1 // And it needs to be reset for each grain to get the smooth envelope chain = PV_Diffuser(chain, 1 - trig); item = IFFT(chain, wintype: -1); }); // Reapply the grain envelope because the FFT phase randomization removes it sig = sig*PlayBuf.ar(1, envBufnum, 1/(trigPeriod), loop:1); // Delay second grain by half a grain length for superposition sig[1] = DelayC.ar(sig[1], trigPeriod/2, trigPeriod/2); // Panned output Out.ar(out, Pan2.ar(Mix.new(sig), pan)); }).add; ) // Example ({ var envBuf, envSignal, buffer; buffer = Buffer.read(s, Platform.resourceDir +/+ "sounds/a11wlk01.wav"); // The grain envelope envBuf = Buffer.alloc(s, s.sampleRate, 1); envSignal = Signal.newClear(s.sampleRate).waveFill({|x| (1 - x.pow(2)).pow(1.25)}, -1.0, 1.0); envBuf.loadCollection(envSignal); s.sync(); // Runs indefinitely Synth(\paulstretchMono, [\bufnum, buffer.bufnum, \envBufnum, envBuf.bufnum]); }.fork; ) ( { var humSource, noise, comb; humSource = Clip.ar(LFSaw.ar([99.8, 100.2], 1, 0.5, 0.5).sum - 1, -0.5, 0.5); noise = LPF.ar(LPF.ar(WhiteNoise.ar,2),2); noise = noise * noise * 500; humSource = humSource * noise; // fig 39.2: Comb unit comb = DelayC.ar(InFeedback.ar(10), delaytime: (noise+20)/1000); OffsetOut.ar(10, (humSource + OnePole.ar(comb * 0.2, exp(-2pi * (3000 * SampleDur.ir))))); comb ! 2 }.play; ) ( { var noise, phasor, chirpPulse, randGate, chirpAmp, clip, snap, trig, formant, comb; phasor = LFSaw.ar([-99.8, 100.2], 1, 0.5, 0.5); noise = WhiteNoise.ar!2; noise[0] = OnePole.ar(noise[0], exp(-2pi * (0.1 * SampleDur.ir))); noise[0] = OnePole.ar(noise[0], exp(-2pi * (0.1 * SampleDur.ir))); noise[0] = noise[0].max(0) * 700 + 3; // fig 39.4: Chirp pulse chirpPulse = phasor[0].scope * noise[0]; chirpPulse = chirpPulse.min(1) - (chirpPulse.max(1) - 1 * 1e+09).min(1); chirpPulse.scope; chirpPulse = ((chirpPulse + 0.1)**2 * 12 * 2pi).cos * chirpPulse; chirpPulse.scope; chirpPulse = (chirpPulse - OnePole.ar(chirpPulse, exp(-2pi * (300 * SampleDur.ir)))); // fig 39.5: Random Gate randGate = WhiteNoise.ar; randGate = OnePole.ar(randGate, exp(-2pi * (3 * SampleDur.ir))); randGate = OnePole.ar(randGate, exp(-2pi * (3 * SampleDur.ir))); randGate = Clip.ar(noise.max(2) - 0.0008 * 1e+09, 0, 1); randGate = OnePole.ar(randGate, exp(-2pi * (30 * SampleDur.ir))); randGate = chirpPulse * randGate; noise[1] = LPF.ar(LPF.ar(WhiteNoise.ar,2),2); noise[1] = noise[1] * noise[1] * 500; clip = Clip.ar((phasor.sum - 1) * noise[1], -0.9, 0.1); chirpAmp = OnePole.ar(clip, exp(-2pi * (15 * SampleDur.ir))); chirpAmp = OnePole.ar(chirpAmp, exp(-2pi * (15 * SampleDur.ir))); chirpAmp = Clip.ar((chirpAmp * 500).max(0.1) - 0.1 * 1e+09, 0, 1); chirpAmp = OnePole.ar(chirpAmp, exp(-2pi * (30 * SampleDur.ir))); chirpPulse = chirpPulse * chirpAmp * 0.6; trig = (Amplitude.kr(clip)>0.03); // fig 39.7: Spark snap snap = 0!2; snap[0] = EnvGen.ar(Env.new([0,1,0], [0, 0.5]), trig); snap[0] = snap[0] * snap[0] * snap[0] * WhiteNoise.ar * 0.5; snap[1] = EnvGen.ar(Env.new([0,1,0], [0, 10/1000]), trig); snap[1] = SinOsc.ar(snap[1] * 7000 + 20); snap = snap.sum * 0.05; // fig 39.6: Spark formant formant = BPF.ar(snap, 1.8 * [4600, 7200, 480, 720], [5,5,7,8].reciprocal); formant = formant[0..1].sum * 2 + formant[2] * 1.2 + formant[3] * 2.5; formant = BPF.ar(formant, 2500, 0.5.reciprocal); // fig 39.2 Comb unit comb = DelayC.ar(InFeedback.ar(10), delaytime: (noise[1] + 20)/1000); OffsetOut.ar(10, (chirpPulse + clip + snap + OnePole.ar(comb * 0.2, exp(-2pi * (3000 * SampleDur.ir))))); comb!2; }.play; ) ( SynthDef(\electricity, { var noise, phasor, chirpPulse, randGate, chirpAmp, clip, snap, trig, formant, comb; phasor = LFSaw.ar([-99.8, 100.2], 1, 0.5, 0.5); noise = WhiteNoise.ar!2; noise[0] = OnePole.ar(noise[0], exp(-2pi * (0.1 * SampleDur.ir))); noise[0] = OnePole.ar(noise[0], exp(-2pi * (0.1 * SampleDur.ir))); noise[0] = noise[0].max(0) * 700 + 3; // fig 39.4: Chirp pulse chirpPulse = phasor[0] * noise[0]; chirpPulse = chirpPulse.min(1) - (chirpPulse.max(1) - 1 * 1e+09).min(1); chirpPulse = ((chirpPulse + 0.1)**2 * 12 * 2pi).cos * chirpPulse; chirpPulse = (chirpPulse - OnePole.ar(chirpPulse, exp(-2pi * (300 * SampleDur.ir)))); // fig 39.5: Random Gate randGate = WhiteNoise.ar; randGate = OnePole.ar(randGate, exp(-2pi * (3 * SampleDur.ir))); randGate = OnePole.ar(randGate, exp(-2pi * (3 * SampleDur.ir))); randGate = Clip.ar(noise.max(2) - 0.0008 * 1e+09, 0, 1); randGate = OnePole.ar(randGate, exp(-2pi * (30 * SampleDur.ir))); randGate = chirpPulse * randGate; noise[1] = LPF.ar(LPF.ar(WhiteNoise.ar,2),2); noise[1] = noise[1] * noise[1] * 500; clip = Clip.ar((phasor.sum - 1) * noise[1], -0.9, 0.1); chirpAmp = OnePole.ar(clip, exp(-2pi * (15 * SampleDur.ir))); chirpAmp = OnePole.ar(chirpAmp, exp(-2pi * (15 * SampleDur.ir))); chirpAmp = Clip.ar((chirpAmp * 500).max(0.1) - 0.1 * 1e+09, 0, 1); chirpAmp = OnePole.ar(chirpAmp, exp(-2pi * (30 * SampleDur.ir))); chirpPulse = chirpPulse * chirpAmp * 0.6; trig = (Amplitude.kr(clip)>0.03); // fig 39.7: Spark snap snap = 0!2; snap[0] = EnvGen.ar(Env.new([0,1,0], [0, 0.5]), trig); snap[0] = snap[0] * snap[0] * snap[0] * WhiteNoise.ar * 0.5; snap[1] = EnvGen.ar(Env.new([0,1,0], [0, 10/1000]), trig); snap[1] = SinOsc.ar(snap[1] * 7000 + 20); snap = snap.sum * 0.05; // fig 39.6: Spark formant formant = BPF.ar(snap, 1.8 * [4600, 7200, 480, 720], [5,5,7,8].reciprocal); formant = formant[0..1].sum * 2 + formant[2] * 1.2 + formant[3] * 2.5; formant = BPF.ar(formant, 2500, 0.5.reciprocal); // fig 39.2 Comb unit comb = DelayC.ar(InFeedback.ar(10), delaytime: (noise[1] + 20)/1000); OffsetOut.ar(10, (chirpPulse + clip + snap + OnePole.ar(comb * 0.2, exp(-2pi * (3000 * SampleDur.ir))))); Out.ar(0, comb!2); }).add; ) Synth(\electricity); ( { var input, kernel; input = SoundIn.ar(0); kernel = Mix.ar(LFSaw.ar([300,500,800,1000] * MouseX.kr(1.0, 2.0), 0, 1.0)); // must have power of two framesize Convolution.ar(input,kernel, 1024, 0.5) }.play; ) ( // must have power of two framesize- FFT size will be sorted by Convolution to be double this // maximum is currently a=8192 for FFT of size 16384 a = 2048; s = Server.local; // kernel buffer g = Buffer.alloc(s, a, 1); ) ( // random impulse response g.set(0, 1.0); 100.do({ arg i; g.set(a.rand, 1.0.rand) }); { var input, kernel; input = SoundIn.ar(0); kernel = PlayBuf.ar(1, g.bufnum,BufRateScale.kr(g.bufnum), 1, 0, 1); Convolution.ar(input, kernel, 2 * a, 0.5) }.play; )
SuperCollider
5
drichardson/examples
SuperCollider/Interesting.scd
[ "Unlicense" ]
/// <reference path="../fourslash.ts"/> // @Filename: referencesForGlobals_1.ts ////[|var [|{| "contextRangeIndex": 0 |}globalName|] = 0;|] // @Filename: referencesForGlobals_2.ts ////var y = [|globalName|]; // @Filename: tsconfig.json ////{ "files": ["referencesForGlobals_1.ts", "referencesForGlobals_2.ts"] } const [rDef, ...ranges] = test.ranges(); verify.rangesAreRenameLocations({ findInStrings: true, findInComments: true, ranges });
TypeScript
4
monciego/TypeScript
tests/cases/fourslash/server/renameInConfiguredProject.ts
[ "Apache-2.0" ]
<footer class="global-footer"> <div class="inner group"> <nav class="global-footer-navi text-smaller group"> <ul class="global-footer-navi-list"> <li><a href="<mt:SiteURL>news/">ニュース</a></li> <li><a href="<mt:SiteURL>pressrelease/">プレスリリース</a></li> <li><a href="<mt:SiteURL>event/">イベント・セミナー</a></li> </ul> <mt:SetVarBlock name="footer_pages"><mt:Pages tag="@footer"><mt:PageTitle></mt:Pages></mt:SetVarBlock> <mt:If name="footer_pages"> <ul class="global-footer-navi-list"> <mt:Pages tag="@footer"> <li><a href="<mt:PagepermaLink>"><mt:PageTitle></a></li> </mt:Pages> </ul> </mt:If> </nav> <div class="global-footer-signature"> <div class="global-footer-logo"><img src="<mt:SiteURL>images/logo.png" alt="<mt:SiteName>"></div> <div class="copyright text-xsmaller">&copy; Six Apart Ltd.</div> </div> <div class="poweredby"> <a href="https://www.movabletype.jp/beta/" target="_blank"><img src="<mt:SiteURL>images/poweredby-mt7.png" alt="Powered By Movable Type7"></a> </div> </div> </footer> <div class="spmenu-modal-overray"> <nav class="spmenu-modal-navi"> <ul> <li><a href="<mt:SiteURL>news/">ニュース</a></li> <li><a href="<mt:SiteURL>pressrelease/">プレスリリース</a></li> <li><a href="<mt:SiteURL>event/">イベント・セミナー</a></li> <mt:Pages tag="@header"> <li><a href="<mt:PagepermaLink>"><mt:PageTitle></a></li> </mt:Pages> </ul> </nav> <button class="modal-close"> <span class="modal-close-icon"></span> </button> </div>
MTML
2
movabletype/mt-theme-jungfrau
themes/jungfrau/templates/template_448.mtml
[ "MIT" ]
(* * 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. *) val compare : Type.trace -> Type.trace -> int val trace_depth : Type.trace -> int val unit_trace : Type.t -> Type.use_t -> Type.trace val rec_trace : max:int -> Type.t -> Type.use_t -> Type.trace -> Type.trace val concat_trace : max:int -> Type.trace list -> Type.trace val dummy_trace : Type.trace val reasons_of_trace : ?level:int -> Type.trace -> Reason.reason list
OCaml
4
zhangmaijun/flow
src/typing/trace.mli
[ "MIT" ]
<body class="main"> <canvas width="200" height="400" id="canvas" style="border: 1px solid black;"></canvas> <script src="tetris.js"></script> </body>
HTML
2
zakuro9715/v
examples/tetris/index.html
[ "MIT" ]
<template name="visitorNavigation"> <div class="content"> <div class="list-view"> <h4>{{_ "Navigation_History"}}</h4> <div class="visitor-navigation"> {{#if loadingNavigation}} {{_ "Loading..."}} {{else}} <div class="visitor-scroll"> <ul> {{#each pages}} <li><a href="{{navigation.page.location.href}}" target="_blank" title="{{accessDateTime}}">{{pageTitle}}</a></li> {{/each}} </ul> </div> {{/if}} </div> </div> </div> </template>
HTML
3
subramanir2143/Rocket.Chat
app/livechat/client/views/app/tabbar/visitorNavigation.html
[ "MIT" ]
# - Try to find libvterm # Once done this will define # LIBVTERM_FOUND - System has libvterm # LIBVTERM_INCLUDE_DIRS - The libvterm include directories # LIBVTERM_LIBRARIES - The libraries needed to use libvterm include(LibFindMacros) libfind_pkg_detect(LIBVTERM vterm FIND_PATH vterm.h FIND_LIBRARY vterm) libfind_process(LIBVTERM REQUIRED)
CMake
3
uga-rosa/neovim
cmake/FindLIBVTERM.cmake
[ "Vim" ]
/* reset */ ul list-style none padding 0 .border-bottom-1px, .border-top-1px position: relative &:before, &:after content: "" display: block position: absolute transform-origin: 0 0 .border-bottom-1px &:after border-bottom: 1px solid #ebebeb left: 0 bottom: 0 width: 100% transform-origin: 0 bottom .border-top-1px &:before border-top: 1px solid #ebebeb left: 0 top: 0 width: 100% transform-origin: 0 top @media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2) .border-top-1px &:before width: 200% transform: scale(.5) translateZ(0) .border-bottom-1px &:after width: 200% transform: scale(.5) translateZ(0) @media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) .border-top-1px &:before width: 300% transform: scale(.333) translateZ(0) .border-bottom-1px &:after width: 300% transform: scale(.333) translateZ(0) .container-btn margin: 2rem background-color white padding: 0.8rem border: 1px solid rgba(0, 0, 0, .1) box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1) text-align: center .picker display: none position: fixed left: 0 top: 0 z-index: 100 width: 100% height: 100% overflow: hidden text-align: center font-size: 14px background-color: rgba(37, 38, 45, .4) &.picker-fade-enter opacity: 0 &.picker-fade-enter-active opacity: 1 transition: all .3s ease-in-out &.picker-fade-exit-active opacity: 0; transition: all .3s ease-in-out .picker-panel position: absolute z-index: 600 bottom: 0 width: 100% height: 273px background: white &.picker-move-enter transform: translate3d(0, 273px, 0) &.picker-move-enter-active transform: translate3d(0, 0, 0) transition: all .3s ease-in-out &.picker-move-exit-active transform: translate3d(0, 273px, 0) transition: all .3s ease-in-out .picker-choose position: relative height: 60px color: #999 .picker-title margin: 0 line-height: 60px font-weight: normal text-align: center font-size: 18px color: #333 .confirm, .cancel position: absolute top: 6px padding: 16px font-size: 14px .confirm right: 0 color: #007bff &:active color: #5aaaff .cancel left: 0 &:active color: #c2c2c2 .picker-content position: relative top: 20px .mask-top, .mask-bottom z-index: 10 width: 100% height: 68px pointer-events: none transform: translateZ(0) .mask-top position: absolute top: 0 background: linear-gradient(to top, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)) .mask-bottom position: absolute bottom: 1px background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)) .wheel-wrapper display: flex padding: 0 16px .wheel flex: 1 width: 1% height: 173px overflow: hidden font-size: 18px .wheel-scroll padding: 0 margin-top: 68px line-height: 36px list-style: none .wheel-item list-style: none height: 36px overflow: hidden white-space: nowrap color: #333 &.wheel-disabled-item opacity: .2; .picker-footer height: 20px
Stylus
4
cym2050/better-scroll
packages/react-examples/src/pages/picker/index.styl
[ "MIT" ]
<?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <html> <title>Checks that an XSLT-generated HTML doc does not circumvent third-party cookie rules</title> <script> if (window.testRunner) { testRunner.waitUntilDone(); testRunner.dumpAsText(); testRunner.dumpChildFrames(); // Start with a clean state, as otherwise an expired cookie for this domain could affect behavior with CFNetwork. // Can be removed once rdar://problem/10080130 is fixed. if (testRunner.setPrivateBrowsingEnabled) testRunner.setPrivateBrowsingEnabled(true); testRunner.setBlockThirdPartyCookies(true); } </script> <body> <iframe src="http://localhost:8000/security/cookies/resources/set-a-cookie.php"></iframe> </body> </html> </xsl:template> </xsl:stylesheet>
XSLT
3
zealoussnow/chromium
third_party/blink/web_tests/http/tests/security/cookies/resources/third-party-cookie-blocking.xsl
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
#include <metal_stdlib> #include <simd/simd.h> using namespace metal; struct Uniforms { half4 testInputs; half4 colorGreen; half4 colorRed; }; struct Inputs { }; struct Outputs { half4 sk_FragColor [[color(0)]]; }; fragment Outputs fragmentMain(Inputs _in [[stage_in]], constant Uniforms& _uniforms [[buffer(0)]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) { Outputs _out; (void)_out; half4 expected = half4(-1.5625h, 0.0h, 0.75h, 3.375h); const half4 exponents = half4(2.0h, 3.0h, 1.0h, 1.5h); _out.sk_FragColor = ((((((pow(_uniforms.testInputs.x, 2.0h) == expected.x && all(pow(_uniforms.testInputs.xy, half2(2.0h, 3.0h)) == expected.xy)) && all(pow(_uniforms.testInputs.xyz, half3(2.0h, 3.0h, 1.0h)) == expected.xyz)) && all(pow(_uniforms.testInputs, exponents) == expected)) && 1.5625h == expected.x) && all(half2(1.5625h, 0.0h) == expected.xy)) && all(half3(1.5625h, 0.0h, 0.75h) == expected.xyz)) && all(half4(1.5625h, 0.0h, 0.75h, 3.375h) == expected) ? _uniforms.colorGreen : _uniforms.colorRed; return _out; }
Metal
3
fourgrad/skia
tests/sksl/intrinsics/Pow.metal
[ "BSD-3-Clause" ]
<html> <head><title>Test Page</title></head> <body> <p><i class="fa fa-alert"></i>Some things should be <b>inline</b>, some things shouldn't!</p> <i class="fa fa-warning"/> </body> </html>
HTML
3
0x7c48/mitmproxy
test/mitmproxy/contentviews/test_xml_html_data/inline.html
[ "MIT" ]
exports.createPages = async ({ actions, graphql, reporter }) => { const { createPage } = actions const result = await graphql(` { articles: allKontentItemArticle { nodes { elements { slug { value } } } } } `) if (result.errors) { reporter.panicOnBuild(result.errors) } result.data.articles.nodes.map(article => { createPage({ path: "/" + article.elements.slug.value, component: require.resolve(`./src/templates/article.js`), context: { slug: article.elements.slug.value, } }) }) }
JavaScript
4
pipaliyajaydip/gatsby
benchmarks/source-kontent/gatsby-node.js
[ "MIT" ]
# @ECLASS: stub.eclass # @MAINTAINER: # Random Person <[email protected]> # @SUPPORTED_EAPIS: 6 7 # @BLURB: Stub eclass for testing the UnsupportedEclassEapi result. EXPORT_FUNCTIONS src_prepare # @FUNCTION: stub_src_prepare # @USAGE: # @DESCRIPTION: # Public src_prepare stub function. stub_src_prepare() { :; }
Gentoo Eclass
3
floppym/pkgcheck
testdata/repos/eclass/eclass/stub.eclass
[ "BSD-3-Clause" ]
// Code generated by mkconsts.go. DO NOT EDIT. //go:build goexperiment.regabiargs // +build goexperiment.regabiargs package goexperiment const RegabiArgs = true const RegabiArgsInt = 1
Go
1
SSSDNSY/go
src/internal/goexperiment/exp_regabiargs_on.go
[ "BSD-3-Clause" ]
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.hadoop.mapred; import java.io.IOException; import java.util.List; import java.util.ArrayList; import java.util.Set; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.mapred.JobConf; import org.apache.hadoop.mapreduce.JobID; import org.apache.hadoop.mapreduce.TaskID; import org.apache.hadoop.mapreduce.server.jobtracker.TaskTracker; import org.apache.hadoop.mapreduce.test.system.JTProtocol; import org.apache.hadoop.mapreduce.test.system.JobInfo; import org.apache.hadoop.mapreduce.test.system.TTInfo; import org.apache.hadoop.mapreduce.test.system.TaskInfo; import org.apache.hadoop.security.UserGroupInformation; import org.apache.hadoop.test.system.DaemonProtocol; /** * Aspect class which injects the code for {@link JobTracker} class. * */ public privileged aspect JobTrackerAspect { public Configuration JobTracker.getDaemonConf() throws IOException { return conf; } /** * Method to get the read only view of the job and its associated information. * * @param jobID * id of the job for which information is required. * @return JobInfo of the job requested * @throws IOException */ public JobInfo JobTracker.getJobInfo(JobID jobID) throws IOException { JobInProgress jip = jobs.get(org.apache.hadoop.mapred.JobID .downgrade(jobID)); if (jip == null) { LOG.warn("No job present for : " + jobID); return null; } JobInfo info; synchronized (jip) { info = jip.getJobInfo(); } return info; } /** * Method to get the read only view of the task and its associated * information. * * @param taskID * @return * @throws IOException */ public TaskInfo JobTracker.getTaskInfo(TaskID taskID) throws IOException { TaskInProgress tip = getTip(org.apache.hadoop.mapred.TaskID .downgrade(taskID)); if (tip == null) { LOG.warn("No task present for : " + taskID); return null; } return getTaskInfo(tip); } public TTInfo JobTracker.getTTInfo(String trackerName) throws IOException { org.apache.hadoop.mapreduce.server.jobtracker.TaskTracker tt = taskTrackers .get(trackerName); if (tt == null) { LOG.warn("No task tracker with name : " + trackerName + " found"); return null; } TaskTrackerStatus status = tt.getStatus(); TTInfo info = new TTInfoImpl(status.trackerName, status); return info; } // XXX Below two method don't reuse getJobInfo and getTaskInfo as there is a // possibility that retire job can run and remove the job from JT memory // during // processing of the RPC call. public JobInfo[] JobTracker.getAllJobInfo() throws IOException { List<JobInfo> infoList = new ArrayList<JobInfo>(); synchronized (jobs) { for (JobInProgress jip : jobs.values()) { JobInfo info = jip.getJobInfo(); infoList.add(info); } } return (JobInfo[]) infoList.toArray(new JobInfo[infoList.size()]); } public TaskInfo[] JobTracker.getTaskInfo(JobID jobID) throws IOException { JobInProgress jip = jobs.get(org.apache.hadoop.mapred.JobID .downgrade(jobID)); if (jip == null) { LOG.warn("Unable to find job : " + jobID); return null; } List<TaskInfo> infoList = new ArrayList<TaskInfo>(); synchronized (jip) { for (TaskInProgress tip : jip.setup) { infoList.add(getTaskInfo(tip)); } for (TaskInProgress tip : jip.maps) { infoList.add(getTaskInfo(tip)); } for (TaskInProgress tip : jip.reduces) { infoList.add(getTaskInfo(tip)); } for (TaskInProgress tip : jip.cleanup) { infoList.add(getTaskInfo(tip)); } } return (TaskInfo[]) infoList.toArray(new TaskInfo[infoList.size()]); } public TTInfo[] JobTracker.getAllTTInfo() throws IOException { List<TTInfo> infoList = new ArrayList<TTInfo>(); synchronized (taskTrackers) { for (TaskTracker tt : taskTrackers.values()) { TaskTrackerStatus status = tt.getStatus(); TTInfo info = new TTInfoImpl(status.trackerName, status); infoList.add(info); } } return (TTInfo[]) infoList.toArray(new TTInfo[infoList.size()]); } public boolean JobTracker.isJobRetired(JobID id) throws IOException { return retireJobs.get( org.apache.hadoop.mapred.JobID.downgrade(id))!=null?true:false; } public String JobTracker.getJobHistoryLocationForRetiredJob( JobID id) throws IOException { String historyFile = this.getJobStatus(id).getHistoryFile(); if(historyFile == null) { throw new IOException("The retired job information for the job : " + id +" is not found"); } else { return historyFile; } } pointcut getVersionAspect(String protocol, long clientVersion) : execution(public long JobTracker.getProtocolVersion(String , long) throws IOException) && args(protocol, clientVersion); long around(String protocol, long clientVersion) : getVersionAspect(protocol, clientVersion) { if (protocol.equals(DaemonProtocol.class.getName())) { return DaemonProtocol.versionID; } else if (protocol.equals(JTProtocol.class.getName())) { return JTProtocol.versionID; } else { return proceed(protocol, clientVersion); } } /** * Point cut which monitors for the start of the jobtracker and sets the right * value if the jobtracker is started. */ pointcut jtConstructorPointCut() : call(JobTracker.new(..)); after() returning (JobTracker tracker): jtConstructorPointCut() { try { UserGroupInformation ugi = UserGroupInformation.getCurrentUser(); tracker.setUser(ugi.getShortUserName()); } catch (IOException e) { tracker.LOG.warn("Unable to get the user information for the " + "Jobtracker"); } tracker.setReady(true); } private TaskInfo JobTracker.getTaskInfo(TaskInProgress tip) { TaskStatus[] status = tip.getTaskStatuses(); if (status == null) { if (tip.isMapTask()) { status = new MapTaskStatus[]{}; } else { status = new ReduceTaskStatus[]{}; } } String[] trackers = (String[]) (tip.getActiveTasks().values()).toArray(new String[tip .getActiveTasks().values().size()]); TaskInfo info = new TaskInfoImpl(tip.getTIPId(), tip.getProgress(), tip .getActiveTasks().size(), tip.numKilledTasks(), tip .numTaskFailures(), status, (tip.isJobSetupTask() || tip .isJobCleanupTask()), trackers); return info; } }
AspectJ
5
dm20/hadoop-mapreduce
src/test/system/aop/org/apache/hadoop/mapred/JobTrackerAspect.aj
[ "Apache-2.0" ]
/home/spinalvm/hdl/riscv-compliance/work//C.LWSP.elf: file format elf32-littleriscv Disassembly of section .text.init: 80000000 <_start>: 80000000: 0001 nop 80000002: 0001 nop 80000004: 0001 nop 80000006: 0001 nop 80000008: 0001 nop 8000000a: 0001 nop 8000000c: 0001 nop 8000000e: 0001 nop 80000010: 0001 nop 80000012: 0001 nop 80000014: 0001 nop 80000016: 0001 nop 80000018: 0001 nop 8000001a: 0001 nop 8000001c: 0001 nop 8000001e: 0001 nop 80000020: 0001 nop 80000022: 0001 nop 80000024: 0001 nop 80000026: 0001 nop 80000028: 0001 nop 8000002a: 0001 nop 8000002c: 0001 nop 8000002e: 0001 nop 80000030: 0001 nop 80000032: 0001 nop 80000034: 0001 nop 80000036: 0001 nop 80000038: 0001 nop 8000003a: 0001 nop 8000003c: 0001 nop 8000003e: 0001 nop 80000040: 0001 nop 80000042: 0001 nop 80000044: 0001 nop 80000046: 0001 nop 80000048: 0001 nop 8000004a: 0001 nop 8000004c: 0001 nop 8000004e: 0001 nop 80000050: 0001 nop 80000052: 0001 nop 80000054: 0001 nop 80000056: 0001 nop 80000058: 0001 nop 8000005a: 0001 nop 8000005c: 0001 nop 8000005e: 0001 nop 80000060: 0001 nop 80000062: 0001 nop 80000064: 0001 nop 80000066: 0001 nop 80000068: 0001 nop 8000006a: 0001 nop 8000006c: 0001 nop 8000006e: 0001 nop 80000070: 0001 nop 80000072: 0001 nop 80000074: 0001 nop 80000076: 0001 nop 80000078: 0001 nop 8000007a: 0001 nop 8000007c: 0001 nop 8000007e: 0001 nop 80000080: 0001 nop 80000082: 0001 nop 80000084: 0001 nop 80000086: 0001 nop 80000088: 0001 nop 8000008a: 0001 nop 8000008c: 0001 nop 8000008e: 0001 nop 80000090: 0001 nop 80000092: 0001 nop 80000094: 0001 nop 80000096: 0001 nop 80000098: 0001 nop 8000009a: 0001 nop 8000009c: 0001 nop 8000009e: 0001 nop 800000a0: 0001 nop 800000a2: 0001 nop 800000a4: 0001 nop 800000a6: 0001 nop 800000a8: 0001 nop 800000aa: 0001 nop 800000ac: 0001 nop 800000ae: 0001 nop 800000b0: 0001 nop 800000b2: 0001 nop 800000b4: 0001 nop 800000b6: 0001 nop 800000b8: 0001 nop 800000ba: 0001 nop 800000bc: 0001 nop 800000be: 0001 nop 800000c0: 0001 nop 800000c2: 0001 nop 800000c4: 0001 nop 800000c6: 0001 nop 800000c8: 0001 nop 800000ca: 0001 nop 800000cc: 0001 nop 800000ce: 0001 nop 800000d0: 0001 nop 800000d2: 0001 nop 800000d4: 0001 nop 800000d6: 0001 nop 800000d8: 0001 nop 800000da: 0001 nop 800000dc: 0001 nop 800000de: 0001 nop 800000e0: 0001 nop 800000e2: 0001 nop 800000e4: 0001 nop 800000e6: 0001 nop 800000e8: 0001 nop 800000ea: 0001 nop 800000ec: 0001 nop 800000ee: 00001097 auipc ra,0x1 800000f2: f1208093 addi ra,ra,-238 # 80001000 <codasip_signature_start> 800000f6: 00001117 auipc sp,0x1 800000fa: f1e10113 addi sp,sp,-226 # 80001014 <test_data> 800000fe: 4202 lw tp,0(sp) 80000100: 0040a023 sw tp,0(ra) 80000104: 00001097 auipc ra,0x1 80000108: f0008093 addi ra,ra,-256 # 80001004 <test_2_res> 8000010c: 00001117 auipc sp,0x1 80000110: f0810113 addi sp,sp,-248 # 80001014 <test_data> 80000114: 4412 lw s0,4(sp) 80000116: 0080a023 sw s0,0(ra) 8000011a: 00001097 auipc ra,0x1 8000011e: eee08093 addi ra,ra,-274 # 80001008 <test_3_res> 80000122: 00001117 auipc sp,0x1 80000126: ef210113 addi sp,sp,-270 # 80001014 <test_data> 8000012a: 4822 lw a6,8(sp) 8000012c: 0100a023 sw a6,0(ra) 80000130: 00001097 auipc ra,0x1 80000134: edc08093 addi ra,ra,-292 # 8000100c <test_4_res> 80000138: 00001117 auipc sp,0x1 8000013c: edc10113 addi sp,sp,-292 # 80001014 <test_data> 80000140: 5ff6 lw t6,124(sp) 80000142: 01f0a023 sw t6,0(ra) 80000146: 00001097 auipc ra,0x1 8000014a: eca08093 addi ra,ra,-310 # 80001010 <test_5_res> 8000014e: 00001117 auipc sp,0x1 80000152: ec610113 addi sp,sp,-314 # 80001014 <test_data> 80000156: 5afe lw s5,252(sp) 80000158: 0150a023 sw s5,0(ra) 8000015c: 00001517 auipc a0,0x1 80000160: ea450513 addi a0,a0,-348 # 80001000 <codasip_signature_start> 80000164: 00001597 auipc a1,0x1 80000168: f3c58593 addi a1,a1,-196 # 800010a0 <_end> 8000016c: f0100637 lui a2,0xf0100 80000170: f2c60613 addi a2,a2,-212 # f00fff2c <_end+0x700fee8c> 80000174 <complience_halt_loop>: 80000174: 00b50c63 beq a0,a1,8000018c <complience_halt_break> 80000178: 4554 lw a3,12(a0) 8000017a: c214 sw a3,0(a2) 8000017c: 4514 lw a3,8(a0) 8000017e: c214 sw a3,0(a2) 80000180: 4154 lw a3,4(a0) 80000182: c214 sw a3,0(a2) 80000184: 4114 lw a3,0(a0) 80000186: c214 sw a3,0(a2) 80000188: 0541 addi a0,a0,16 8000018a: b7ed j 80000174 <complience_halt_loop> 8000018c <complience_halt_break>: 8000018c: f0100537 lui a0,0xf0100 80000190: f2050513 addi a0,a0,-224 # f00fff20 <_end+0x700fee80> 80000194: 00052023 sw zero,0(a0) ... Disassembly of section .data: 80001000 <codasip_signature_start>: 80001000: ffff 0xffff 80001002: ffff 0xffff 80001004 <test_2_res>: 80001004: ffff 0xffff 80001006: ffff 0xffff 80001008 <test_3_res>: 80001008: ffff 0xffff 8000100a: ffff 0xffff 8000100c <test_4_res>: 8000100c: ffff 0xffff 8000100e: ffff 0xffff 80001010 <test_5_res>: 80001010: ffff 0xffff 80001012: ffff 0xffff 80001014 <test_data>: 80001014: 0000 unimp 80001016: 0000 unimp 80001018: 0001 nop 8000101a: 0000 unimp 8000101c: 0002 c.slli zero,0x0 8000101e: 0000 unimp 80001020: 00000003 lb zero,0(zero) # 0 <_start-0x80000000> 80001024: 0004 0x4 80001026: 0000 unimp 80001028: 0005 c.nop 1 8000102a: 0000 unimp 8000102c: 0006 c.slli zero,0x1 8000102e: 0000 unimp 80001030: 00000007 0x7 80001034: 0008 0x8 80001036: 0000 unimp 80001038: 0009 c.nop 2 8000103a: 0000 unimp 8000103c: 000a c.slli zero,0x2 8000103e: 0000 unimp 80001040: 0000000b 0xb 80001044: 000c 0xc 80001046: 0000 unimp 80001048: 000d c.nop 3 8000104a: 0000 unimp 8000104c: 000e c.slli zero,0x3 8000104e: 0000 unimp 80001050: 0000000f fence unknown,unknown 80001054: 0010 0x10 80001056: 0000 unimp 80001058: 0011 c.nop 4 8000105a: 0000 unimp 8000105c: 0012 c.slli zero,0x4 8000105e: 0000 unimp 80001060: 00000013 nop 80001064: 0014 0x14 80001066: 0000 unimp 80001068: 0015 c.nop 5 8000106a: 0000 unimp 8000106c: 0016 c.slli zero,0x5 8000106e: 0000 unimp 80001070: 00000017 auipc zero,0x0 80001074: 0018 0x18 80001076: 0000 unimp 80001078: 0019 c.nop 6 8000107a: 0000 unimp 8000107c: 001a c.slli zero,0x6 8000107e: 0000 unimp 80001080: 0000001b 0x1b 80001084: 001c 0x1c 80001086: 0000 unimp 80001088: 001d c.nop 7 8000108a: 0000 unimp 8000108c: 001e c.slli zero,0x7 8000108e: 0000 unimp 80001090: 001f 0000 0000 0x1f ...
ObjDump
1
cbrune/VexRiscv
src/test/resources/asm/C.LWSP.elf.objdump
[ "MIT" ]
#!/usr/bin/env bash # Copyright 2014 The Flutter Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. if [[ -n "$CIRRUS_CI" && -n "$GCLOUD_CREDENTIALS" ]]; then echo "$GCLOUD_CREDENTIALS" | base64 --decode | docker login -u _json_key --password-stdin https://gcr.io else gcloud auth print-access-token | sudo docker login -u oauth2accesstoken --password-stdin https://gcr.io fi
Shell
4
Mayb3Nots/flutter
dev/ci/docker_linux/docker_login.sh
[ "BSD-3-Clause" ]
#!/usr/bin/env bash set -o errexit -o nounset -o pipefail # Make sure that we don't accidentally include GPL licenced files gpl_term="General Public License" gpl_excludes=( # Snippet expands to GPL, but is not under GPL ":(exclude)assets/syntaxes/01_Packages/Matlab/Snippets/Octave-function.sublime-snippet" # 'gpl_term' matches itself :D ":(exclude)tests/scripts/license-checks.sh" # Contains a reference to GPL, but is not under GPL ":(exclude)tests/syntax-tests/source/Java Server Page (JSP)/LICENSE.md" ) gpl_occurances=$(git grep --recurse-submodules "${gpl_term}" -- "${gpl_excludes[@]}" || true) if [ -z "${gpl_occurances}" ]; then echo "PASS: No files under GPL were found" else echo "FAIL: GPL:ed code is not compatible with bat, but occurances of '${gpl_term}' were found:" echo "${gpl_occurances}" exit 1 fi
Shell
4
ka7/bat
tests/scripts/license-checks.sh
[ "Apache-2.0", "MIT" ]
#!/usr/bin/pike // -*- mode: pike -*- // $Id: regexmatch.pike,v 1.1 2004-05-19 18:11:27 bfulgham Exp $ // http://www.bagley.org/~doug/shootout/ // from: Fredrik Noring constant area = "([0-9][0-9][0-9]|\\([0-9][0-9][0-9]\\))"; constant exch = "([0-9][0-9][0-9])"; constant last = "([0-9][0-9][0-9][0-9])"; void main(int argc, array(string) argv) { Regexp r = Regexp("^[^0-9\\(]*"+area+" "+exch+"[ -]"+last+"[^0-9]*$"); array(string) phones = Stdio.stdin->read()/"\n"; int n = (int)argv[-1]; int count = 0; while(n--) foreach(phones, string phone) if(array(string) parts = r->split(phone)) if(n == 0) if(parts[0][0] == '(') write("%d: %s %s-%s\n", ++count, @parts); else write("%d: (%s) %s-%s\n", ++count, @parts); }
Pike
4
kragen/shootout
bench/regexmatch/regexmatch.pike
[ "BSD-3-Clause" ]
# frozen_string_literal: true raise "I should never be loaded"
Ruby
0
mdesantis/rails
railties/test/fixtures/lib/generators/model_generator.rb
[ "MIT" ]
#!/usr/bin/env zsh # Copyright (c) 2016, Zsolt Lengyel # Modifications copyright (c) 2016, Sebastian Gniazdowski # # This script opens a new, temporary tmux pane and runs n-history. When # a selection is made, the result (history entry) is pasted back into # original tmux pane, and the temporary pane is closed. This allows to # use local history on remote machines. # # To use, put this line to your ~/.tmux.conf. The tool is invoked with: # Ctrl+b h # # bind h run-shell -b "$ZNT_REPO_DIR/znt-tmux.zsh" # # get and save the current active tmux pane id active_pane=$(tmux display -p -F ':#{session_id}:#I:#P:#{pane_active}:#{window_active}:#{session_attached}' ) a_active_pane=("${(@s/:/)active_pane}") active_session=${a_active_pane[2]//$} active_window=$a_active_pane[3] active_pane=$a_active_pane[4] # set variables for upcoming window tmux setenv -t $active_session:$active_window.$active_pane "ZNT_TMUX_MODE" 1 tmux setenv -t $active_session:$active_window.$active_pane "ZNT_TMUX_ORIGIN_SESSION" "$active_session" tmux setenv -t $active_session:$active_window.$active_pane "ZNT_TMUX_ORIGIN_WINDOW" "$active_window" tmux setenv -t $active_session:$active_window.$active_pane "ZNT_TMUX_ORIGIN_PANE" "$active_pane" # create a new window in the active session and call it znt-hist tmux new-window -t $active_session: -n znt-hist # unset the variables, so only above single window has them tmux setenv -u -t $active_session:$active_window.$active_pane "ZNT_TMUX_MODE" tmux setenv -u -t $active_session:$active_window.$active_pane "ZNT_TMUX_ORIGIN_SESSION" tmux setenv -u -t $active_session:$active_window.$active_pane "ZNT_TMUX_ORIGIN_WINDOW" tmux setenv -u -t $active_session:$active_window.$active_pane "ZNT_TMUX_ORIGIN_PANE" # znt's session id znt_active_pane=$(tmux display -p -F ':#{session_id}:#I:#P:#{pane_active}:#{window_active}:#{session_attached}' ) znt_a_active_pane=("${(@s/:/)znt_active_pane}") znt_active_session=${znt_a_active_pane[2]//$} znt_active_window=$znt_a_active_pane[3] znt_active_pane=$znt_a_active_pane[4] # call znt tmux send -t "$znt_active_session:$znt_active_window.$znt_active_pane" n-history ENTER
Shell
4
chensanle/ohmyzsh
plugins/zsh-navigation-tools/znt-tmux.zsh
[ "MIT" ]
// compile-flags: -O #![crate_type = "lib"] // CHECK-LABEL: @array_clone #[no_mangle] pub fn array_clone(a: &[u8; 2]) -> [u8; 2] { // CHECK-NOT: getelementptr // CHECK-NOT: load i8 // CHECK-NOT: zext // CHECK-NOT: shl // CHECK: load i16 // CHECK-NEXT: ret i16 a.clone() }
Rust
4
ohno418/rust
src/test/codegen/array-clone.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
#! ./parrot-nqp # workaround nqp-rx not generating :main Q:PIR { .end .sub 'main' :main .const "Sub" $P0 = "MAIN" .tailcall $P0() .end .sub '' :anon }; sub MAIN() { pir::load_bytecode("opsc.pbc"); pir::load_bytecode("Getopt/Obj.pbc"); my $opts := get_options(); return usage() if $opts<help>; #TODO: figure out how to generate line numbers # $emit_lines is currently ignored my $emit_lines := !?$opts<no-lines>; my $core := ?$opts<core>; my $debug := ?$opts<debug>; my $quiet := ?$opts<quiet>; my @files; if $core { @files := < src/ops/core.ops src/ops/bit.ops src/ops/cmp.ops src/ops/io.ops src/ops/math.ops src/ops/object.ops src/ops/pmc.ops src/ops/set.ops src/ops/string.ops src/ops/sys.ops src/ops/var.ops src/ops/experimental.ops >; } elsif $opts<dynamic> { @files.push( $opts<dynamic>); } else { return usage(); } my $trans := Ops::Trans::C.new(); my $start_time := pir::time__N(); my $lib := $core ?? Ops::OpLib.new( :skip_file('src/ops/ops.skip'), :quiet($quiet) ) !! undef; my $f := Ops::File.new(|@files, :oplib($lib), :core($core), :quiet($quiet)); $quiet || say("# Ops parsed in { pir::sprintf__ssp("%.3f", [pir::time__N() - $start_time] ) } seconds."); my $emitter := Ops::Emitter.new( :ops_file($f), :trans($trans), :script('ops2c.nqp'), :file(@files[0]), :flags( hash( core => $core, quiet => $quiet ) ), ); unless $debug { $emitter.print_ops_num_files() if $core; $emitter.print_c_header_files(); $emitter.print_c_source_file(); } } sub get_options() { my $getopts := pir::new(Getopt::Obj); $getopts.notOptStop(); # build core ops $getopts.add_option('core', 'c'); # build the dynops in one .ops file $getopts.add_option('dynamic', 'd', 'String'); # don't write to any files $getopts.add_option('debug', 'g'); # don't add line numbers to generated files (not implemented) $getopts.add_option('no-lines', 'n'); # print anemic usage information and exit $getopts.add_option('help', 'h'); # suppress timing and debug output on stdout $getopts.add_option('quiet', 'q'); $getopts.get_options(pir::getinterp__p()[2]); } sub usage() { say("This is parrot-ops2c, part of the Parrot VM's build infrastructure. normal options: -c --core generate the C code for core ops (must be run from within Parrot's build directory) -d --dynamic <file.ops> generate the C code for the dynamic ops in a single .ops file -q --quiet don't report any non-error messages -h --help print this usage information -n --no-lines do not print #line directives in generated C code (line numbers are not currently supported) debugging options: -g --debug perform all processing but do not write to any files "); pir::exit(0); } # Monkey patching module Getopt::Obj { multi method add_option($long, $short, $type?) { my $opt := self.add(); $opt.long($long); $opt.short($short); $opt.type($type) if $type; } } # vim: expandtab shiftwidth=4 ft=perl6:
Perl6
4
winnit-myself/Wifie
compilers/opsc/ops2c.nqp
[ "Artistic-2.0" ]
import { imageDemoTest } from '../../../tests/shared/imageTest'; describe('Menu image', () => { imageDemoTest('menu'); });
TypeScript
4
chnliquan/ant-design
components/menu/__tests__/image.test.ts
[ "MIT" ]
(set-info :smt-lib-version 2.6) (set-logic QF_UFLRA) (set-info :source |CPAchecker with k-induction on SV-COMP14 program using MathSAT5, submitted by Philipp Wendler, http://cpachecker.sosy-lab.org|) (set-info :category "industrial") (set-info :status unsat) (define-fun _1 () Bool true) (declare-fun |main::lk12@3| () Real) (declare-fun |main::lk11@4| () Real) (declare-fun |main::lk12@2| () Real) (declare-fun |main::p10@1| () Real) (declare-fun |main::lk3@4| () Real) (declare-fun |main::lk4@7| () Real) (declare-fun |main::lk12@4| () Real) (declare-fun |main::p1@1| () Real) (declare-fun |main::lk1@5| () Real) (declare-fun |main::lk3@5| () Real) (declare-fun |main::lk3@6| () Real) (declare-fun |main::lk9@6| () Real) (declare-fun |main::lk13@4| () Real) (declare-fun |main::lk11@6| () Real) (declare-fun |main::lk1@2| () Real) (declare-fun |main::p3@1| () Real) (declare-fun |main::p11@1| () Real) (declare-fun |main::lk6@7| () Real) (declare-fun |main::lk5@7| () Real) (declare-fun |main::lk2@6| () Real) (declare-fun |main::lk10@7| () Real) (declare-fun |main::lk1@7| () Real) (declare-fun |main::p5@1| () Real) (declare-fun |main::lk5@3| () Real) (declare-fun |main::lk3@2| () Real) (declare-fun |main::lk8@4| () Real) (declare-fun |main::lk7@4| () Real) (declare-fun |main::lk3@7| () Real) (declare-fun |main::lk7@5| () Real) (declare-fun |main::lk1@3| () Real) (declare-fun |main::lk2@3| () Real) (declare-fun |main::lk5@2| () Real) (declare-fun |main::lk9@5| () Real) (declare-fun |main::lk7@3| () Real) (declare-fun |main::lk4@6| () Real) (declare-fun |main::lk3@3| () Real) (declare-fun |main::lk7@2| () Real) (declare-fun |main::lk12@5| () Real) (declare-fun |main::lk9@3| () Real) (declare-fun |main::lk6@6| () Real) (declare-fun |main::p13@1| () Real) (declare-fun |main::lk5@5| () Real) (declare-fun |main::lk9@2| () Real) (declare-fun |main::lk1@6| () Real) (declare-fun |main::p7@1| () Real) (declare-fun |main::lk4@5| () Real) (declare-fun |main::lk11@3| () Real) (declare-fun |main::lk8@6| () Real) (declare-fun |main::lk13@5| () Real) (declare-fun |main::lk11@2| () Real) (declare-fun |main::lk12@7| () Real) (declare-fun |main::p9@1| () Real) (declare-fun |main::lk13@3| () Real) (declare-fun |main::lk13@2| () Real) (declare-fun |main::lk1@4| () Real) (declare-fun |main::lk10@6| () Real) (declare-fun |main::p2@1| () Real) (declare-fun |main::lk2@5| () Real) (declare-fun |main::lk13@6| () Real) (declare-fun |main::lk9@7| () Real) (declare-fun |main::lk2@4| () Real) (declare-fun |main::p4@1| () Real) (declare-fun |main::lk4@3| () Real) (declare-fun |main::lk2@2| () Real) (declare-fun |main::lk11@7| () Real) (declare-fun |main::lk2@7| () Real) (declare-fun |main::p6@1| () Real) (declare-fun |main::lk6@5| () Real) (declare-fun |main::cond@3| () Real) (declare-fun |main::lk5@4| () Real) (declare-fun |main::lk4@2| () Real) (declare-fun |main::lk6@4| () Real) (declare-fun |main::lk11@5| () Real) (declare-fun |main::lk8@5| () Real) (declare-fun |main::lk6@3| () Real) (declare-fun |main::lk8@7| () Real) (declare-fun |main::cond@2| () Real) (declare-fun |main::lk6@2| () Real) (declare-fun |main::lk10@5| () Real) (declare-fun |main::lk8@3| () Real) (declare-fun |main::lk5@6| () Real) (declare-fun |main::lk7@7| () Real) (declare-fun |main::p12@1| () Real) (declare-fun |main::lk4@4| () Real) (declare-fun |main::lk8@2| () Real) (declare-fun |main::lk10@3| () Real) (declare-fun |main::lk7@6| () Real) (declare-fun |main::lk9@4| () Real) (declare-fun |main::lk10@4| () Real) (declare-fun |main::lk12@6| () Real) (declare-fun |main::lk10@2| () Real) (declare-fun |main::p8@1| () Real) (define-fun _7 () Real 0) (define-fun _115 () Real |main::cond@3|) (define-fun _116 () Bool (= _115 _7)) (define-fun _117 () Real 1) (define-fun _120 () Bool (not _116)) (define-fun _122 () Real |main::lk1@3|) (define-fun _125 () Real |main::lk2@3|) (define-fun _128 () Real |main::lk3@3|) (define-fun _131 () Real |main::lk4@3|) (define-fun _134 () Real |main::lk5@3|) (define-fun _137 () Real |main::lk6@3|) (define-fun _140 () Real |main::lk7@3|) (define-fun _143 () Real |main::lk8@3|) (define-fun _146 () Real |main::lk9@3|) (define-fun _149 () Real |main::lk10@3|) (define-fun _152 () Real |main::lk11@3|) (define-fun _155 () Real |main::lk12@3|) (define-fun _158 () Real |main::lk13@3|) (define-fun _167 () Real |main::lk1@4|) (define-fun _170 () Bool (= _122 _167)) (define-fun _179 () Real |main::lk2@4|) (define-fun _182 () Bool (= _125 _179)) (define-fun _191 () Real |main::lk3@4|) (define-fun _194 () Bool (= _128 _191)) (define-fun _203 () Real |main::lk4@4|) (define-fun _206 () Bool (= _131 _203)) (define-fun _215 () Real |main::lk5@4|) (define-fun _218 () Bool (= _134 _215)) (define-fun _227 () Real |main::lk6@4|) (define-fun _230 () Bool (= _137 _227)) (define-fun _239 () Real |main::lk7@4|) (define-fun _242 () Bool (= _140 _239)) (define-fun _251 () Real |main::lk8@4|) (define-fun _254 () Bool (= _143 _251)) (define-fun _263 () Real |main::lk9@4|) (define-fun _266 () Bool (= _146 _263)) (define-fun _275 () Real |main::lk10@4|) (define-fun _278 () Bool (= _149 _275)) (define-fun _287 () Real |main::lk11@4|) (define-fun _290 () Bool (= _152 _287)) (define-fun _299 () Real |main::lk12@4|) (define-fun _302 () Bool (= _155 _299)) (define-fun _311 () Real |main::lk13@4|) (define-fun _314 () Bool (= _158 _311)) (define-fun _323 () Real |main::lk1@5|) (define-fun _324 () Bool (= _323 _7)) (define-fun _335 () Real |main::lk2@5|) (define-fun _336 () Bool (= _335 _7)) (define-fun _347 () Real |main::lk3@5|) (define-fun _348 () Bool (= _347 _7)) (define-fun _359 () Real |main::lk4@5|) (define-fun _360 () Bool (= _359 _7)) (define-fun _371 () Real |main::lk5@5|) (define-fun _372 () Bool (= _371 _7)) (define-fun _383 () Real |main::lk6@5|) (define-fun _384 () Bool (= _383 _7)) (define-fun _395 () Real |main::lk7@5|) (define-fun _396 () Bool (= _395 _7)) (define-fun _407 () Real |main::lk8@5|) (define-fun _408 () Bool (= _407 _7)) (define-fun _419 () Real |main::lk9@5|) (define-fun _420 () Bool (= _419 _7)) (define-fun _431 () Real |main::lk10@5|) (define-fun _432 () Bool (= _431 _7)) (define-fun _443 () Real |main::lk11@5|) (define-fun _444 () Bool (= _443 _7)) (define-fun _455 () Real |main::lk12@5|) (define-fun _456 () Bool (= _455 _7)) (define-fun _467 () Real |main::lk13@5|) (define-fun _468 () Bool (= _467 _7)) (define-fun _552 () Real |main::cond@2|) (define-fun _553 () Bool (= _552 _7)) (define-fun _555 () Bool (not _553)) (define-fun _556 () Real |main::lk1@2|) (define-fun _557 () Bool (= _556 _7)) (define-fun _558 () Bool (and _555 _557)) (define-fun _559 () Real |main::lk2@2|) (define-fun _560 () Bool (= _559 _7)) (define-fun _561 () Bool (and _558 _560)) (define-fun _562 () Real |main::lk3@2|) (define-fun _563 () Bool (= _562 _7)) (define-fun _564 () Bool (and _561 _563)) (define-fun _565 () Real |main::lk4@2|) (define-fun _566 () Bool (= _565 _7)) (define-fun _567 () Bool (and _564 _566)) (define-fun _568 () Real |main::lk5@2|) (define-fun _569 () Bool (= _568 _7)) (define-fun _570 () Bool (and _567 _569)) (define-fun _571 () Real |main::lk6@2|) (define-fun _572 () Bool (= _571 _7)) (define-fun _573 () Bool (and _570 _572)) (define-fun _574 () Real |main::lk7@2|) (define-fun _575 () Bool (= _574 _7)) (define-fun _576 () Bool (and _573 _575)) (define-fun _577 () Real |main::lk8@2|) (define-fun _578 () Bool (= _577 _7)) (define-fun _579 () Bool (and _576 _578)) (define-fun _580 () Real |main::lk9@2|) (define-fun _581 () Bool (= _580 _7)) (define-fun _582 () Bool (and _579 _581)) (define-fun _583 () Real |main::lk10@2|) (define-fun _584 () Bool (= _583 _7)) (define-fun _585 () Bool (and _582 _584)) (define-fun _586 () Real |main::lk11@2|) (define-fun _587 () Bool (= _586 _7)) (define-fun _588 () Bool (and _585 _587)) (define-fun _589 () Real |main::lk12@2|) (define-fun _590 () Bool (= _589 _7)) (define-fun _591 () Bool (and _588 _590)) (define-fun _592 () Real |main::lk13@2|) (define-fun _593 () Bool (= _592 _7)) (define-fun _594 () Bool (and _591 _593)) (define-fun _595 () Real |main::p1@1|) (define-fun _596 () Bool (= _595 _7)) (define-fun _597 () Bool (not _596)) (define-fun _599 () Bool (and _594 _597)) (define-fun _600 () Bool (and _594 _596)) (define-fun _601 () Bool (= _122 _117)) (define-fun _602 () Bool (and _599 _601)) (define-fun _603 () Bool (= _122 _556)) (define-fun _604 () Bool (and _600 _603)) (define-fun _605 () Bool (or _602 _604)) (define-fun _606 () Real |main::p2@1|) (define-fun _607 () Bool (= _606 _7)) (define-fun _608 () Bool (not _607)) (define-fun _610 () Bool (and _605 _608)) (define-fun _611 () Bool (and _605 _607)) (define-fun _612 () Bool (= _125 _117)) (define-fun _613 () Bool (and _610 _612)) (define-fun _614 () Bool (= _125 _559)) (define-fun _615 () Bool (and _611 _614)) (define-fun _616 () Bool (or _613 _615)) (define-fun _617 () Real |main::p3@1|) (define-fun _618 () Bool (= _617 _7)) (define-fun _619 () Bool (not _618)) (define-fun _621 () Bool (and _616 _619)) (define-fun _622 () Bool (and _616 _618)) (define-fun _623 () Bool (= _128 _117)) (define-fun _624 () Bool (and _621 _623)) (define-fun _625 () Bool (= _128 _562)) (define-fun _626 () Bool (and _622 _625)) (define-fun _627 () Bool (or _624 _626)) (define-fun _628 () Real |main::p4@1|) (define-fun _629 () Bool (= _628 _7)) (define-fun _630 () Bool (not _629)) (define-fun _632 () Bool (and _627 _630)) (define-fun _633 () Bool (and _627 _629)) (define-fun _634 () Bool (= _131 _117)) (define-fun _635 () Bool (and _632 _634)) (define-fun _636 () Bool (= _131 _565)) (define-fun _637 () Bool (and _633 _636)) (define-fun _638 () Bool (or _635 _637)) (define-fun _639 () Real |main::p5@1|) (define-fun _640 () Bool (= _639 _7)) (define-fun _641 () Bool (not _640)) (define-fun _643 () Bool (and _638 _641)) (define-fun _644 () Bool (and _638 _640)) (define-fun _645 () Bool (= _134 _117)) (define-fun _646 () Bool (and _643 _645)) (define-fun _647 () Bool (= _134 _568)) (define-fun _648 () Bool (and _644 _647)) (define-fun _649 () Bool (or _646 _648)) (define-fun _650 () Real |main::p6@1|) (define-fun _651 () Bool (= _650 _7)) (define-fun _652 () Bool (not _651)) (define-fun _654 () Bool (and _649 _652)) (define-fun _655 () Bool (and _649 _651)) (define-fun _656 () Bool (= _137 _117)) (define-fun _657 () Bool (and _654 _656)) (define-fun _658 () Bool (= _137 _571)) (define-fun _659 () Bool (and _655 _658)) (define-fun _660 () Bool (or _657 _659)) (define-fun _661 () Real |main::p7@1|) (define-fun _662 () Bool (= _661 _7)) (define-fun _663 () Bool (not _662)) (define-fun _665 () Bool (and _660 _663)) (define-fun _666 () Bool (and _660 _662)) (define-fun _667 () Bool (= _140 _117)) (define-fun _668 () Bool (and _665 _667)) (define-fun _669 () Bool (= _140 _574)) (define-fun _670 () Bool (and _666 _669)) (define-fun _671 () Bool (or _668 _670)) (define-fun _672 () Real |main::p8@1|) (define-fun _673 () Bool (= _672 _7)) (define-fun _674 () Bool (not _673)) (define-fun _676 () Bool (and _671 _674)) (define-fun _677 () Bool (and _671 _673)) (define-fun _678 () Bool (= _143 _117)) (define-fun _679 () Bool (and _676 _678)) (define-fun _680 () Bool (= _143 _577)) (define-fun _681 () Bool (and _677 _680)) (define-fun _682 () Bool (or _679 _681)) (define-fun _683 () Real |main::p9@1|) (define-fun _684 () Bool (= _683 _7)) (define-fun _685 () Bool (not _684)) (define-fun _687 () Bool (and _682 _685)) (define-fun _688 () Bool (and _682 _684)) (define-fun _689 () Bool (= _146 _117)) (define-fun _690 () Bool (and _687 _689)) (define-fun _691 () Bool (= _146 _580)) (define-fun _692 () Bool (and _688 _691)) (define-fun _693 () Bool (or _690 _692)) (define-fun _694 () Real |main::p10@1|) (define-fun _695 () Bool (= _694 _7)) (define-fun _696 () Bool (not _695)) (define-fun _698 () Bool (and _693 _696)) (define-fun _699 () Bool (and _693 _695)) (define-fun _700 () Bool (= _149 _117)) (define-fun _701 () Bool (and _698 _700)) (define-fun _702 () Bool (= _149 _583)) (define-fun _703 () Bool (and _699 _702)) (define-fun _704 () Bool (or _701 _703)) (define-fun _705 () Real |main::p11@1|) (define-fun _706 () Bool (= _705 _7)) (define-fun _707 () Bool (not _706)) (define-fun _709 () Bool (and _704 _707)) (define-fun _710 () Bool (and _704 _706)) (define-fun _711 () Bool (= _152 _117)) (define-fun _712 () Bool (and _709 _711)) (define-fun _713 () Bool (= _152 _586)) (define-fun _714 () Bool (and _710 _713)) (define-fun _715 () Bool (or _712 _714)) (define-fun _716 () Real |main::p12@1|) (define-fun _717 () Bool (= _716 _7)) (define-fun _718 () Bool (not _717)) (define-fun _720 () Bool (and _715 _718)) (define-fun _721 () Bool (and _715 _717)) (define-fun _722 () Bool (= _155 _117)) (define-fun _723 () Bool (and _720 _722)) (define-fun _724 () Bool (= _155 _589)) (define-fun _725 () Bool (and _721 _724)) (define-fun _726 () Bool (or _723 _725)) (define-fun _727 () Real |main::p13@1|) (define-fun _728 () Bool (= _727 _7)) (define-fun _729 () Bool (not _728)) (define-fun _731 () Bool (and _726 _729)) (define-fun _732 () Bool (and _726 _728)) (define-fun _733 () Bool (= _158 _117)) (define-fun _734 () Bool (and _731 _733)) (define-fun _735 () Bool (= _158 _592)) (define-fun _736 () Bool (and _732 _735)) (define-fun _737 () Bool (or _734 _736)) (define-fun _738 () Bool (and _597 _737)) (define-fun _739 () Bool (and _596 _737)) (define-fun _743 () Bool (and _601 _738)) (define-fun _744 () Bool (= _167 _7)) (define-fun _745 () Bool (and _743 _744)) (define-fun _746 () Bool (and _170 _739)) (define-fun _747 () Bool (or _745 _746)) (define-fun _748 () Bool (and _608 _747)) (define-fun _749 () Bool (and _607 _747)) (define-fun _753 () Bool (and _612 _748)) (define-fun _754 () Bool (= _179 _7)) (define-fun _755 () Bool (and _753 _754)) (define-fun _756 () Bool (and _182 _749)) (define-fun _757 () Bool (or _755 _756)) (define-fun _758 () Bool (and _619 _757)) (define-fun _759 () Bool (and _618 _757)) (define-fun _763 () Bool (and _623 _758)) (define-fun _764 () Bool (= _191 _7)) (define-fun _765 () Bool (and _763 _764)) (define-fun _766 () Bool (and _194 _759)) (define-fun _767 () Bool (or _765 _766)) (define-fun _768 () Bool (and _630 _767)) (define-fun _769 () Bool (and _629 _767)) (define-fun _773 () Bool (and _634 _768)) (define-fun _774 () Bool (= _203 _7)) (define-fun _775 () Bool (and _773 _774)) (define-fun _776 () Bool (and _206 _769)) (define-fun _777 () Bool (or _775 _776)) (define-fun _778 () Bool (and _641 _777)) (define-fun _779 () Bool (and _640 _777)) (define-fun _783 () Bool (and _645 _778)) (define-fun _784 () Bool (= _215 _7)) (define-fun _785 () Bool (and _783 _784)) (define-fun _786 () Bool (and _218 _779)) (define-fun _787 () Bool (or _785 _786)) (define-fun _788 () Bool (and _652 _787)) (define-fun _789 () Bool (and _651 _787)) (define-fun _793 () Bool (and _656 _788)) (define-fun _794 () Bool (= _227 _7)) (define-fun _795 () Bool (and _793 _794)) (define-fun _796 () Bool (and _230 _789)) (define-fun _797 () Bool (or _795 _796)) (define-fun _798 () Bool (and _663 _797)) (define-fun _799 () Bool (and _662 _797)) (define-fun _803 () Bool (and _667 _798)) (define-fun _804 () Bool (= _239 _7)) (define-fun _805 () Bool (and _803 _804)) (define-fun _806 () Bool (and _242 _799)) (define-fun _807 () Bool (or _805 _806)) (define-fun _808 () Bool (and _674 _807)) (define-fun _809 () Bool (and _673 _807)) (define-fun _813 () Bool (and _678 _808)) (define-fun _814 () Bool (= _251 _7)) (define-fun _815 () Bool (and _813 _814)) (define-fun _816 () Bool (and _254 _809)) (define-fun _817 () Bool (or _815 _816)) (define-fun _818 () Bool (and _685 _817)) (define-fun _819 () Bool (and _684 _817)) (define-fun _823 () Bool (and _689 _818)) (define-fun _824 () Bool (= _263 _7)) (define-fun _825 () Bool (and _823 _824)) (define-fun _826 () Bool (and _266 _819)) (define-fun _827 () Bool (or _825 _826)) (define-fun _828 () Bool (and _696 _827)) (define-fun _829 () Bool (and _695 _827)) (define-fun _833 () Bool (and _700 _828)) (define-fun _834 () Bool (= _275 _7)) (define-fun _835 () Bool (and _833 _834)) (define-fun _836 () Bool (and _278 _829)) (define-fun _837 () Bool (or _835 _836)) (define-fun _838 () Bool (and _707 _837)) (define-fun _839 () Bool (and _706 _837)) (define-fun _843 () Bool (and _711 _838)) (define-fun _844 () Bool (= _287 _7)) (define-fun _845 () Bool (and _843 _844)) (define-fun _846 () Bool (and _290 _839)) (define-fun _847 () Bool (or _845 _846)) (define-fun _848 () Bool (and _718 _847)) (define-fun _849 () Bool (and _717 _847)) (define-fun _853 () Bool (and _722 _848)) (define-fun _854 () Bool (= _299 _7)) (define-fun _855 () Bool (and _853 _854)) (define-fun _856 () Bool (and _302 _849)) (define-fun _857 () Bool (or _855 _856)) (define-fun _858 () Bool (and _729 _857)) (define-fun _859 () Bool (and _728 _857)) (define-fun _863 () Bool (and _733 _858)) (define-fun _864 () Bool (= _311 _7)) (define-fun _865 () Bool (and _863 _864)) (define-fun _866 () Bool (and _314 _859)) (define-fun _867 () Bool (or _865 _866)) (define-fun _869 () Bool (and _120 _867)) (define-fun _912 () Bool (and _324 _869)) (define-fun _913 () Bool (and _336 _912)) (define-fun _914 () Bool (and _348 _913)) (define-fun _915 () Bool (and _360 _914)) (define-fun _916 () Bool (and _372 _915)) (define-fun _917 () Bool (and _384 _916)) (define-fun _918 () Bool (and _396 _917)) (define-fun _919 () Bool (and _408 _918)) (define-fun _920 () Bool (and _420 _919)) (define-fun _921 () Bool (and _432 _920)) (define-fun _922 () Bool (and _444 _921)) (define-fun _923 () Bool (and _456 _922)) (define-fun _924 () Bool (and _468 _923)) (define-fun _925 () Bool (and _597 _924)) (define-fun _926 () Bool (and _596 _924)) (define-fun _927 () Real |main::lk1@6|) (define-fun _928 () Bool (= _927 _117)) (define-fun _929 () Bool (and _925 _928)) (define-fun _930 () Bool (= _323 _927)) (define-fun _931 () Bool (and _926 _930)) (define-fun _932 () Bool (or _929 _931)) (define-fun _933 () Bool (and _608 _932)) (define-fun _934 () Bool (and _607 _932)) (define-fun _935 () Real |main::lk2@6|) (define-fun _936 () Bool (= _935 _117)) (define-fun _937 () Bool (and _933 _936)) (define-fun _938 () Bool (= _335 _935)) (define-fun _939 () Bool (and _934 _938)) (define-fun _940 () Bool (or _937 _939)) (define-fun _941 () Bool (and _619 _940)) (define-fun _942 () Bool (and _618 _940)) (define-fun _943 () Real |main::lk3@6|) (define-fun _944 () Bool (= _943 _117)) (define-fun _945 () Bool (and _941 _944)) (define-fun _946 () Bool (= _347 _943)) (define-fun _947 () Bool (and _942 _946)) (define-fun _948 () Bool (or _945 _947)) (define-fun _949 () Bool (and _630 _948)) (define-fun _950 () Bool (and _629 _948)) (define-fun _951 () Real |main::lk4@6|) (define-fun _952 () Bool (= _951 _117)) (define-fun _953 () Bool (and _949 _952)) (define-fun _954 () Bool (= _359 _951)) (define-fun _955 () Bool (and _950 _954)) (define-fun _956 () Bool (or _953 _955)) (define-fun _957 () Bool (and _641 _956)) (define-fun _958 () Bool (and _640 _956)) (define-fun _959 () Real |main::lk5@6|) (define-fun _960 () Bool (= _959 _117)) (define-fun _961 () Bool (and _957 _960)) (define-fun _962 () Bool (= _371 _959)) (define-fun _963 () Bool (and _958 _962)) (define-fun _964 () Bool (or _961 _963)) (define-fun _965 () Bool (and _652 _964)) (define-fun _966 () Bool (and _651 _964)) (define-fun _967 () Real |main::lk6@6|) (define-fun _968 () Bool (= _967 _117)) (define-fun _969 () Bool (and _965 _968)) (define-fun _970 () Bool (= _383 _967)) (define-fun _971 () Bool (and _966 _970)) (define-fun _972 () Bool (or _969 _971)) (define-fun _973 () Bool (and _663 _972)) (define-fun _974 () Bool (and _662 _972)) (define-fun _975 () Real |main::lk7@6|) (define-fun _976 () Bool (= _975 _117)) (define-fun _977 () Bool (and _973 _976)) (define-fun _978 () Bool (= _395 _975)) (define-fun _979 () Bool (and _974 _978)) (define-fun _980 () Bool (or _977 _979)) (define-fun _981 () Bool (and _674 _980)) (define-fun _982 () Bool (and _673 _980)) (define-fun _983 () Real |main::lk8@6|) (define-fun _984 () Bool (= _983 _117)) (define-fun _985 () Bool (and _981 _984)) (define-fun _986 () Bool (= _407 _983)) (define-fun _987 () Bool (and _982 _986)) (define-fun _988 () Bool (or _985 _987)) (define-fun _989 () Bool (and _685 _988)) (define-fun _990 () Bool (and _684 _988)) (define-fun _991 () Real |main::lk9@6|) (define-fun _992 () Bool (= _991 _117)) (define-fun _993 () Bool (and _989 _992)) (define-fun _994 () Bool (= _419 _991)) (define-fun _995 () Bool (and _990 _994)) (define-fun _996 () Bool (or _993 _995)) (define-fun _997 () Bool (and _696 _996)) (define-fun _998 () Bool (and _695 _996)) (define-fun _999 () Real |main::lk10@6|) (define-fun _1000 () Bool (= _999 _117)) (define-fun _1001 () Bool (and _997 _1000)) (define-fun _1002 () Bool (= _431 _999)) (define-fun _1003 () Bool (and _998 _1002)) (define-fun _1004 () Bool (or _1001 _1003)) (define-fun _1005 () Bool (and _707 _1004)) (define-fun _1006 () Bool (and _706 _1004)) (define-fun _1007 () Real |main::lk11@6|) (define-fun _1008 () Bool (= _1007 _117)) (define-fun _1009 () Bool (and _1005 _1008)) (define-fun _1010 () Bool (= _443 _1007)) (define-fun _1011 () Bool (and _1006 _1010)) (define-fun _1012 () Bool (or _1009 _1011)) (define-fun _1013 () Bool (and _718 _1012)) (define-fun _1014 () Bool (and _717 _1012)) (define-fun _1015 () Real |main::lk12@6|) (define-fun _1016 () Bool (= _1015 _117)) (define-fun _1017 () Bool (and _1013 _1016)) (define-fun _1018 () Bool (= _455 _1015)) (define-fun _1019 () Bool (and _1014 _1018)) (define-fun _1020 () Bool (or _1017 _1019)) (define-fun _1021 () Bool (and _729 _1020)) (define-fun _1022 () Bool (and _728 _1020)) (define-fun _1023 () Real |main::lk13@6|) (define-fun _1024 () Bool (= _1023 _117)) (define-fun _1025 () Bool (and _1021 _1024)) (define-fun _1026 () Bool (= _467 _1023)) (define-fun _1027 () Bool (and _1022 _1026)) (define-fun _1028 () Bool (or _1025 _1027)) (define-fun _1029 () Bool (and _597 _1028)) (define-fun _1030 () Bool (and _596 _1028)) (define-fun _1034 () Bool (and _928 _1029)) (define-fun _1063 () Real |main::lk1@7|) (define-fun _1064 () Bool (= _1063 _7)) (define-fun _1065 () Bool (and _1034 _1064)) (define-fun _1066 () Bool (= _927 _1063)) (define-fun _1067 () Bool (and _1030 _1066)) (define-fun _1068 () Bool (or _1065 _1067)) (define-fun _1069 () Bool (and _608 _1068)) (define-fun _1070 () Bool (and _607 _1068)) (define-fun _1074 () Bool (and _936 _1069)) (define-fun _1091 () Real |main::lk2@7|) (define-fun _1092 () Bool (= _1091 _7)) (define-fun _1093 () Bool (and _1074 _1092)) (define-fun _1094 () Bool (= _935 _1091)) (define-fun _1095 () Bool (and _1070 _1094)) (define-fun _1096 () Bool (or _1093 _1095)) (define-fun _1097 () Bool (and _619 _1096)) (define-fun _1098 () Bool (and _618 _1096)) (define-fun _1102 () Bool (and _944 _1097)) (define-fun _1114 () Real |main::lk3@7|) (define-fun _1115 () Bool (= _1114 _7)) (define-fun _1116 () Bool (and _1102 _1115)) (define-fun _1117 () Bool (= _943 _1114)) (define-fun _1118 () Bool (and _1098 _1117)) (define-fun _1119 () Bool (or _1116 _1118)) (define-fun _1120 () Bool (and _630 _1119)) (define-fun _1121 () Bool (and _629 _1119)) (define-fun _1125 () Bool (and _952 _1120)) (define-fun _1136 () Real |main::lk4@7|) (define-fun _1137 () Bool (= _1136 _7)) (define-fun _1138 () Bool (and _1125 _1137)) (define-fun _1139 () Bool (= _951 _1136)) (define-fun _1140 () Bool (and _1121 _1139)) (define-fun _1141 () Bool (or _1138 _1140)) (define-fun _1142 () Bool (and _641 _1141)) (define-fun _1143 () Bool (and _640 _1141)) (define-fun _1147 () Bool (and _960 _1142)) (define-fun _1157 () Real |main::lk5@7|) (define-fun _1158 () Bool (= _1157 _7)) (define-fun _1159 () Bool (and _1147 _1158)) (define-fun _1160 () Bool (= _959 _1157)) (define-fun _1161 () Bool (and _1143 _1160)) (define-fun _1162 () Bool (or _1159 _1161)) (define-fun _1163 () Bool (and _652 _1162)) (define-fun _1164 () Bool (and _651 _1162)) (define-fun _1168 () Bool (and _968 _1163)) (define-fun _1177 () Real |main::lk6@7|) (define-fun _1178 () Bool (= _1177 _7)) (define-fun _1179 () Bool (and _1168 _1178)) (define-fun _1180 () Bool (= _967 _1177)) (define-fun _1181 () Bool (and _1164 _1180)) (define-fun _1182 () Bool (or _1179 _1181)) (define-fun _1183 () Bool (and _663 _1182)) (define-fun _1184 () Bool (and _662 _1182)) (define-fun _1188 () Bool (and _976 _1183)) (define-fun _1196 () Real |main::lk7@7|) (define-fun _1197 () Bool (= _1196 _7)) (define-fun _1198 () Bool (and _1188 _1197)) (define-fun _1199 () Bool (= _975 _1196)) (define-fun _1200 () Bool (and _1184 _1199)) (define-fun _1201 () Bool (or _1198 _1200)) (define-fun _1202 () Bool (and _674 _1201)) (define-fun _1203 () Bool (and _673 _1201)) (define-fun _1207 () Bool (and _984 _1202)) (define-fun _1214 () Real |main::lk8@7|) (define-fun _1215 () Bool (= _1214 _7)) (define-fun _1216 () Bool (and _1207 _1215)) (define-fun _1217 () Bool (= _983 _1214)) (define-fun _1218 () Bool (and _1203 _1217)) (define-fun _1219 () Bool (or _1216 _1218)) (define-fun _1220 () Bool (and _685 _1219)) (define-fun _1221 () Bool (and _684 _1219)) (define-fun _1225 () Bool (and _992 _1220)) (define-fun _1231 () Real |main::lk9@7|) (define-fun _1232 () Bool (= _1231 _7)) (define-fun _1233 () Bool (and _1225 _1232)) (define-fun _1234 () Bool (= _991 _1231)) (define-fun _1235 () Bool (and _1221 _1234)) (define-fun _1236 () Bool (or _1233 _1235)) (define-fun _1237 () Bool (and _696 _1236)) (define-fun _1238 () Bool (and _695 _1236)) (define-fun _1242 () Bool (and _1000 _1237)) (define-fun _1247 () Real |main::lk10@7|) (define-fun _1248 () Bool (= _1247 _7)) (define-fun _1249 () Bool (and _1242 _1248)) (define-fun _1250 () Bool (= _999 _1247)) (define-fun _1251 () Bool (and _1238 _1250)) (define-fun _1252 () Bool (or _1249 _1251)) (define-fun _1253 () Bool (and _707 _1252)) (define-fun _1254 () Bool (and _706 _1252)) (define-fun _1258 () Bool (and _1008 _1253)) (define-fun _1274 () Real |main::lk11@7|) (define-fun _1275 () Bool (= _1274 _7)) (define-fun _1276 () Bool (and _1258 _1275)) (define-fun _1277 () Bool (= _1007 _1274)) (define-fun _1278 () Bool (and _1254 _1277)) (define-fun _1279 () Bool (or _1276 _1278)) (define-fun _1280 () Bool (and _718 _1279)) (define-fun _1281 () Bool (and _717 _1279)) (define-fun _1285 () Bool (and _1016 _1280)) (define-fun _1300 () Real |main::lk12@7|) (define-fun _1301 () Bool (= _1300 _7)) (define-fun _1302 () Bool (and _1285 _1301)) (define-fun _1303 () Bool (= _1015 _1300)) (define-fun _1304 () Bool (and _1281 _1303)) (define-fun _1305 () Bool (or _1302 _1304)) (define-fun _1306 () Bool (and _729 _1305)) (define-fun _1408 () Bool (not _1069)) (define-fun _1409 () Bool (or _936 _1408)) (define-fun _1411 () Bool (not _1029)) (define-fun _1412 () Bool (or _928 _1411)) (define-fun _1413 () Bool (and _1409 _1412)) (define-fun _1415 () Bool (not _1120)) (define-fun _1416 () Bool (or _952 _1415)) (define-fun _1417 () Bool (and _1413 _1416)) (define-fun _1419 () Bool (not _1306)) (define-fun _1420 () Bool (or _1024 _1419)) (define-fun _1421 () Bool (and _1417 _1420)) (define-fun _1423 () Bool (not _1280)) (define-fun _1424 () Bool (or _1016 _1423)) (define-fun _1425 () Bool (and _1421 _1424)) (define-fun _1427 () Bool (not _1220)) (define-fun _1428 () Bool (or _992 _1427)) (define-fun _1429 () Bool (and _1425 _1428)) (define-fun _1431 () Bool (not _1097)) (define-fun _1432 () Bool (or _944 _1431)) (define-fun _1433 () Bool (and _1429 _1432)) (define-fun _1435 () Bool (not _1142)) (define-fun _1436 () Bool (or _960 _1435)) (define-fun _1437 () Bool (and _1433 _1436)) (define-fun _1439 () Bool (not _1237)) (define-fun _1440 () Bool (or _1000 _1439)) (define-fun _1441 () Bool (and _1437 _1440)) (define-fun _1443 () Bool (not _1163)) (define-fun _1444 () Bool (or _968 _1443)) (define-fun _1445 () Bool (and _1441 _1444)) (define-fun _1447 () Bool (not _1202)) (define-fun _1448 () Bool (or _984 _1447)) (define-fun _1449 () Bool (and _1445 _1448)) (define-fun _1451 () Bool (not _1183)) (define-fun _1452 () Bool (or _976 _1451)) (define-fun _1453 () Bool (and _1449 _1452)) (define-fun _1455 () Bool (not _1253)) (define-fun _1456 () Bool (or _1008 _1455)) (define-fun _1457 () Bool (and _1453 _1456)) (define-fun _1458 () Bool (not _1457)) (assert _1) (assert _1458) (check-sat) (exit)
SMT
2
livinlife6751/infer
sledge/test/smt/QF_UFLRA/cpachecker-induction-svcomp14/cpachecker-induction.test_locks_13_true-unreach-call.c.smt2
[ "MIT" ]
--- eleventyComputed: c: "{{ a | fail }}{{ b | fail }}" a: "a" b: "b" ---
Liquid
3
AleksandrHovhannisyan/eleventy
test/stubs-computed-symbolparse/test.liquid
[ "MIT" ]
<GameProjectFile> <PropertyGroup Type="Node" Name="captain_jack" ID="a216914d-c0d7-49f6-8da3-6a19dd0dc55f" Version="0.0.0.1" /> <Content ctype="GameProjectContent"> <Content> <Animation Duration="54" Speed="0.4"> <Timeline ActionTag="-331241139" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="-331241139" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.4998408" Y="0.5001529" /> <PointFrame FrameIndex="6" X="0.5003185" Y="0.5004587" /> <PointFrame FrameIndex="13" X="0.4998408" Y="0.5001529" /> <PointFrame FrameIndex="14" X="0.4998408" Y="0.5001529" /> <PointFrame FrameIndex="15" X="0.5001593" Y="0.5003058" /> <PointFrame FrameIndex="16" X="0.5" Y="0.5" /> <PointFrame FrameIndex="18" X="0.5001593" Y="0.5003058" /> <PointFrame FrameIndex="19" X="0.5006369" Y="0.5004587" /> <PointFrame FrameIndex="20" X="0.5" Y="0.5" /> <PointFrame FrameIndex="21" X="0.4998408" Y="0.5001529" /> <PointFrame FrameIndex="22" X="0.4998408" Y="0.5001529" /> <PointFrame FrameIndex="23" X="0.4998408" Y="0.5001529" /> <PointFrame FrameIndex="24" X="0.4998408" Y="0.5006116" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5001529" /> <PointFrame FrameIndex="28" X="0.5" Y="0.4998471" /> <PointFrame FrameIndex="29" X="0.5" Y="0.5001529" /> <PointFrame FrameIndex="30" X="0.4998408" Y="0.5001529" /> <PointFrame FrameIndex="32" X="0.5003185" Y="0.5004587" /> <PointFrame FrameIndex="33" X="0.5001593" Y="0.5003058" /> <PointFrame FrameIndex="34" X="0.5" Y="0.5" /> <PointFrame FrameIndex="38" X="0.5001593" Y="0.5003058" /> <PointFrame FrameIndex="39" X="0.5006369" Y="0.5004587" /> <PointFrame FrameIndex="43" X="0.5001593" Y="0.5003058" /> <PointFrame FrameIndex="44" X="0.5006369" Y="0.5004587" /> <PointFrame FrameIndex="47" X="0.5001593" Y="0.5003058" /> <PointFrame FrameIndex="48" X="0.5006369" Y="0.5004587" /> <PointFrame FrameIndex="52" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.4998408" Y="0.5001529" /> </Timeline> <Timeline ActionTag="-331241140" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-3.5" Y="58.55" /> <PointFrame FrameIndex="6" X="-3.5" Y="57.75" /> <PointFrame FrameIndex="13" Tween="False" X="-3.5" Y="58.55" /> <PointFrame FrameIndex="14" X="-3.5" Y="58.55" /> <PointFrame FrameIndex="15" X="-1.8" Y="61.35" /> <PointFrame FrameIndex="16" X="-21.2" Y="51.4" /> <PointFrame FrameIndex="18" X="-21.7" Y="50.95" /> <PointFrame FrameIndex="19" X="-21.2" Y="50.15" /> <PointFrame FrameIndex="20" X="-21.2" Y="51.4" /> <PointFrame FrameIndex="21" Tween="False" X="-3.5" Y="58.55" /> <PointFrame FrameIndex="22" X="-3.5" Y="58.55" /> <PointFrame FrameIndex="23" X="-3.5" Y="58.55" /> <PointFrame FrameIndex="24" Tween="False" X="-12.3" Y="57.4" /> <PointFrame FrameIndex="26" Tween="False" X="-9.5" Y="58" /> <PointFrame FrameIndex="28" Tween="False" X="-6.65" Y="58.6" /> <PointFrame FrameIndex="29" Tween="False" X="-5.3" Y="58.9" /> <PointFrame FrameIndex="30" X="-3.5" Y="58.55" /> <PointFrame FrameIndex="32" X="-3.5" Y="57.75" /> <PointFrame FrameIndex="33" X="-1.8" Y="61.35" /> <PointFrame FrameIndex="34" X="-21.2" Y="51.4" /> <PointFrame FrameIndex="38" X="-21.7" Y="50.95" /> <PointFrame FrameIndex="39" X="-21.2" Y="50.15" /> <PointFrame FrameIndex="43" X="-21.7" Y="50.95" /> <PointFrame FrameIndex="44" X="-21.2" Y="50.15" /> <PointFrame FrameIndex="47" X="-21.7" Y="50.95" /> <PointFrame FrameIndex="48" X="-21.2" Y="50.15" /> <PointFrame FrameIndex="52" X="-21.2" Y="51.4" /> <PointFrame FrameIndex="54" Tween="False" X="-3.5" Y="58.55" /> </Timeline> <Timeline ActionTag="-331241140" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="6" X="0.2621155" Y="0.2621155" /> <PointFrame FrameIndex="13" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="14" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="15" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="16" X="0.2619934" Y="0.2619934" /> <PointFrame FrameIndex="18" X="0.2619781" Y="0.2619781" /> <PointFrame FrameIndex="19" X="0.262085" Y="0.262085" /> <PointFrame FrameIndex="20" X="0.2619934" Y="0.2619934" /> <PointFrame FrameIndex="21" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="22" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="23" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="24" Tween="False" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="26" Tween="False" X="0.2621155" Y="0.2621155" /> <PointFrame FrameIndex="28" Tween="False" X="0.2621002" Y="0.2621002" /> <PointFrame FrameIndex="29" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="30" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="32" X="0.2621155" Y="0.2621155" /> <PointFrame FrameIndex="33" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="34" X="0.2619934" Y="0.2619934" /> <PointFrame FrameIndex="38" X="0.2619781" Y="0.2619781" /> <PointFrame FrameIndex="39" X="0.262085" Y="0.262085" /> <PointFrame FrameIndex="43" X="0.2619781" Y="0.2619781" /> <PointFrame FrameIndex="44" X="0.262085" Y="0.262085" /> <PointFrame FrameIndex="47" X="0.2619781" Y="0.2619781" /> <PointFrame FrameIndex="48" X="0.262085" Y="0.262085" /> <PointFrame FrameIndex="52" X="0.2619934" Y="0.2619934" /> <PointFrame FrameIndex="54" Tween="False" X="0.262146" Y="0.262146" /> </Timeline> <Timeline ActionTag="-331241140" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="1.754105" Y="1.754105" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="-0.252655" Y="-0.252655" /> <PointFrame FrameIndex="16" X="-11.01271" Y="-11.01271" /> <PointFrame FrameIndex="18" X="-12.26398" Y="-12.26398" /> <PointFrame FrameIndex="19" X="-4.249863" Y="-4.249863" /> <PointFrame FrameIndex="20" X="-11.01271" Y="-11.01271" /> <PointFrame FrameIndex="21" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="22" X="0" Y="0" /> <PointFrame FrameIndex="23" X="0" Y="0" /> <PointFrame FrameIndex="24" Tween="False" X="-2.064117" Y="-2.064117" /> <PointFrame FrameIndex="26" Tween="False" X="-2.047531" Y="-2.047531" /> <PointFrame FrameIndex="28" Tween="False" X="-2.25531" Y="-2.25531" /> <PointFrame FrameIndex="29" Tween="False" X="-2.381866" Y="-2.381866" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="32" X="1.754105" Y="1.754105" /> <PointFrame FrameIndex="33" X="-0.252655" Y="-0.252655" /> <PointFrame FrameIndex="34" X="-11.01271" Y="-11.01271" /> <PointFrame FrameIndex="38" X="-12.26398" Y="-12.26398" /> <PointFrame FrameIndex="39" X="-4.249863" Y="-4.249863" /> <PointFrame FrameIndex="43" X="-12.26398" Y="-12.26398" /> <PointFrame FrameIndex="44" X="-4.249863" Y="-4.249863" /> <PointFrame FrameIndex="47" X="-12.26398" Y="-12.26398" /> <PointFrame FrameIndex="48" X="-4.249863" Y="-4.249863" /> <PointFrame FrameIndex="52" X="-11.01271" Y="-11.01271" /> <PointFrame FrameIndex="54" Tween="False" X="0" Y="0" /> </Timeline> <Timeline ActionTag="-331241140" FrameType="EventFrame"> <StringFrame FrameIndex="54" Value="player1_end" /> </Timeline> <Timeline ActionTag="-331241137" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="-331241137" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.4976563" Y="0.4964286" /> <PointFrame FrameIndex="6" X="0.496875" Y="0.4955357" /> <PointFrame FrameIndex="13" X="0.496875" Y="0.4973214" /> <PointFrame FrameIndex="14" X="0.4976563" Y="0.4964286" /> <PointFrame FrameIndex="15" X="0.4992188" Y="0.49375" /> <PointFrame FrameIndex="16" X="0.496875" Y="0.4973214" /> <PointFrame FrameIndex="18" X="0.4960938" Y="0.4964286" /> <PointFrame FrameIndex="19" X="0.4960938" Y="0.4973214" /> <PointFrame FrameIndex="20" X="0.4984375" Y="0.4964286" /> <PointFrame FrameIndex="21" X="0.4976563" Y="0.4964286" /> <PointFrame FrameIndex="22" X="0.4976563" Y="0.4964286" /> <PointFrame FrameIndex="23" X="0.4992188" Y="0.4982143" /> <PointFrame FrameIndex="24" X="0.4976563" Y="0.4964286" /> <PointFrame FrameIndex="26" X="0.4976563" Y="0.4955357" /> <PointFrame FrameIndex="28" X="0.4976563" Y="0.4964286" /> <PointFrame FrameIndex="29" X="0.4976563" Y="0.4955357" /> <PointFrame FrameIndex="30" X="0.4976563" Y="0.4964286" /> <PointFrame FrameIndex="32" X="0.4976563" Y="0.4982143" /> <PointFrame FrameIndex="33" X="0.4992188" Y="0.49375" /> <PointFrame FrameIndex="34" X="0.496875" Y="0.4973214" /> <PointFrame FrameIndex="38" X="0.4960938" Y="0.4964286" /> <PointFrame FrameIndex="39" X="0.4960938" Y="0.4973214" /> <PointFrame FrameIndex="43" X="0.4960938" Y="0.4964286" /> <PointFrame FrameIndex="44" X="0.4960938" Y="0.4973214" /> <PointFrame FrameIndex="47" X="0.4960938" Y="0.4964286" /> <PointFrame FrameIndex="48" X="0.4960938" Y="0.4973214" /> <PointFrame FrameIndex="52" X="0.4984375" Y="0.4964286" /> <PointFrame FrameIndex="54" X="0.4976563" Y="0.4964286" /> </Timeline> <Timeline ActionTag="-331241138" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-19.4" Y="39.25" /> <PointFrame FrameIndex="6" X="-19.15" Y="38.05" /> <PointFrame FrameIndex="13" Tween="False" X="-18.75" Y="39.55" /> <PointFrame FrameIndex="14" X="-19.4" Y="39.25" /> <PointFrame FrameIndex="15" X="-18" Y="40.3" /> <PointFrame FrameIndex="16" X="-21" Y="40" /> <PointFrame FrameIndex="18" X="-22.05" Y="38.35" /> <PointFrame FrameIndex="19" X="-22" Y="37.9" /> <PointFrame FrameIndex="20" X="-21.65" Y="40.65" /> <PointFrame FrameIndex="21" Tween="False" X="-19.4" Y="39.25" /> <PointFrame FrameIndex="22" X="-19.4" Y="39.25" /> <PointFrame FrameIndex="23" X="-19.25" Y="39.65" /> <PointFrame FrameIndex="24" Tween="False" X="-19.4" Y="39.25" /> <PointFrame FrameIndex="26" Tween="False" X="-19.4" Y="38.55" /> <PointFrame FrameIndex="28" Tween="False" X="-19.4" Y="37.8" /> <PointFrame FrameIndex="29" Tween="False" X="-19.4" Y="37.45" /> <PointFrame FrameIndex="30" X="-19.4" Y="39.25" /> <PointFrame FrameIndex="32" X="-19" Y="37.75" /> <PointFrame FrameIndex="33" X="-18" Y="40.3" /> <PointFrame FrameIndex="34" X="-21" Y="40" /> <PointFrame FrameIndex="38" X="-22.05" Y="38.35" /> <PointFrame FrameIndex="39" X="-22" Y="37.9" /> <PointFrame FrameIndex="43" X="-22.05" Y="38.35" /> <PointFrame FrameIndex="44" X="-22" Y="37.9" /> <PointFrame FrameIndex="47" X="-22.05" Y="38.35" /> <PointFrame FrameIndex="48" X="-22" Y="37.9" /> <PointFrame FrameIndex="52" X="-21.65" Y="40.65" /> <PointFrame FrameIndex="54" Tween="False" X="-19.4" Y="39.25" /> </Timeline> <Timeline ActionTag="-331241138" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="6" X="0.2620697" Y="0.2620697" /> <PointFrame FrameIndex="13" Tween="False" X="0.2359314" Y="0.2359314" /> <PointFrame FrameIndex="14" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="15" X="0.2618866" Y="0.2618866" /> <PointFrame FrameIndex="16" X="0.2618103" Y="0.2618103" /> <PointFrame FrameIndex="18" X="0.2618713" Y="0.2618713" /> <PointFrame FrameIndex="19" X="0.2618103" Y="0.2618103" /> <PointFrame FrameIndex="20" X="0.2618866" Y="0.2618866" /> <PointFrame FrameIndex="21" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="22" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="23" X="0.2621155" Y="0.2621155" /> <PointFrame FrameIndex="24" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="26" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="28" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="29" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="30" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="32" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="33" X="0.2618866" Y="0.2618866" /> <PointFrame FrameIndex="34" X="0.2618103" Y="0.2618103" /> <PointFrame FrameIndex="38" X="0.2618713" Y="0.2618713" /> <PointFrame FrameIndex="39" X="0.2618103" Y="0.2618103" /> <PointFrame FrameIndex="43" X="0.2618713" Y="0.2618713" /> <PointFrame FrameIndex="44" X="0.2618103" Y="0.2618103" /> <PointFrame FrameIndex="47" X="0.2618713" Y="0.2618713" /> <PointFrame FrameIndex="48" X="0.2618103" Y="0.2618103" /> <PointFrame FrameIndex="52" X="0.2618866" Y="0.2618866" /> <PointFrame FrameIndex="54" Tween="False" X="0.262146" Y="0.262146" /> </Timeline> <Timeline ActionTag="-331241138" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="-5.000305" Y="-5.000305" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="-17.27513" Y="-17.27513" /> <PointFrame FrameIndex="16" X="-25.04597" Y="-25.04597" /> <PointFrame FrameIndex="18" X="-18.02614" Y="-18.02614" /> <PointFrame FrameIndex="19" X="-25.04597" Y="-25.04597" /> <PointFrame FrameIndex="20" X="-19.02902" Y="-19.02902" /> <PointFrame FrameIndex="21" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="22" X="0" Y="0" /> <PointFrame FrameIndex="23" X="1.25087" Y="1.25087" /> <PointFrame FrameIndex="24" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="26" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="28" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="29" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="32" X="-8.509903" Y="-8.509903" /> <PointFrame FrameIndex="33" X="-17.27513" Y="-17.27513" /> <PointFrame FrameIndex="34" X="-25.04597" Y="-25.04597" /> <PointFrame FrameIndex="38" X="-18.02614" Y="-18.02614" /> <PointFrame FrameIndex="39" X="-25.04597" Y="-25.04597" /> <PointFrame FrameIndex="43" X="-18.02614" Y="-18.02614" /> <PointFrame FrameIndex="44" X="-25.04597" Y="-25.04597" /> <PointFrame FrameIndex="47" X="-18.02614" Y="-18.02614" /> <PointFrame FrameIndex="48" X="-25.04597" Y="-25.04597" /> <PointFrame FrameIndex="52" X="-19.02902" Y="-19.02902" /> <PointFrame FrameIndex="54" Tween="False" X="0" Y="0" /> </Timeline> <Timeline ActionTag="-331241135" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="-331241135" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="6" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="13" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="14" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="15" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="16" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="18" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="19" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="20" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="21" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="22" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="23" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="24" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="26" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="28" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="29" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="30" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="32" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="33" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="34" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="38" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="39" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="43" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="44" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="47" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="48" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="52" X="0.5025" Y="0.5016129" /> <PointFrame FrameIndex="54" X="0.5025" Y="0.5016129" /> </Timeline> <Timeline ActionTag="-331241136" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="11.45" Y="7.7" /> <PointFrame FrameIndex="6" X="11.45" Y="7.7" /> <PointFrame FrameIndex="13" Tween="False" X="11.45" Y="7.7" /> <PointFrame FrameIndex="14" X="11.45" Y="7.7" /> <PointFrame FrameIndex="15" X="11.45" Y="7.7" /> <PointFrame FrameIndex="16" X="11.45" Y="7.7" /> <PointFrame FrameIndex="18" X="11.45" Y="7.7" /> <PointFrame FrameIndex="19" X="11.45" Y="7.7" /> <PointFrame FrameIndex="20" X="11.45" Y="7.7" /> <PointFrame FrameIndex="21" Tween="False" X="11.45" Y="7.7" /> <PointFrame FrameIndex="22" X="11.45" Y="7.7" /> <PointFrame FrameIndex="23" X="11.45" Y="7.7" /> <PointFrame FrameIndex="24" Tween="False" X="11.45" Y="7.9" /> <PointFrame FrameIndex="26" Tween="False" X="11.45" Y="7.95" /> <PointFrame FrameIndex="28" Tween="False" X="11.45" Y="8" /> <PointFrame FrameIndex="29" Tween="False" X="11.45" Y="8" /> <PointFrame FrameIndex="30" X="11.45" Y="7.7" /> <PointFrame FrameIndex="32" X="11.45" Y="7.7" /> <PointFrame FrameIndex="33" X="11.45" Y="7.7" /> <PointFrame FrameIndex="34" X="11.45" Y="7.7" /> <PointFrame FrameIndex="38" X="11.45" Y="7.7" /> <PointFrame FrameIndex="39" X="11.45" Y="7.7" /> <PointFrame FrameIndex="43" X="11.45" Y="7.7" /> <PointFrame FrameIndex="44" X="11.45" Y="7.7" /> <PointFrame FrameIndex="47" X="11.45" Y="7.7" /> <PointFrame FrameIndex="48" X="11.45" Y="7.7" /> <PointFrame FrameIndex="52" X="11.45" Y="7.7" /> <PointFrame FrameIndex="54" Tween="False" X="11.45" Y="7.7" /> </Timeline> <Timeline ActionTag="-331241136" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="6" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="13" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="14" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="15" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="16" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="18" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="19" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="20" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="21" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="22" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="23" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="24" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="26" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="28" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="29" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="30" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="32" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="33" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="34" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="38" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="39" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="43" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="44" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="47" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="48" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="52" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="54" Tween="False" X="0.262146" Y="0.262146" /> </Timeline> <Timeline ActionTag="-331241136" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="0" Y="0" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="0" Y="0" /> <PointFrame FrameIndex="16" X="0" Y="0" /> <PointFrame FrameIndex="18" X="0" Y="0" /> <PointFrame FrameIndex="19" X="0" Y="0" /> <PointFrame FrameIndex="20" X="0" Y="0" /> <PointFrame FrameIndex="21" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="22" X="0" Y="0" /> <PointFrame FrameIndex="23" X="0" Y="0" /> <PointFrame FrameIndex="24" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="26" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="28" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="29" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="32" X="0" Y="0" /> <PointFrame FrameIndex="33" X="0" Y="0" /> <PointFrame FrameIndex="34" X="0" Y="0" /> <PointFrame FrameIndex="38" X="0" Y="0" /> <PointFrame FrameIndex="39" X="0" Y="0" /> <PointFrame FrameIndex="43" X="0" Y="0" /> <PointFrame FrameIndex="44" X="0" Y="0" /> <PointFrame FrameIndex="47" X="0" Y="0" /> <PointFrame FrameIndex="48" X="0" Y="0" /> <PointFrame FrameIndex="52" X="0" Y="0" /> <PointFrame FrameIndex="54" Tween="False" X="0" Y="0" /> </Timeline> <Timeline ActionTag="-331241133" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="-331241133" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="6" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="13" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="14" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="15" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="16" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="18" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="19" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="20" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="21" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="22" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="23" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="24" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="26" X="0.5" Y="0.5" /> <PointFrame FrameIndex="28" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="29" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="30" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="32" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="33" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="34" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="38" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="39" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="43" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="44" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="47" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="48" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="52" X="0.4991667" Y="0.4992188" /> <PointFrame FrameIndex="54" X="0.4991667" Y="0.4992188" /> </Timeline> <Timeline ActionTag="-331241134" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="9.9" Y="18.1" /> <PointFrame FrameIndex="6" X="9.9" Y="18.1" /> <PointFrame FrameIndex="13" Tween="False" X="9.9" Y="18.1" /> <PointFrame FrameIndex="14" X="9.9" Y="18.1" /> <PointFrame FrameIndex="15" X="9.9" Y="18.1" /> <PointFrame FrameIndex="16" X="9.9" Y="18.1" /> <PointFrame FrameIndex="18" X="9.9" Y="18.1" /> <PointFrame FrameIndex="19" X="9.9" Y="18.1" /> <PointFrame FrameIndex="20" X="9.9" Y="18.1" /> <PointFrame FrameIndex="21" Tween="False" X="9.9" Y="18.1" /> <PointFrame FrameIndex="22" X="9.9" Y="18.1" /> <PointFrame FrameIndex="23" X="9.9" Y="18.1" /> <PointFrame FrameIndex="24" Tween="False" X="9.75" Y="17.85" /> <PointFrame FrameIndex="26" Tween="False" X="9.8" Y="17.85" /> <PointFrame FrameIndex="28" Tween="False" X="9.8" Y="17.9" /> <PointFrame FrameIndex="29" Tween="False" X="9.75" Y="17.95" /> <PointFrame FrameIndex="30" X="9.9" Y="18.1" /> <PointFrame FrameIndex="32" X="9.9" Y="18.1" /> <PointFrame FrameIndex="33" X="9.9" Y="18.1" /> <PointFrame FrameIndex="34" X="9.9" Y="18.1" /> <PointFrame FrameIndex="38" X="9.9" Y="18.1" /> <PointFrame FrameIndex="39" X="9.9" Y="18.1" /> <PointFrame FrameIndex="43" X="9.9" Y="18.1" /> <PointFrame FrameIndex="44" X="9.9" Y="18.1" /> <PointFrame FrameIndex="47" X="9.9" Y="18.1" /> <PointFrame FrameIndex="48" X="9.9" Y="18.1" /> <PointFrame FrameIndex="52" X="9.9" Y="18.1" /> <PointFrame FrameIndex="54" Tween="False" X="9.9" Y="18.1" /> </Timeline> <Timeline ActionTag="-331241134" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="6" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="13" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="14" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="15" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="16" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="18" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="19" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="20" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="21" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="22" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="23" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="24" Tween="False" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="26" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="28" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="29" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="30" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="32" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="33" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="34" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="38" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="39" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="43" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="44" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="47" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="48" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="52" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="54" Tween="False" X="0.262146" Y="0.262146" /> </Timeline> <Timeline ActionTag="-331241134" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="0" Y="0" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="0" Y="0" /> <PointFrame FrameIndex="16" X="0" Y="0" /> <PointFrame FrameIndex="18" X="0" Y="0" /> <PointFrame FrameIndex="19" X="0" Y="0" /> <PointFrame FrameIndex="20" X="0" Y="0" /> <PointFrame FrameIndex="21" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="22" X="0" Y="0" /> <PointFrame FrameIndex="23" X="0" Y="0" /> <PointFrame FrameIndex="24" Tween="False" X="0.3295898" Y="0.3295898" /> <PointFrame FrameIndex="26" Tween="False" X="0.04983521" Y="0.04983521" /> <PointFrame FrameIndex="28" Tween="False" X="0.002624512" Y="0.002624512" /> <PointFrame FrameIndex="29" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="32" X="0" Y="0" /> <PointFrame FrameIndex="33" X="0" Y="0" /> <PointFrame FrameIndex="34" X="0" Y="0" /> <PointFrame FrameIndex="38" X="0" Y="0" /> <PointFrame FrameIndex="39" X="0" Y="0" /> <PointFrame FrameIndex="43" X="0" Y="0" /> <PointFrame FrameIndex="44" X="0" Y="0" /> <PointFrame FrameIndex="47" X="0" Y="0" /> <PointFrame FrameIndex="48" X="0" Y="0" /> <PointFrame FrameIndex="52" X="0" Y="0" /> <PointFrame FrameIndex="54" Tween="False" X="0" Y="0" /> </Timeline> <Timeline ActionTag="-1678540700" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="-1678540700" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="6" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="13" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="14" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="15" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="16" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="18" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="19" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="20" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="21" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="22" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="23" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="24" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="26" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="28" X="0.494898" Y="0.4993055" /> <PointFrame FrameIndex="29" X="0.494898" Y="0.4993055" /> <PointFrame FrameIndex="30" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="32" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="33" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="34" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="38" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="39" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="43" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="44" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="47" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="48" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="52" X="0.4938776" Y="0.4993055" /> <PointFrame FrameIndex="54" X="0.4938776" Y="0.4993055" /> </Timeline> <Timeline ActionTag="-331241132" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="6" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="13" Tween="False" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="14" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="15" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="16" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="18" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="19" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="20" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="21" Tween="False" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="22" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="23" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="24" Tween="False" X="-16.5" Y="4.75" /> <PointFrame FrameIndex="26" Tween="False" X="-16.55" Y="4.8" /> <PointFrame FrameIndex="28" Tween="False" X="-16.6" Y="4.85" /> <PointFrame FrameIndex="29" Tween="False" X="-16.65" Y="4.9" /> <PointFrame FrameIndex="30" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="32" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="33" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="34" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="38" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="39" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="43" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="44" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="47" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="48" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="52" X="-16.5" Y="7.55" /> <PointFrame FrameIndex="54" Tween="False" X="-16.5" Y="7.55" /> </Timeline> <Timeline ActionTag="-331241132" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="6" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="13" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="14" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="15" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="16" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="18" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="19" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="20" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="21" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="22" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="23" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="24" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="26" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="28" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="29" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="30" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="32" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="33" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="34" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="38" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="39" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="43" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="44" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="47" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="48" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="52" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="54" Tween="False" X="0.262146" Y="0.262146" /> </Timeline> <Timeline ActionTag="-331241132" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="0" Y="0" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="0" Y="0" /> <PointFrame FrameIndex="16" X="0" Y="0" /> <PointFrame FrameIndex="18" X="0" Y="0" /> <PointFrame FrameIndex="19" X="0" Y="0" /> <PointFrame FrameIndex="20" X="0" Y="0" /> <PointFrame FrameIndex="21" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="22" X="0" Y="0" /> <PointFrame FrameIndex="23" X="0" Y="0" /> <PointFrame FrameIndex="24" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="26" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="28" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="29" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="32" X="0" Y="0" /> <PointFrame FrameIndex="33" X="0" Y="0" /> <PointFrame FrameIndex="34" X="0" Y="0" /> <PointFrame FrameIndex="38" X="0" Y="0" /> <PointFrame FrameIndex="39" X="0" Y="0" /> <PointFrame FrameIndex="43" X="0" Y="0" /> <PointFrame FrameIndex="44" X="0" Y="0" /> <PointFrame FrameIndex="47" X="0" Y="0" /> <PointFrame FrameIndex="48" X="0" Y="0" /> <PointFrame FrameIndex="52" X="0" Y="0" /> <PointFrame FrameIndex="54" Tween="False" X="0" Y="0" /> </Timeline> <Timeline ActionTag="-1678540698" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="-1678540698" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="6" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="13" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="14" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="15" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="16" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="18" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="19" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="20" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="21" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="22" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="23" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="24" X="0.4988372" Y="0.4986301" /> <PointFrame FrameIndex="26" X="0.4988372" Y="0.5013698" /> <PointFrame FrameIndex="28" X="0.4994186" Y="0.4986301" /> <PointFrame FrameIndex="29" X="0.5" Y="0.4986301" /> <PointFrame FrameIndex="30" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="32" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="33" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="34" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="38" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="39" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="43" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="44" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="47" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="48" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="52" X="0.4988372" Y="0.4979452" /> <PointFrame FrameIndex="54" X="0.4988372" Y="0.4979452" /> </Timeline> <Timeline ActionTag="-1678540699" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="6" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="13" Tween="False" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="14" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="15" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="16" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="18" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="19" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="20" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="21" Tween="False" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="22" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="23" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="24" Tween="False" X="-8.95" Y="17.25" /> <PointFrame FrameIndex="26" Tween="False" X="-9.1" Y="17.35" /> <PointFrame FrameIndex="28" Tween="False" X="-9.25" Y="17.35" /> <PointFrame FrameIndex="29" Tween="False" X="-9.3" Y="17.3" /> <PointFrame FrameIndex="30" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="32" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="33" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="34" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="38" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="39" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="43" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="44" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="47" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="48" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="52" X="-9.55" Y="19.35" /> <PointFrame FrameIndex="54" Tween="False" X="-9.55" Y="19.35" /> </Timeline> <Timeline ActionTag="-1678540699" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="6" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="13" Tween="False" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="14" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="15" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="16" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="18" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="19" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="20" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="21" Tween="False" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="22" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="23" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="24" Tween="False" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="26" Tween="False" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="28" Tween="False" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="29" Tween="False" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="30" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="32" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="33" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="34" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="38" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="39" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="43" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="44" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="47" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="48" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="52" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="54" Tween="False" X="0.2621613" Y="0.2621613" /> </Timeline> <Timeline ActionTag="-1678540699" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="0" Y="0" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="0" Y="0" /> <PointFrame FrameIndex="16" X="0" Y="0" /> <PointFrame FrameIndex="18" X="0" Y="0" /> <PointFrame FrameIndex="19" X="0" Y="0" /> <PointFrame FrameIndex="20" X="0" Y="0" /> <PointFrame FrameIndex="21" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="22" X="0" Y="0" /> <PointFrame FrameIndex="23" X="0" Y="0" /> <PointFrame FrameIndex="24" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="26" Tween="False" X="-0.2666473" Y="-0.2666473" /> <PointFrame FrameIndex="28" Tween="False" X="-0.5262909" Y="-0.5262909" /> <PointFrame FrameIndex="29" Tween="False" X="-0.7736816" Y="-0.7736816" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="32" X="0" Y="0" /> <PointFrame FrameIndex="33" X="0" Y="0" /> <PointFrame FrameIndex="34" X="0" Y="0" /> <PointFrame FrameIndex="38" X="0" Y="0" /> <PointFrame FrameIndex="39" X="0" Y="0" /> <PointFrame FrameIndex="43" X="0" Y="0" /> <PointFrame FrameIndex="44" X="0" Y="0" /> <PointFrame FrameIndex="47" X="0" Y="0" /> <PointFrame FrameIndex="48" X="0" Y="0" /> <PointFrame FrameIndex="52" X="0" Y="0" /> <PointFrame FrameIndex="54" Tween="False" X="0" Y="0" /> </Timeline> <Timeline ActionTag="-1678540696" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="-1678540696" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="6" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="13" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="14" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="15" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="16" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="18" X="0.4952381" Y="0.5022222" /> <PointFrame FrameIndex="19" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="20" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="21" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="22" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="23" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="24" X="0.4940476" Y="0.5" /> <PointFrame FrameIndex="26" X="0.497619" Y="0.5033333" /> <PointFrame FrameIndex="28" X="0.4928571" Y="0.4977778" /> <PointFrame FrameIndex="29" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="30" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="32" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="33" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="34" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="38" X="0.4952381" Y="0.5022222" /> <PointFrame FrameIndex="39" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="43" X="0.4952381" Y="0.5022222" /> <PointFrame FrameIndex="44" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="47" X="0.4952381" Y="0.5022222" /> <PointFrame FrameIndex="48" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="52" X="0.4952381" Y="0.5" /> <PointFrame FrameIndex="54" X="0.4952381" Y="0.5" /> </Timeline> <Timeline ActionTag="-1678540697" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="12.9" Y="41.55" /> <PointFrame FrameIndex="6" X="11.9" Y="40" /> <PointFrame FrameIndex="13" X="12.9" Y="41.55" /> <PointFrame FrameIndex="14" X="12.9" Y="41.55" /> <PointFrame FrameIndex="15" X="12.9" Y="41.55" /> <PointFrame FrameIndex="16" X="12.45" Y="61.9" /> <PointFrame FrameIndex="18" X="11.2" Y="63.3" /> <PointFrame FrameIndex="19" X="9.25" Y="55.4" /> <PointFrame FrameIndex="20" X="12.45" Y="61.9" /> <PointFrame FrameIndex="21" X="12.9" Y="41.55" /> <PointFrame FrameIndex="22" X="12.9" Y="41.55" /> <PointFrame FrameIndex="23" X="13.95" Y="41.55" /> <PointFrame FrameIndex="24" Tween="False" X="9.2" Y="39.6" /> <PointFrame FrameIndex="26" Tween="False" X="10.8" Y="39.7" /> <PointFrame FrameIndex="28" Tween="False" X="12.25" Y="39.75" /> <PointFrame FrameIndex="29" Tween="False" X="12.9" Y="39.85" /> <PointFrame FrameIndex="30" X="12.9" Y="41.55" /> <PointFrame FrameIndex="32" X="12.9" Y="40.1" /> <PointFrame FrameIndex="33" X="12.9" Y="41.55" /> <PointFrame FrameIndex="34" X="12.45" Y="61.9" /> <PointFrame FrameIndex="38" X="11.2" Y="63.3" /> <PointFrame FrameIndex="39" X="9.25" Y="55.4" /> <PointFrame FrameIndex="43" X="11.2" Y="63.3" /> <PointFrame FrameIndex="44" X="9.25" Y="55.4" /> <PointFrame FrameIndex="47" X="11.2" Y="63.3" /> <PointFrame FrameIndex="48" X="9.25" Y="55.4" /> <PointFrame FrameIndex="52" X="12.45" Y="61.9" /> <PointFrame FrameIndex="54" X="12.9" Y="41.55" /> </Timeline> <Timeline ActionTag="-1678540697" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="6" X="0.2621002" Y="0.2621002" /> <PointFrame FrameIndex="13" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="14" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="15" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="16" X="0.2620697" Y="0.2620697" /> <PointFrame FrameIndex="18" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="19" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="20" X="0.2620697" Y="0.2620697" /> <PointFrame FrameIndex="21" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="22" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="23" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="24" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="26" Tween="False" X="0.2619324" Y="0.2619324" /> <PointFrame FrameIndex="28" Tween="False" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="29" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="30" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="32" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="33" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="34" X="0.2620697" Y="0.2620697" /> <PointFrame FrameIndex="38" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="39" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="43" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="44" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="47" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="48" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="52" X="0.2620697" Y="0.2620697" /> <PointFrame FrameIndex="54" X="0.262146" Y="0.262146" /> </Timeline> <Timeline ActionTag="-1678540697" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="3.253998" Y="3.253998" /> <PointFrame FrameIndex="13" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="0" Y="0" /> <PointFrame FrameIndex="16" X="-94.50105" Y="-94.50105" /> <PointFrame FrameIndex="18" X="-99.00607" Y="-99.00607" /> <PointFrame FrameIndex="19" X="0" Y="0" /> <PointFrame FrameIndex="20" X="-94.50105" Y="-94.50105" /> <PointFrame FrameIndex="21" X="0" Y="0" /> <PointFrame FrameIndex="22" X="0" Y="0" /> <PointFrame FrameIndex="23" X="0" Y="0" /> <PointFrame FrameIndex="24" Tween="False" X="24.97922" Y="24.97922" /> <PointFrame FrameIndex="26" Tween="False" X="14.82013" Y="14.82013" /> <PointFrame FrameIndex="28" Tween="False" X="4.80069" Y="4.80069" /> <PointFrame FrameIndex="29" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="32" X="0" Y="0" /> <PointFrame FrameIndex="33" X="0" Y="0" /> <PointFrame FrameIndex="34" X="-94.50105" Y="-94.50105" /> <PointFrame FrameIndex="38" X="-99.00607" Y="-99.00607" /> <PointFrame FrameIndex="39" X="0" Y="0" /> <PointFrame FrameIndex="43" X="-99.00607" Y="-99.00607" /> <PointFrame FrameIndex="44" X="0" Y="0" /> <PointFrame FrameIndex="47" X="-99.00607" Y="-99.00607" /> <PointFrame FrameIndex="48" X="0" Y="0" /> <PointFrame FrameIndex="52" X="-94.50105" Y="-94.50105" /> <PointFrame FrameIndex="54" X="0" Y="0" /> </Timeline> <Timeline ActionTag="-1678540694" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="-1678540694" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="6" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="13" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="14" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="15" X="0.5012712" Y="0.5018349" /> <PointFrame FrameIndex="16" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="18" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="19" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="20" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="21" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="22" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="23" X="0.5016949" Y="0.5009174" /> <PointFrame FrameIndex="24" X="0.5021186" Y="0.5013762" /> <PointFrame FrameIndex="26" X="0.5012712" Y="0.5009174" /> <PointFrame FrameIndex="28" X="0.5004237" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5021186" Y="0.5004587" /> <PointFrame FrameIndex="30" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="32" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="33" X="0.5012712" Y="0.5018349" /> <PointFrame FrameIndex="34" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="38" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="39" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="43" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="44" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="47" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="48" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="52" X="0.5012712" Y="0.5013762" /> <PointFrame FrameIndex="54" X="0.5012712" Y="0.5013762" /> </Timeline> <Timeline ActionTag="-1678540695" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-0.8" Y="35.8" /> <PointFrame FrameIndex="6" X="-0.8" Y="35.15" /> <PointFrame FrameIndex="13" Tween="False" X="-0.8" Y="35.8" /> <PointFrame FrameIndex="14" X="-0.8" Y="35.8" /> <PointFrame FrameIndex="15" X="-0.8" Y="37.1" /> <PointFrame FrameIndex="16" X="-3.05" Y="39.35" /> <PointFrame FrameIndex="18" X="-3.4" Y="39.3" /> <PointFrame FrameIndex="19" X="-3.05" Y="38.1" /> <PointFrame FrameIndex="20" X="-3.05" Y="39.35" /> <PointFrame FrameIndex="21" Tween="False" X="-0.8" Y="35.8" /> <PointFrame FrameIndex="22" X="-0.8" Y="35.8" /> <PointFrame FrameIndex="23" X="-0.5" Y="35.9" /> <PointFrame FrameIndex="24" Tween="False" X="-3.7" Y="34.9" /> <PointFrame FrameIndex="26" Tween="False" X="-2.7" Y="35.05" /> <PointFrame FrameIndex="28" Tween="False" X="-1.75" Y="35.2" /> <PointFrame FrameIndex="29" Tween="False" X="-1.25" Y="35.35" /> <PointFrame FrameIndex="30" X="-0.8" Y="35.8" /> <PointFrame FrameIndex="32" X="-0.8" Y="35.15" /> <PointFrame FrameIndex="33" X="-0.8" Y="37.1" /> <PointFrame FrameIndex="34" X="-3.05" Y="39.35" /> <PointFrame FrameIndex="38" X="-3.4" Y="39.3" /> <PointFrame FrameIndex="39" X="-3.05" Y="38.1" /> <PointFrame FrameIndex="43" X="-3.4" Y="39.3" /> <PointFrame FrameIndex="44" X="-3.05" Y="38.1" /> <PointFrame FrameIndex="47" X="-3.4" Y="39.3" /> <PointFrame FrameIndex="48" X="-3.05" Y="38.1" /> <PointFrame FrameIndex="52" X="-3.05" Y="39.35" /> <PointFrame FrameIndex="54" Tween="False" X="-0.8" Y="35.8" /> </Timeline> <Timeline ActionTag="-1678540695" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="6" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="13" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="14" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="15" X="0.262146" Y="0.2871857" /> <PointFrame FrameIndex="16" X="0.2620087" Y="0.3460236" /> <PointFrame FrameIndex="18" X="0.2619934" Y="0.3460236" /> <PointFrame FrameIndex="19" X="0.2620087" Y="0.3460236" /> <PointFrame FrameIndex="20" X="0.2620087" Y="0.3460236" /> <PointFrame FrameIndex="21" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="22" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="23" X="0.2621155" Y="0.2621155" /> <PointFrame FrameIndex="24" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="26" Tween="False" X="0.2620544" Y="0.2620544" /> <PointFrame FrameIndex="28" Tween="False" X="0.2620697" Y="0.2620697" /> <PointFrame FrameIndex="29" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="30" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="32" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="33" X="0.262146" Y="0.2871857" /> <PointFrame FrameIndex="34" X="0.2620087" Y="0.3460236" /> <PointFrame FrameIndex="38" X="0.2619934" Y="0.3460236" /> <PointFrame FrameIndex="39" X="0.2620087" Y="0.3460236" /> <PointFrame FrameIndex="43" X="0.2619934" Y="0.3460236" /> <PointFrame FrameIndex="44" X="0.2620087" Y="0.3460236" /> <PointFrame FrameIndex="47" X="0.2619934" Y="0.3460236" /> <PointFrame FrameIndex="48" X="0.2620087" Y="0.3460236" /> <PointFrame FrameIndex="52" X="0.2620087" Y="0.3460236" /> <PointFrame FrameIndex="54" Tween="False" X="0.262146" Y="0.262146" /> </Timeline> <Timeline ActionTag="-1678540695" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="0" Y="0" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="0" Y="0" /> <PointFrame FrameIndex="16" X="-9.008621" Y="-9.009476" /> <PointFrame FrameIndex="18" X="-10.25945" Y="-10.25945" /> <PointFrame FrameIndex="19" X="-9.008621" Y="-9.009476" /> <PointFrame FrameIndex="20" X="-9.008621" Y="-9.009476" /> <PointFrame FrameIndex="21" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="22" X="0" Y="0" /> <PointFrame FrameIndex="23" X="1.25087" Y="1.25087" /> <PointFrame FrameIndex="24" Tween="False" X="-8.177826" Y="-8.177826" /> <PointFrame FrameIndex="26" Tween="False" X="-5.546432" Y="-5.546432" /> <PointFrame FrameIndex="28" Tween="False" X="-3.029999" Y="-3.029999" /> <PointFrame FrameIndex="29" Tween="False" X="-1.911301" Y="-1.911301" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="32" X="0" Y="0" /> <PointFrame FrameIndex="33" X="0" Y="0" /> <PointFrame FrameIndex="34" X="-9.008621" Y="-9.009476" /> <PointFrame FrameIndex="38" X="-10.25945" Y="-10.25945" /> <PointFrame FrameIndex="39" X="-9.008621" Y="-9.009476" /> <PointFrame FrameIndex="43" X="-10.25945" Y="-10.25945" /> <PointFrame FrameIndex="44" X="-9.008621" Y="-9.009476" /> <PointFrame FrameIndex="47" X="-10.25945" Y="-10.25945" /> <PointFrame FrameIndex="48" X="-9.008621" Y="-9.009476" /> <PointFrame FrameIndex="52" X="-9.008621" Y="-9.009476" /> <PointFrame FrameIndex="54" Tween="False" X="0" Y="0" /> </Timeline> <Timeline ActionTag="-1678540692" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="-1678540692" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5009677" Y="0.4996689" /> <PointFrame FrameIndex="6" X="0.5006452" Y="0.4996689" /> <PointFrame FrameIndex="13" X="0.5009677" Y="0.4996689" /> <PointFrame FrameIndex="14" X="0.5009677" Y="0.4996689" /> <PointFrame FrameIndex="15" X="0.5006452" Y="0.5" /> <PointFrame FrameIndex="16" X="0.5003226" Y="0.4993378" /> <PointFrame FrameIndex="18" X="0.5012903" Y="0.5003311" /> <PointFrame FrameIndex="19" X="0.5003226" Y="0.5009934" /> <PointFrame FrameIndex="20" X="0.5003226" Y="0.4993378" /> <PointFrame FrameIndex="21" X="0.5009677" Y="0.4996689" /> <PointFrame FrameIndex="22" X="0.5009677" Y="0.4996689" /> <PointFrame FrameIndex="23" X="0.5009677" Y="0.4996689" /> <PointFrame FrameIndex="24" X="0.5012903" Y="0.5009934" /> <PointFrame FrameIndex="26" X="0.4993548" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5006452" Y="0.4990066" /> <PointFrame FrameIndex="29" X="0.5009677" Y="0.4993378" /> <PointFrame FrameIndex="30" X="0.5009677" Y="0.4996689" /> <PointFrame FrameIndex="32" X="0.5" Y="0.4996689" /> <PointFrame FrameIndex="33" X="0.5006452" Y="0.5" /> <PointFrame FrameIndex="34" X="0.5003226" Y="0.4993378" /> <PointFrame FrameIndex="38" X="0.5012903" Y="0.5003311" /> <PointFrame FrameIndex="39" X="0.5003226" Y="0.5009934" /> <PointFrame FrameIndex="43" X="0.5012903" Y="0.5003311" /> <PointFrame FrameIndex="44" X="0.5003226" Y="0.5009934" /> <PointFrame FrameIndex="47" X="0.5012903" Y="0.5003311" /> <PointFrame FrameIndex="48" X="0.5003226" Y="0.5009934" /> <PointFrame FrameIndex="52" X="0.5003226" Y="0.4993378" /> <PointFrame FrameIndex="54" X="0.5009677" Y="0.4996689" /> </Timeline> <Timeline ActionTag="-1678540693" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="34.8" Y="49.65" /> <PointFrame FrameIndex="6" X="33.8" Y="48.3" /> <PointFrame FrameIndex="13" X="34.8" Y="49.65" /> <PointFrame FrameIndex="14" X="34.8" Y="49.65" /> <PointFrame FrameIndex="15" X="37.3" Y="41.9" /> <PointFrame FrameIndex="16" X="12.4" Y="86.75" /> <PointFrame FrameIndex="18" X="10.95" Y="88.7" /> <PointFrame FrameIndex="19" X="8.3" Y="76.7" /> <PointFrame FrameIndex="20" X="12.4" Y="86.75" /> <PointFrame FrameIndex="21" X="34.8" Y="49.65" /> <PointFrame FrameIndex="22" X="34.8" Y="49.65" /> <PointFrame FrameIndex="23" X="35.5" Y="49.65" /> <PointFrame FrameIndex="24" Tween="False" X="29.3" Y="46.3" /> <PointFrame FrameIndex="26" Tween="False" X="30.8" Y="46.55" /> <PointFrame FrameIndex="28" Tween="False" X="32.3" Y="46.85" /> <PointFrame FrameIndex="29" Tween="False" X="33.05" Y="47" /> <PointFrame FrameIndex="30" X="34.8" Y="49.65" /> <PointFrame FrameIndex="32" X="34.2" Y="48.8" /> <PointFrame FrameIndex="33" X="37.3" Y="41.9" /> <PointFrame FrameIndex="34" X="12.4" Y="86.75" /> <PointFrame FrameIndex="38" X="10.95" Y="88.7" /> <PointFrame FrameIndex="39" X="8.3" Y="76.7" /> <PointFrame FrameIndex="43" X="10.95" Y="88.7" /> <PointFrame FrameIndex="44" X="8.3" Y="76.7" /> <PointFrame FrameIndex="47" X="10.95" Y="88.7" /> <PointFrame FrameIndex="48" X="8.3" Y="76.7" /> <PointFrame FrameIndex="52" X="12.4" Y="86.75" /> <PointFrame FrameIndex="54" X="34.8" Y="49.65" /> </Timeline> <Timeline ActionTag="-1678540693" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="6" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="13" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="14" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="15" X="0.2618256" Y="0.2618256" /> <PointFrame FrameIndex="16" X="0.261795" Y="0.261795" /> <PointFrame FrameIndex="18" X="0.261795" Y="0.261795" /> <PointFrame FrameIndex="19" X="0.2618103" Y="0.2618103" /> <PointFrame FrameIndex="20" X="0.261795" Y="0.261795" /> <PointFrame FrameIndex="21" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="22" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="23" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="24" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="26" Tween="False" X="0.2621155" Y="0.2621155" /> <PointFrame FrameIndex="28" Tween="False" X="0.2621307" Y="0.2621307" /> <PointFrame FrameIndex="29" Tween="False" X="0.2621613" Y="0.2621613" /> <PointFrame FrameIndex="30" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="32" X="0.2621155" Y="0.2621155" /> <PointFrame FrameIndex="33" X="0.2618256" Y="0.2618256" /> <PointFrame FrameIndex="34" X="0.261795" Y="0.261795" /> <PointFrame FrameIndex="38" X="0.261795" Y="0.261795" /> <PointFrame FrameIndex="39" X="0.2618103" Y="0.2618103" /> <PointFrame FrameIndex="43" X="0.261795" Y="0.261795" /> <PointFrame FrameIndex="44" X="0.2618103" Y="0.2618103" /> <PointFrame FrameIndex="47" X="0.261795" Y="0.261795" /> <PointFrame FrameIndex="48" X="0.2618103" Y="0.2618103" /> <PointFrame FrameIndex="52" X="0.261795" Y="0.261795" /> <PointFrame FrameIndex="54" X="0.262146" Y="0.262146" /> </Timeline> <Timeline ActionTag="-1678540693" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="180" /> <PointFrame FrameIndex="6" X="0" Y="180" /> <PointFrame FrameIndex="13" X="0" Y="180" /> <PointFrame FrameIndex="14" X="0" Y="180" /> <PointFrame FrameIndex="15" X="24.2959" Y="204.2959" /> <PointFrame FrameIndex="16" X="-60.9413" Y="119.0587" /> <PointFrame FrameIndex="18" X="-61.18973" Y="118.8103" /> <PointFrame FrameIndex="19" X="-65.20641" Y="114.7936" /> <PointFrame FrameIndex="20" X="-60.9413" Y="119.0587" /> <PointFrame FrameIndex="21" X="0" Y="180" /> <PointFrame FrameIndex="22" X="0" Y="180" /> <PointFrame FrameIndex="23" X="0" Y="180" /> <PointFrame FrameIndex="24" Tween="False" X="2.8992" Y="182.8992" /> <PointFrame FrameIndex="26" Tween="False" X="1.777679" Y="-178.2223" /> <PointFrame FrameIndex="28" Tween="False" X="0.7631836" Y="-179.2368" /> <PointFrame FrameIndex="29" Tween="False" X="0.3164825" Y="-179.6835" /> <PointFrame FrameIndex="30" X="0" Y="180" /> <PointFrame FrameIndex="32" X="-2.004745" Y="177.9953" /> <PointFrame FrameIndex="33" X="24.2959" Y="204.2959" /> <PointFrame FrameIndex="34" X="-60.9413" Y="119.0587" /> <PointFrame FrameIndex="38" X="-61.18973" Y="118.8103" /> <PointFrame FrameIndex="39" X="-65.20641" Y="114.7936" /> <PointFrame FrameIndex="43" X="-61.18973" Y="118.8103" /> <PointFrame FrameIndex="44" X="-65.20641" Y="114.7936" /> <PointFrame FrameIndex="47" X="-61.18973" Y="118.8103" /> <PointFrame FrameIndex="48" X="-65.20641" Y="114.7936" /> <PointFrame FrameIndex="52" X="-60.9413" Y="119.0587" /> <PointFrame FrameIndex="54" X="0" Y="180" /> </Timeline> <Timeline ActionTag="-1678540669" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="-1678540669" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5002415" Y="0.4998168" /> <PointFrame FrameIndex="6" X="0.5009662" Y="0.4996337" /> <PointFrame FrameIndex="13" X="0.5002415" Y="0.4998168" /> <PointFrame FrameIndex="14" X="0.5002415" Y="0.4998168" /> <PointFrame FrameIndex="15" X="0.5007246" Y="0.4992674" /> <PointFrame FrameIndex="16" X="0.5004831" Y="0.4994505" /> <PointFrame FrameIndex="18" X="0.5004831" Y="0.5" /> <PointFrame FrameIndex="19" X="0.4997585" Y="0.5" /> <PointFrame FrameIndex="20" X="0.5007246" Y="0.4996337" /> <PointFrame FrameIndex="21" X="0.5002415" Y="0.4998168" /> <PointFrame FrameIndex="22" X="0.5002415" Y="0.4998168" /> <PointFrame FrameIndex="23" X="0.5002415" Y="0.4998168" /> <PointFrame FrameIndex="24" X="0.5" Y="0.5" /> <PointFrame FrameIndex="26" X="0.4997585" Y="0.4994505" /> <PointFrame FrameIndex="28" X="0.4992754" Y="0.4998168" /> <PointFrame FrameIndex="29" X="0.5012077" Y="0.5005494" /> <PointFrame FrameIndex="30" X="0.5002415" Y="0.4998168" /> <PointFrame FrameIndex="32" X="0.5002415" Y="0.5003663" /> <PointFrame FrameIndex="33" X="0.5007246" Y="0.4992674" /> <PointFrame FrameIndex="34" X="0.5004831" Y="0.4994505" /> <PointFrame FrameIndex="38" X="0.5004831" Y="0.5" /> <PointFrame FrameIndex="39" X="0.4997585" Y="0.5" /> <PointFrame FrameIndex="43" X="0.5004831" Y="0.5" /> <PointFrame FrameIndex="44" X="0.4997585" Y="0.5" /> <PointFrame FrameIndex="47" X="0.5004831" Y="0.5" /> <PointFrame FrameIndex="48" X="0.4997585" Y="0.5" /> <PointFrame FrameIndex="52" X="0.5007246" Y="0.4996337" /> <PointFrame FrameIndex="54" X="0.5002415" Y="0.4998168" /> </Timeline> <Timeline ActionTag="-1678540691" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-46.6" Y="54.3" /> <PointFrame FrameIndex="6" X="-44.95" Y="55.65" /> <PointFrame FrameIndex="13" X="-46.6" Y="54.3" /> <PointFrame FrameIndex="14" X="-46.6" Y="54.3" /> <PointFrame FrameIndex="15" X="-44.3" Y="57" /> <PointFrame FrameIndex="16" X="-50.65" Y="50.75" /> <PointFrame FrameIndex="18" X="-50" Y="52" /> <PointFrame FrameIndex="19" X="-50.45" Y="49.05" /> <PointFrame FrameIndex="20" X="-51.3" Y="50.65" /> <PointFrame FrameIndex="21" X="-46.6" Y="54.3" /> <PointFrame FrameIndex="22" X="-46.6" Y="54.3" /> <PointFrame FrameIndex="23" X="-46.4" Y="55" /> <PointFrame FrameIndex="24" Tween="False" X="-45.1" Y="58" /> <PointFrame FrameIndex="26" Tween="False" X="-44.75" Y="56.75" /> <PointFrame FrameIndex="28" Tween="False" X="-44.35" Y="55.55" /> <PointFrame FrameIndex="29" Tween="False" X="-44" Y="55.1" /> <PointFrame FrameIndex="30" X="-46.6" Y="54.3" /> <PointFrame FrameIndex="32" X="-48.3" Y="49.75" /> <PointFrame FrameIndex="33" X="-44.3" Y="57" /> <PointFrame FrameIndex="34" X="-50.65" Y="50.75" /> <PointFrame FrameIndex="38" X="-50" Y="52" /> <PointFrame FrameIndex="39" X="-50.45" Y="49.05" /> <PointFrame FrameIndex="43" X="-50" Y="52" /> <PointFrame FrameIndex="44" X="-50.45" Y="49.05" /> <PointFrame FrameIndex="47" X="-50" Y="52" /> <PointFrame FrameIndex="48" X="-50.45" Y="49.05" /> <PointFrame FrameIndex="52" X="-51.3" Y="50.65" /> <PointFrame FrameIndex="54" X="-46.6" Y="54.3" /> </Timeline> <Timeline ActionTag="-1678540691" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="6" X="0.2620544" Y="0.2620544" /> <PointFrame FrameIndex="13" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="14" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="15" X="0.2621155" Y="0.2621155" /> <PointFrame FrameIndex="16" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="18" X="0.2621155" Y="0.2621155" /> <PointFrame FrameIndex="19" X="0.2620392" Y="0.2620392" /> <PointFrame FrameIndex="20" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="21" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="22" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="23" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="24" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="26" Tween="False" X="0.2620239" Y="0.2620239" /> <PointFrame FrameIndex="28" Tween="False" X="0.2620239" Y="0.2620239" /> <PointFrame FrameIndex="29" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="30" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="32" X="0.2620544" Y="0.2620544" /> <PointFrame FrameIndex="33" X="0.2621155" Y="0.2621155" /> <PointFrame FrameIndex="34" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="38" X="0.2621155" Y="0.2621155" /> <PointFrame FrameIndex="39" X="0.2620392" Y="0.2620392" /> <PointFrame FrameIndex="43" X="0.2621155" Y="0.2621155" /> <PointFrame FrameIndex="44" X="0.2620392" Y="0.2620392" /> <PointFrame FrameIndex="47" X="0.2621155" Y="0.2621155" /> <PointFrame FrameIndex="48" X="0.2620392" Y="0.2620392" /> <PointFrame FrameIndex="52" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="54" X="0.262146" Y="0.262146" /> </Timeline> <Timeline ActionTag="-1678540691" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="180" /> <PointFrame FrameIndex="6" X="5.25441" Y="185.2544" /> <PointFrame FrameIndex="13" X="0" Y="180" /> <PointFrame FrameIndex="14" X="0" Y="180" /> <PointFrame FrameIndex="15" X="1.504257" Y="181.5043" /> <PointFrame FrameIndex="16" X="-9.009476" Y="170.9905" /> <PointFrame FrameIndex="18" X="-2.001251" Y="177.9987" /> <PointFrame FrameIndex="19" X="-6.254013" Y="173.746" /> <PointFrame FrameIndex="20" X="-9.009476" Y="170.9905" /> <PointFrame FrameIndex="21" X="0" Y="180" /> <PointFrame FrameIndex="22" X="0" Y="180" /> <PointFrame FrameIndex="23" X="0" Y="180" /> <PointFrame FrameIndex="24" Tween="False" X="12.43668" Y="192.4367" /> <PointFrame FrameIndex="26" Tween="False" X="8.785904" Y="-171.2141" /> <PointFrame FrameIndex="28" Tween="False" X="5.258743" Y="-174.7413" /> <PointFrame FrameIndex="29" Tween="False" X="3.533661" Y="-176.4663" /> <PointFrame FrameIndex="30" X="0" Y="180" /> <PointFrame FrameIndex="32" X="-6.754578" Y="173.2454" /> <PointFrame FrameIndex="33" X="1.504257" Y="181.5043" /> <PointFrame FrameIndex="34" X="-9.009476" Y="170.9905" /> <PointFrame FrameIndex="38" X="-2.001251" Y="177.9987" /> <PointFrame FrameIndex="39" X="-6.254013" Y="173.746" /> <PointFrame FrameIndex="43" X="-2.001251" Y="177.9987" /> <PointFrame FrameIndex="44" X="-6.254013" Y="173.746" /> <PointFrame FrameIndex="47" X="-2.001251" Y="177.9987" /> <PointFrame FrameIndex="48" X="-6.254013" Y="173.746" /> <PointFrame FrameIndex="52" X="-9.009476" Y="170.9905" /> <PointFrame FrameIndex="54" X="0" Y="180" /> </Timeline> <Timeline ActionTag="-1678540667" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="-1678540667" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5030303" Y="0.499505" /> <PointFrame FrameIndex="6" X="0.5030303" Y="0.499505" /> <PointFrame FrameIndex="13" X="0.5030303" Y="0.499505" /> <PointFrame FrameIndex="14" X="0.5030303" Y="0.499505" /> <PointFrame FrameIndex="15" X="0.5030303" Y="0.499505" /> <PointFrame FrameIndex="16" X="0.5022727" Y="0.5004951" /> <PointFrame FrameIndex="18" X="0.5015152" Y="0.4990099" /> <PointFrame FrameIndex="19" X="0.5022727" Y="0.5004951" /> <PointFrame FrameIndex="20" X="0.5022727" Y="0.5004951" /> <PointFrame FrameIndex="21" X="0.5030303" Y="0.499505" /> <PointFrame FrameIndex="22" X="0.5030303" Y="0.499505" /> <PointFrame FrameIndex="23" X="0.5022727" Y="0.4990099" /> <PointFrame FrameIndex="24" X="0.5015152" Y="0.4975247" /> <PointFrame FrameIndex="26" X="0.5030303" Y="0.5014852" /> <PointFrame FrameIndex="28" X="0.5037879" Y="0.5" /> <PointFrame FrameIndex="29" X="0.5045455" Y="0.4990099" /> <PointFrame FrameIndex="30" X="0.5030303" Y="0.499505" /> <PointFrame FrameIndex="32" X="0.5030303" Y="0.499505" /> <PointFrame FrameIndex="33" X="0.5030303" Y="0.499505" /> <PointFrame FrameIndex="34" X="0.5022727" Y="0.5004951" /> <PointFrame FrameIndex="38" X="0.5015152" Y="0.4990099" /> <PointFrame FrameIndex="39" X="0.5022727" Y="0.5004951" /> <PointFrame FrameIndex="43" X="0.5015152" Y="0.4990099" /> <PointFrame FrameIndex="44" X="0.5022727" Y="0.5004951" /> <PointFrame FrameIndex="47" X="0.5015152" Y="0.4990099" /> <PointFrame FrameIndex="48" X="0.5022727" Y="0.5004951" /> <PointFrame FrameIndex="52" X="0.5022727" Y="0.5004951" /> <PointFrame FrameIndex="54" X="0.5030303" Y="0.499505" /> </Timeline> <Timeline ActionTag="-1678540668" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-15.65" Y="21.2" /> <PointFrame FrameIndex="6" X="-15.65" Y="20.45" /> <PointFrame FrameIndex="13" Tween="False" X="-15.65" Y="21.2" /> <PointFrame FrameIndex="14" X="-15.65" Y="21.2" /> <PointFrame FrameIndex="15" X="-15.65" Y="22.8" /> <PointFrame FrameIndex="16" X="-15.55" Y="23.6" /> <PointFrame FrameIndex="18" X="-15.45" Y="23.45" /> <PointFrame FrameIndex="19" X="-15.55" Y="22.65" /> <PointFrame FrameIndex="20" X="-15.55" Y="23.6" /> <PointFrame FrameIndex="21" Tween="False" X="-15.65" Y="21.2" /> <PointFrame FrameIndex="22" X="-15.65" Y="21.2" /> <PointFrame FrameIndex="23" X="-15.5" Y="21.65" /> <PointFrame FrameIndex="24" Tween="False" X="-15.3" Y="19" /> <PointFrame FrameIndex="26" Tween="False" X="-14.85" Y="19.65" /> <PointFrame FrameIndex="28" Tween="False" X="-14.4" Y="20.15" /> <PointFrame FrameIndex="29" Tween="False" X="-14.05" Y="20.4" /> <PointFrame FrameIndex="30" X="-15.65" Y="21.2" /> <PointFrame FrameIndex="32" X="-15.65" Y="20.45" /> <PointFrame FrameIndex="33" X="-15.65" Y="22.8" /> <PointFrame FrameIndex="34" X="-15.55" Y="23.6" /> <PointFrame FrameIndex="38" X="-15.45" Y="23.45" /> <PointFrame FrameIndex="39" X="-15.55" Y="22.65" /> <PointFrame FrameIndex="43" X="-15.45" Y="23.45" /> <PointFrame FrameIndex="44" X="-15.55" Y="22.65" /> <PointFrame FrameIndex="47" X="-15.45" Y="23.45" /> <PointFrame FrameIndex="48" X="-15.55" Y="22.65" /> <PointFrame FrameIndex="52" X="-15.55" Y="23.6" /> <PointFrame FrameIndex="54" Tween="False" X="-15.65" Y="21.2" /> </Timeline> <Timeline ActionTag="-1678540668" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="6" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="13" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="14" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="15" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="16" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="18" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="19" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="20" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="21" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="22" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="23" X="0.2621155" Y="0.2621155" /> <PointFrame FrameIndex="24" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="26" Tween="False" X="0.2620697" Y="0.2620697" /> <PointFrame FrameIndex="28" Tween="False" X="0.2620697" Y="0.2620697" /> <PointFrame FrameIndex="29" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="30" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="32" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="33" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="34" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="38" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="39" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="43" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="44" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="47" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="48" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="52" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="54" Tween="False" X="0.262146" Y="0.262146" /> </Timeline> <Timeline ActionTag="-1678540668" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="0" Y="0" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="0" Y="0" /> <PointFrame FrameIndex="16" X="-9.009476" Y="-9.009476" /> <PointFrame FrameIndex="18" X="-10.25861" Y="-10.25861" /> <PointFrame FrameIndex="19" X="-9.009476" Y="-9.009476" /> <PointFrame FrameIndex="20" X="-9.009476" Y="-9.009476" /> <PointFrame FrameIndex="21" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="22" X="0" Y="0" /> <PointFrame FrameIndex="23" X="1.25087" Y="1.25087" /> <PointFrame FrameIndex="24" Tween="False" X="-8.309708" Y="-8.309708" /> <PointFrame FrameIndex="26" Tween="False" X="-5.787109" Y="-5.787109" /> <PointFrame FrameIndex="28" Tween="False" X="-3.301056" Y="-3.301056" /> <PointFrame FrameIndex="29" Tween="False" X="-2.281494" Y="-2.281494" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="32" X="0" Y="0" /> <PointFrame FrameIndex="33" X="0" Y="0" /> <PointFrame FrameIndex="34" X="-9.009476" Y="-9.009476" /> <PointFrame FrameIndex="38" X="-10.25861" Y="-10.25861" /> <PointFrame FrameIndex="39" X="-9.009476" Y="-9.009476" /> <PointFrame FrameIndex="43" X="-10.25861" Y="-10.25861" /> <PointFrame FrameIndex="44" X="-9.009476" Y="-9.009476" /> <PointFrame FrameIndex="47" X="-10.25861" Y="-10.25861" /> <PointFrame FrameIndex="48" X="-9.009476" Y="-9.009476" /> <PointFrame FrameIndex="52" X="-9.009476" Y="-9.009476" /> <PointFrame FrameIndex="54" Tween="False" X="0" Y="0" /> </Timeline> <Timeline ActionTag="-1678540665" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="-1678540665" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.4976563" Y="0.4982456" /> <PointFrame FrameIndex="6" X="0.4976563" Y="0.4982456" /> <PointFrame FrameIndex="13" X="0.4976563" Y="0.4982456" /> <PointFrame FrameIndex="14" X="0.4976563" Y="0.4982456" /> <PointFrame FrameIndex="15" X="0.4976563" Y="0.4982456" /> <PointFrame FrameIndex="16" X="0.4960938" Y="0.5017544" /> <PointFrame FrameIndex="18" X="0.4992188" Y="0.5" /> <PointFrame FrameIndex="19" X="0.4953125" Y="0.4991228" /> <PointFrame FrameIndex="20" X="0.4960938" Y="0.5017544" /> <PointFrame FrameIndex="21" X="0.4976563" Y="0.4982456" /> <PointFrame FrameIndex="22" X="0.4976563" Y="0.4982456" /> <PointFrame FrameIndex="23" X="0.496875" Y="0.4973684" /> <PointFrame FrameIndex="24" X="0.4976563" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.4964912" /> <PointFrame FrameIndex="28" X="0.496875" Y="0.5" /> <PointFrame FrameIndex="29" X="0.4960938" Y="0.4991228" /> <PointFrame FrameIndex="30" X="0.4976563" Y="0.4982456" /> <PointFrame FrameIndex="32" X="0.4976563" Y="0.4982456" /> <PointFrame FrameIndex="33" X="0.4976563" Y="0.4982456" /> <PointFrame FrameIndex="34" X="0.4960938" Y="0.5017544" /> <PointFrame FrameIndex="38" X="0.4992188" Y="0.5" /> <PointFrame FrameIndex="39" X="0.4953125" Y="0.4991228" /> <PointFrame FrameIndex="43" X="0.4992188" Y="0.5" /> <PointFrame FrameIndex="44" X="0.4953125" Y="0.4991228" /> <PointFrame FrameIndex="47" X="0.4992188" Y="0.5" /> <PointFrame FrameIndex="48" X="0.4953125" Y="0.4991228" /> <PointFrame FrameIndex="52" X="0.4960938" Y="0.5017544" /> <PointFrame FrameIndex="54" X="0.4976563" Y="0.4982456" /> </Timeline> <Timeline ActionTag="-1678540666" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="27.85" Y="69.8" /> <PointFrame FrameIndex="6" X="27.85" Y="68.8" /> <PointFrame FrameIndex="13" Tween="False" X="27.85" Y="69.8" /> <PointFrame FrameIndex="14" X="27.85" Y="69.8" /> <PointFrame FrameIndex="15" X="30.15" Y="67.05" /> <PointFrame FrameIndex="16" X="2.3" Y="87.4" /> <PointFrame FrameIndex="18" X="1.1" Y="87.5" /> <PointFrame FrameIndex="19" X="1" Y="86.25" /> <PointFrame FrameIndex="20" X="2.3" Y="87.4" /> <PointFrame FrameIndex="21" X="27.85" Y="69.8" /> <PointFrame FrameIndex="22" X="27.85" Y="69.8" /> <PointFrame FrameIndex="23" X="28.5" Y="68.95" /> <PointFrame FrameIndex="24" Tween="False" X="19.6" Y="74.5" /> <PointFrame FrameIndex="26" Tween="False" X="22.85" Y="73.15" /> <PointFrame FrameIndex="28" Tween="False" X="26.05" Y="71.85" /> <PointFrame FrameIndex="29" Tween="False" X="27.75" Y="71.2" /> <PointFrame FrameIndex="30" X="27.85" Y="69.8" /> <PointFrame FrameIndex="32" X="27.85" Y="68.8" /> <PointFrame FrameIndex="33" X="30.15" Y="67.05" /> <PointFrame FrameIndex="34" X="2.3" Y="87.4" /> <PointFrame FrameIndex="38" X="1.1" Y="87.5" /> <PointFrame FrameIndex="39" X="1" Y="86.25" /> <PointFrame FrameIndex="43" X="1.1" Y="87.5" /> <PointFrame FrameIndex="44" X="1" Y="86.25" /> <PointFrame FrameIndex="47" X="1.1" Y="87.5" /> <PointFrame FrameIndex="48" X="1" Y="86.25" /> <PointFrame FrameIndex="52" X="2.3" Y="87.4" /> <PointFrame FrameIndex="54" X="27.85" Y="69.8" /> </Timeline> <Timeline ActionTag="-1678540666" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="6" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="13" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="14" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="15" X="0.2620544" Y="0.2620544" /> <PointFrame FrameIndex="16" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="18" X="0.2617035" Y="0.2617035" /> <PointFrame FrameIndex="19" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="20" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="21" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="22" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="23" X="0.2621155" Y="0.2621155" /> <PointFrame FrameIndex="24" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="26" Tween="False" X="0.2620239" Y="0.2620239" /> <PointFrame FrameIndex="28" Tween="False" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="29" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="30" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="32" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="33" X="0.2620544" Y="0.2620544" /> <PointFrame FrameIndex="34" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="38" X="0.2617035" Y="0.2617035" /> <PointFrame FrameIndex="39" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="43" X="0.2617035" Y="0.2617035" /> <PointFrame FrameIndex="44" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="47" X="0.2617035" Y="0.2617035" /> <PointFrame FrameIndex="48" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="52" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="54" X="0.262146" Y="0.262146" /> </Timeline> <Timeline ActionTag="-1678540666" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="0" Y="0" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="6.506134" Y="6.506134" /> <PointFrame FrameIndex="16" X="-42.61124" Y="-42.61124" /> <PointFrame FrameIndex="18" X="-43.61803" Y="-43.61803" /> <PointFrame FrameIndex="19" X="-45.1226" Y="-45.1226" /> <PointFrame FrameIndex="20" X="-42.61124" Y="-42.61124" /> <PointFrame FrameIndex="21" X="0" Y="0" /> <PointFrame FrameIndex="22" X="0" Y="0" /> <PointFrame FrameIndex="23" X="1.75061" Y="1.75061" /> <PointFrame FrameIndex="24" Tween="False" X="-11.23073" Y="-11.23073" /> <PointFrame FrameIndex="26" Tween="False" X="-8.519302" Y="-8.519302" /> <PointFrame FrameIndex="28" Tween="False" X="-5.78537" Y="-5.78537" /> <PointFrame FrameIndex="29" Tween="False" X="-4.570557" Y="-4.570557" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="32" X="0" Y="0" /> <PointFrame FrameIndex="33" X="6.506134" Y="6.506134" /> <PointFrame FrameIndex="34" X="-42.61124" Y="-42.61124" /> <PointFrame FrameIndex="38" X="-43.61803" Y="-43.61803" /> <PointFrame FrameIndex="39" X="-45.1226" Y="-45.1226" /> <PointFrame FrameIndex="43" X="-43.61803" Y="-43.61803" /> <PointFrame FrameIndex="44" X="-45.1226" Y="-45.1226" /> <PointFrame FrameIndex="47" X="-43.61803" Y="-43.61803" /> <PointFrame FrameIndex="48" X="-45.1226" Y="-45.1226" /> <PointFrame FrameIndex="52" X="-42.61124" Y="-42.61124" /> <PointFrame FrameIndex="54" X="0" Y="0" /> </Timeline> <Timeline ActionTag="-1678540663" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="-1678540663" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5011628" Y="0.4997807" /> <PointFrame FrameIndex="6" X="0.5034884" Y="0.4991228" /> <PointFrame FrameIndex="13" X="0.5011628" Y="0.4997807" /> <PointFrame FrameIndex="14" X="0.5011628" Y="0.4997807" /> <PointFrame FrameIndex="15" X="0.5005814" Y="0.4997807" /> <PointFrame FrameIndex="16" X="0.5005814" Y="0.4995614" /> <PointFrame FrameIndex="18" X="0.502907" Y="0.4997807" /> <PointFrame FrameIndex="19" X="0.5034884" Y="0.5" /> <PointFrame FrameIndex="20" X="0.5034884" Y="0.4993421" /> <PointFrame FrameIndex="21" X="0.5011628" Y="0.4997807" /> <PointFrame FrameIndex="22" X="0.5011628" Y="0.4997807" /> <PointFrame FrameIndex="23" X="0.5017442" Y="0.5" /> <PointFrame FrameIndex="24" X="0.5023256" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5023256" Y="0.4993421" /> <PointFrame FrameIndex="28" X="0.502907" Y="0.4997807" /> <PointFrame FrameIndex="29" X="0.5011628" Y="0.4997807" /> <PointFrame FrameIndex="30" X="0.5011628" Y="0.4997807" /> <PointFrame FrameIndex="32" X="0.5023256" Y="0.5006579" /> <PointFrame FrameIndex="33" X="0.5005814" Y="0.4997807" /> <PointFrame FrameIndex="34" X="0.5" Y="0.4993421" /> <PointFrame FrameIndex="38" X="0.502907" Y="0.4997807" /> <PointFrame FrameIndex="39" X="0.5034884" Y="0.5" /> <PointFrame FrameIndex="43" X="0.502907" Y="0.4997807" /> <PointFrame FrameIndex="44" X="0.5034884" Y="0.5" /> <PointFrame FrameIndex="47" X="0.502907" Y="0.4997807" /> <PointFrame FrameIndex="48" X="0.5034884" Y="0.5" /> <PointFrame FrameIndex="52" X="0.5034884" Y="0.4993421" /> <PointFrame FrameIndex="54" X="0.5011628" Y="0.4997807" /> </Timeline> <Timeline ActionTag="-1678540664" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="23.35" Y="86.05" /> <PointFrame FrameIndex="6" X="24.3" Y="84.95" /> <PointFrame FrameIndex="13" Tween="False" X="23.35" Y="86.05" /> <PointFrame FrameIndex="14" X="23.35" Y="86.05" /> <PointFrame FrameIndex="15" X="29.85" Y="83.6" /> <PointFrame FrameIndex="16" X="-10.05" Y="98.5" /> <PointFrame FrameIndex="18" X="-14.7" Y="95.25" /> <PointFrame FrameIndex="19" X="-15.7" Y="93.2" /> <PointFrame FrameIndex="20" X="-13.2" Y="95.4" /> <PointFrame FrameIndex="21" X="23.35" Y="86.05" /> <PointFrame FrameIndex="22" X="23.35" Y="86.05" /> <PointFrame FrameIndex="23" X="23.45" Y="85.45" /> <PointFrame FrameIndex="24" Tween="False" X="12.2" Y="91.1" /> <PointFrame FrameIndex="26" Tween="False" X="15.95" Y="89.25" /> <PointFrame FrameIndex="28" Tween="False" X="19.7" Y="87.7" /> <PointFrame FrameIndex="29" Tween="False" X="21.7" Y="87.2" /> <PointFrame FrameIndex="30" X="23.35" Y="86.05" /> <PointFrame FrameIndex="32" X="24.3" Y="87.1" /> <PointFrame FrameIndex="33" X="29.85" Y="83.6" /> <PointFrame FrameIndex="34" X="-9.9" Y="98.35" /> <PointFrame FrameIndex="38" X="-14.7" Y="95.25" /> <PointFrame FrameIndex="39" X="-15.7" Y="93.2" /> <PointFrame FrameIndex="43" X="-14.7" Y="95.25" /> <PointFrame FrameIndex="44" X="-15.7" Y="93.2" /> <PointFrame FrameIndex="47" X="-14.7" Y="95.25" /> <PointFrame FrameIndex="48" X="-15.7" Y="93.2" /> <PointFrame FrameIndex="52" X="-13.2" Y="95.4" /> <PointFrame FrameIndex="54" X="23.35" Y="86.05" /> </Timeline> <Timeline ActionTag="-1678540664" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="6" X="0.2621002" Y="0.2621002" /> <PointFrame FrameIndex="13" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="14" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="15" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="16" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="18" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="19" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="20" X="0.261734" Y="0.261734" /> <PointFrame FrameIndex="21" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="22" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="23" X="0.2620697" Y="0.2620697" /> <PointFrame FrameIndex="24" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="26" Tween="False" X="0.2619324" Y="0.2619324" /> <PointFrame FrameIndex="28" Tween="False" X="0.2619476" Y="0.2619476" /> <PointFrame FrameIndex="29" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="30" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="32" X="0.2359009" Y="0.2359009" /> <PointFrame FrameIndex="33" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="34" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="38" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="39" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="43" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="44" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="47" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="48" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="52" X="0.261734" Y="0.261734" /> <PointFrame FrameIndex="54" X="0.262146" Y="0.262146" /> </Timeline> <Timeline ActionTag="-1678540664" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="-3.00296" Y="-3.00296" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="0.7535706" Y="0.7535706" /> <PointFrame FrameIndex="16" X="-50.14471" Y="-50.14471" /> <PointFrame FrameIndex="18" X="-38.84854" Y="-38.84854" /> <PointFrame FrameIndex="19" X="-37.84305" Y="-37.84305" /> <PointFrame FrameIndex="20" X="-37.59305" Y="-37.59305" /> <PointFrame FrameIndex="21" X="0" Y="0" /> <PointFrame FrameIndex="22" X="0" Y="0" /> <PointFrame FrameIndex="23" X="4.75206" Y="4.75206" /> <PointFrame FrameIndex="24" Tween="False" X="-22.53737" Y="-22.53737" /> <PointFrame FrameIndex="26" Tween="False" X="-15.31169" Y="-15.31169" /> <PointFrame FrameIndex="28" Tween="False" X="-8.2686" Y="-8.2686" /> <PointFrame FrameIndex="29" Tween="False" X="-4.807632" Y="-4.807632" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="32" X="-3.014297" Y="-3.014297" /> <PointFrame FrameIndex="33" X="0.7535706" Y="0.7535706" /> <PointFrame FrameIndex="34" X="-50.14471" Y="-50.14471" /> <PointFrame FrameIndex="38" X="-38.84854" Y="-38.84854" /> <PointFrame FrameIndex="39" X="-37.84305" Y="-37.84305" /> <PointFrame FrameIndex="43" X="-38.84854" Y="-38.84854" /> <PointFrame FrameIndex="44" X="-37.84305" Y="-37.84305" /> <PointFrame FrameIndex="47" X="-38.84854" Y="-38.84854" /> <PointFrame FrameIndex="48" X="-37.84305" Y="-37.84305" /> <PointFrame FrameIndex="52" X="-37.59305" Y="-37.59305" /> <PointFrame FrameIndex="54" X="0" Y="0" /> </Timeline> <Timeline ActionTag="-1678540661" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="-1678540661" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5001798" Y="0.4997641" /> <PointFrame FrameIndex="6" X="0.5001798" Y="0.4997641" /> <PointFrame FrameIndex="13" X="0.5001798" Y="0.4997641" /> <PointFrame FrameIndex="14" X="0.5001798" Y="0.4997641" /> <PointFrame FrameIndex="15" X="0.5001798" Y="0.4992925" /> <PointFrame FrameIndex="16" X="0.5" Y="0.4997641" /> <PointFrame FrameIndex="18" X="0.4996403" Y="0.5" /> <PointFrame FrameIndex="19" X="0.501259" Y="0.4995283" /> <PointFrame FrameIndex="20" X="0.5" Y="0.4997641" /> <PointFrame FrameIndex="21" X="0.5001798" Y="0.4997641" /> <PointFrame FrameIndex="22" X="0.5001798" Y="0.4997641" /> <PointFrame FrameIndex="23" X="0.5005395" Y="0.4988208" /> <PointFrame FrameIndex="24" X="0.4992806" Y="0.5" /> <PointFrame FrameIndex="26" X="0.5" Y="0.4992925" /> <PointFrame FrameIndex="28" X="0.5007194" Y="0.4995283" /> <PointFrame FrameIndex="29" X="0.5003597" Y="0.4997641" /> <PointFrame FrameIndex="30" X="0.5001798" Y="0.4997641" /> <PointFrame FrameIndex="32" X="0.5001798" Y="0.4997641" /> <PointFrame FrameIndex="33" X="0.5001798" Y="0.4992925" /> <PointFrame FrameIndex="34" X="0.5" Y="0.4997641" /> <PointFrame FrameIndex="38" X="0.4996403" Y="0.5" /> <PointFrame FrameIndex="39" X="0.501259" Y="0.4995283" /> <PointFrame FrameIndex="43" X="0.4996403" Y="0.5" /> <PointFrame FrameIndex="44" X="0.501259" Y="0.4995283" /> <PointFrame FrameIndex="47" X="0.4996403" Y="0.5" /> <PointFrame FrameIndex="48" X="0.501259" Y="0.4995283" /> <PointFrame FrameIndex="52" X="0.5" Y="0.4997641" /> <PointFrame FrameIndex="54" X="0.5001798" Y="0.4997641" /> </Timeline> <Timeline ActionTag="-1678540662" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-10.55" Y="63.05" /> <PointFrame FrameIndex="6" X="-10.55" Y="62.1" /> <PointFrame FrameIndex="13" Tween="False" X="-10.55" Y="63.05" /> <PointFrame FrameIndex="14" X="-10.55" Y="63.05" /> <PointFrame FrameIndex="15" X="-8.75" Y="65" /> <PointFrame FrameIndex="16" X="-21.25" Y="56.45" /> <PointFrame FrameIndex="18" X="-22.15" Y="56.15" /> <PointFrame FrameIndex="19" X="-21.2" Y="54.4" /> <PointFrame FrameIndex="20" X="-21.25" Y="56.45" /> <PointFrame FrameIndex="21" X="-10.55" Y="63.05" /> <PointFrame FrameIndex="22" X="-10.55" Y="63.05" /> <PointFrame FrameIndex="23" X="-10.15" Y="63.5" /> <PointFrame FrameIndex="24" Tween="False" X="-16.45" Y="56.25" /> <PointFrame FrameIndex="26" Tween="False" X="-14.5" Y="57.5" /> <PointFrame FrameIndex="28" Tween="False" X="-12.35" Y="58.8" /> <PointFrame FrameIndex="29" Tween="False" X="-11.3" Y="59.65" /> <PointFrame FrameIndex="30" X="-10.55" Y="63.05" /> <PointFrame FrameIndex="32" X="-10.55" Y="62.1" /> <PointFrame FrameIndex="33" X="-8.75" Y="65" /> <PointFrame FrameIndex="34" X="-21.25" Y="56.45" /> <PointFrame FrameIndex="38" X="-22.15" Y="56.15" /> <PointFrame FrameIndex="39" X="-21.2" Y="54.4" /> <PointFrame FrameIndex="43" X="-22.15" Y="56.15" /> <PointFrame FrameIndex="44" X="-21.2" Y="54.4" /> <PointFrame FrameIndex="47" X="-22.15" Y="56.15" /> <PointFrame FrameIndex="48" X="-21.2" Y="54.4" /> <PointFrame FrameIndex="52" X="-21.25" Y="56.45" /> <PointFrame FrameIndex="54" X="-10.55" Y="63.05" /> </Timeline> <Timeline ActionTag="-1678540662" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="6" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="13" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="14" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="15" X="0.2620544" Y="0.2620544" /> <PointFrame FrameIndex="16" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="18" X="0.2617035" Y="0.2617035" /> <PointFrame FrameIndex="19" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="20" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="21" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="22" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="23" X="0.2621155" Y="0.2621155" /> <PointFrame FrameIndex="24" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="26" Tween="False" X="0.2619629" Y="0.2619629" /> <PointFrame FrameIndex="28" Tween="False" X="0.2619934" Y="0.2619934" /> <PointFrame FrameIndex="29" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="30" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="32" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="33" X="0.2620544" Y="0.2620544" /> <PointFrame FrameIndex="34" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="38" X="0.2617035" Y="0.2617035" /> <PointFrame FrameIndex="39" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="43" X="0.2617035" Y="0.2617035" /> <PointFrame FrameIndex="44" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="47" X="0.2617035" Y="0.2617035" /> <PointFrame FrameIndex="48" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="52" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="54" X="0.262146" Y="0.262146" /> </Timeline> <Timeline ActionTag="-1678540662" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="0" Y="0" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="6.506134" Y="6.506134" /> <PointFrame FrameIndex="16" X="-42.61124" Y="-42.61124" /> <PointFrame FrameIndex="18" X="-43.61803" Y="-43.61803" /> <PointFrame FrameIndex="19" X="-45.1226" Y="-45.1226" /> <PointFrame FrameIndex="20" X="-42.61124" Y="-42.61124" /> <PointFrame FrameIndex="21" X="0" Y="0" /> <PointFrame FrameIndex="22" X="0" Y="0" /> <PointFrame FrameIndex="23" X="1.75061" Y="1.75061" /> <PointFrame FrameIndex="24" Tween="False" X="-16.57179" Y="-16.57179" /> <PointFrame FrameIndex="26" Tween="False" X="-11.53824" Y="-11.53824" /> <PointFrame FrameIndex="28" Tween="False" X="-6.540665" Y="-6.540665" /> <PointFrame FrameIndex="29" Tween="False" X="-4.205505" Y="-4.205505" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="32" X="0" Y="0" /> <PointFrame FrameIndex="33" X="6.506134" Y="6.506134" /> <PointFrame FrameIndex="34" X="-42.61124" Y="-42.61124" /> <PointFrame FrameIndex="38" X="-43.61803" Y="-43.61803" /> <PointFrame FrameIndex="39" X="-45.1226" Y="-45.1226" /> <PointFrame FrameIndex="43" X="-43.61803" Y="-43.61803" /> <PointFrame FrameIndex="44" X="-45.1226" Y="-45.1226" /> <PointFrame FrameIndex="47" X="-43.61803" Y="-43.61803" /> <PointFrame FrameIndex="48" X="-45.1226" Y="-45.1226" /> <PointFrame FrameIndex="52" X="-42.61124" Y="-42.61124" /> <PointFrame FrameIndex="54" X="0" Y="0" /> </Timeline> <Timeline ActionTag="-1678540638" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="-1678540638" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5011236" Y="0.4995536" /> <PointFrame FrameIndex="6" X="0.5016854" Y="0.4991072" /> <PointFrame FrameIndex="13" X="0.5011236" Y="0.4995536" /> <PointFrame FrameIndex="14" X="0.5011236" Y="0.4995536" /> <PointFrame FrameIndex="15" X="0.5011236" Y="0.5004464" /> <PointFrame FrameIndex="16" X="0.5033708" Y="0.5004464" /> <PointFrame FrameIndex="18" X="0.5" Y="0.4995536" /> <PointFrame FrameIndex="19" X="0.5039326" Y="0.4991072" /> <PointFrame FrameIndex="20" X="0.5011236" Y="0.4982143" /> <PointFrame FrameIndex="21" X="0.5011236" Y="0.4995536" /> <PointFrame FrameIndex="22" X="0.5011236" Y="0.4995536" /> <PointFrame FrameIndex="23" X="0.5016854" Y="0.4991072" /> <PointFrame FrameIndex="24" X="0.5016854" Y="0.4973214" /> <PointFrame FrameIndex="26" X="0.5044944" Y="0.5004464" /> <PointFrame FrameIndex="28" X="0.5016854" Y="0.4991072" /> <PointFrame FrameIndex="29" X="0.5011236" Y="0.4991072" /> <PointFrame FrameIndex="30" X="0.5011236" Y="0.4995536" /> <PointFrame FrameIndex="32" X="0.5016854" Y="0.4991072" /> <PointFrame FrameIndex="33" X="0.5011236" Y="0.5004464" /> <PointFrame FrameIndex="34" X="0.5033708" Y="0.5004464" /> <PointFrame FrameIndex="38" X="0.5" Y="0.4995536" /> <PointFrame FrameIndex="39" X="0.5039326" Y="0.4991072" /> <PointFrame FrameIndex="43" X="0.5" Y="0.4995536" /> <PointFrame FrameIndex="44" X="0.5039326" Y="0.4991072" /> <PointFrame FrameIndex="47" X="0.5" Y="0.4995536" /> <PointFrame FrameIndex="48" X="0.5039326" Y="0.4991072" /> <PointFrame FrameIndex="52" X="0.5011236" Y="0.4982143" /> <PointFrame FrameIndex="54" X="0.5011236" Y="0.4995536" /> </Timeline> <Timeline ActionTag="-1678540660" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-28.65" Y="71.35" /> <PointFrame FrameIndex="6" X="-30.05" Y="70.55" /> <PointFrame FrameIndex="13" Tween="False" X="-28.65" Y="71.35" /> <PointFrame FrameIndex="14" X="-28.65" Y="71.35" /> <PointFrame FrameIndex="15" X="-17.55" Y="74.95" /> <PointFrame FrameIndex="16" X="-34.55" Y="57.3" /> <PointFrame FrameIndex="18" X="-42.95" Y="48.55" /> <PointFrame FrameIndex="19" X="-47.25" Y="45.15" /> <PointFrame FrameIndex="20" X="-42.5" Y="49.25" /> <PointFrame FrameIndex="21" X="-28.65" Y="71.35" /> <PointFrame FrameIndex="22" X="-28.65" Y="71.35" /> <PointFrame FrameIndex="23" X="-28.7" Y="72.75" /> <PointFrame FrameIndex="24" Tween="False" X="-29.55" Y="66.5" /> <PointFrame FrameIndex="26" Tween="False" X="-28.6" Y="66.8" /> <PointFrame FrameIndex="28" Tween="False" X="-28.5" Y="68.2" /> <PointFrame FrameIndex="29" Tween="False" X="-28.55" Y="69.25" /> <PointFrame FrameIndex="30" X="-28.65" Y="71.35" /> <PointFrame FrameIndex="32" X="-30.05" Y="70.55" /> <PointFrame FrameIndex="33" X="-17.55" Y="74.95" /> <PointFrame FrameIndex="34" X="-34.55" Y="57.3" /> <PointFrame FrameIndex="38" X="-42.95" Y="48.55" /> <PointFrame FrameIndex="39" X="-47.25" Y="45.15" /> <PointFrame FrameIndex="43" X="-42.95" Y="48.55" /> <PointFrame FrameIndex="44" X="-47.25" Y="45.15" /> <PointFrame FrameIndex="47" X="-42.95" Y="48.55" /> <PointFrame FrameIndex="48" X="-47.25" Y="45.15" /> <PointFrame FrameIndex="52" X="-42.5" Y="49.25" /> <PointFrame FrameIndex="54" X="-28.65" Y="71.35" /> </Timeline> <Timeline ActionTag="-1678540660" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="6" X="0.2620544" Y="0.2620544" /> <PointFrame FrameIndex="13" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="14" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="15" X="0.261795" Y="0.261795" /> <PointFrame FrameIndex="16" X="0.2619781" Y="0.2619781" /> <PointFrame FrameIndex="18" X="0.2617493" Y="0.2617493" /> <PointFrame FrameIndex="19" X="0.2619476" Y="0.2619476" /> <PointFrame FrameIndex="20" X="0.2617645" Y="0.2617645" /> <PointFrame FrameIndex="21" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="22" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="23" X="0.2620544" Y="0.2620544" /> <PointFrame FrameIndex="24" Tween="False" X="0.2621307" Y="0.2621307" /> <PointFrame FrameIndex="26" Tween="False" X="0.2617035" Y="0.2617035" /> <PointFrame FrameIndex="28" Tween="False" X="0.2616882" Y="0.2616882" /> <PointFrame FrameIndex="29" Tween="False" X="0.2621307" Y="0.2621307" /> <PointFrame FrameIndex="30" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="32" X="0.2620544" Y="0.2620544" /> <PointFrame FrameIndex="33" X="0.261795" Y="0.261795" /> <PointFrame FrameIndex="34" X="0.2619781" Y="0.2619781" /> <PointFrame FrameIndex="38" X="0.2617493" Y="0.2617493" /> <PointFrame FrameIndex="39" X="0.2619476" Y="0.2619476" /> <PointFrame FrameIndex="43" X="0.2617493" Y="0.2617493" /> <PointFrame FrameIndex="44" X="0.2619476" Y="0.2619476" /> <PointFrame FrameIndex="47" X="0.2617493" Y="0.2617493" /> <PointFrame FrameIndex="48" X="0.2619476" Y="0.2619476" /> <PointFrame FrameIndex="52" X="0.2617645" Y="0.2617645" /> <PointFrame FrameIndex="54" X="0.262146" Y="0.262146" /> </Timeline> <Timeline ActionTag="-1678540660" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="5.505722" Y="5.505722" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="-26.30006" Y="-26.30006" /> <PointFrame FrameIndex="16" X="-79.23853" Y="-79.23853" /> <PointFrame FrameIndex="18" X="-33.82625" Y="-33.82625" /> <PointFrame FrameIndex="19" X="-14.26805" Y="-14.26805" /> <PointFrame FrameIndex="20" X="-32.57457" Y="-32.57457" /> <PointFrame FrameIndex="21" X="0" Y="0" /> <PointFrame FrameIndex="22" X="0" Y="0" /> <PointFrame FrameIndex="23" X="6.002502" Y="6.002502" /> <PointFrame FrameIndex="24" Tween="False" X="-58.43805" Y="-58.43805" /> <PointFrame FrameIndex="26" Tween="False" X="-41.33604" Y="-41.33604" /> <PointFrame FrameIndex="28" Tween="False" X="-24.0565" Y="-24.0565" /> <PointFrame FrameIndex="29" Tween="False" X="-15.4929" Y="-15.4929" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="32" X="5.505722" Y="5.505722" /> <PointFrame FrameIndex="33" X="-26.30006" Y="-26.30006" /> <PointFrame FrameIndex="34" X="-79.23853" Y="-79.23853" /> <PointFrame FrameIndex="38" X="-33.82625" Y="-33.82625" /> <PointFrame FrameIndex="39" X="-14.26805" Y="-14.26805" /> <PointFrame FrameIndex="43" X="-33.82625" Y="-33.82625" /> <PointFrame FrameIndex="44" X="-14.26805" Y="-14.26805" /> <PointFrame FrameIndex="47" X="-33.82625" Y="-33.82625" /> <PointFrame FrameIndex="48" X="-14.26805" Y="-14.26805" /> <PointFrame FrameIndex="52" X="-32.57457" Y="-32.57457" /> <PointFrame FrameIndex="54" X="0" Y="0" /> </Timeline> <Timeline ActionTag="-1678540636" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="-1678540636" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.4998024" Y="0.5" /> <PointFrame FrameIndex="6" X="0.4998024" Y="0.5" /> <PointFrame FrameIndex="13" X="0.4998024" Y="0.5" /> <PointFrame FrameIndex="14" X="0.4998024" Y="0.5" /> <PointFrame FrameIndex="15" X="0.4994071" Y="0.5" /> <PointFrame FrameIndex="16" X="0.4996047" Y="0.5008876" /> <PointFrame FrameIndex="18" X="0.4998024" Y="0.5008876" /> <PointFrame FrameIndex="19" X="0.4996047" Y="0.5005917" /> <PointFrame FrameIndex="20" X="0.4996047" Y="0.5008876" /> <PointFrame FrameIndex="21" X="0.4998024" Y="0.5" /> <PointFrame FrameIndex="22" X="0.4998024" Y="0.5" /> <PointFrame FrameIndex="23" X="0.4998024" Y="0.5002959" /> <PointFrame FrameIndex="24" X="0.4998024" Y="0.5002959" /> <PointFrame FrameIndex="26" X="0.4998024" Y="0.4997042" /> <PointFrame FrameIndex="28" X="0.5001976" Y="0.5002959" /> <PointFrame FrameIndex="29" X="0.4996047" Y="0.5002959" /> <PointFrame FrameIndex="30" X="0.4998024" Y="0.5" /> <PointFrame FrameIndex="32" X="0.4998024" Y="0.5" /> <PointFrame FrameIndex="33" X="0.4994071" Y="0.5" /> <PointFrame FrameIndex="34" X="0.4996047" Y="0.5008876" /> <PointFrame FrameIndex="38" X="0.4998024" Y="0.5008876" /> <PointFrame FrameIndex="39" X="0.4996047" Y="0.5005917" /> <PointFrame FrameIndex="43" X="0.4998024" Y="0.5008876" /> <PointFrame FrameIndex="44" X="0.4996047" Y="0.5005917" /> <PointFrame FrameIndex="47" X="0.4998024" Y="0.5008876" /> <PointFrame FrameIndex="48" X="0.4996047" Y="0.5005917" /> <PointFrame FrameIndex="52" X="0.4996047" Y="0.5008876" /> <PointFrame FrameIndex="54" X="0.4998024" Y="0.5" /> </Timeline> <Timeline ActionTag="-1678540637" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="-4.4" Y="97" /> <PointFrame FrameIndex="6" X="-4.4" Y="96" /> <PointFrame FrameIndex="13" Tween="False" X="-4.4" Y="97" /> <PointFrame FrameIndex="14" X="-4.4" Y="97" /> <PointFrame FrameIndex="15" X="1.35" Y="97.8" /> <PointFrame FrameIndex="16" X="-39.75" Y="85.65" /> <PointFrame FrameIndex="18" X="-40.95" Y="84.85" /> <PointFrame FrameIndex="19" X="-40.95" Y="82.75" /> <PointFrame FrameIndex="20" X="-39.75" Y="85.65" /> <PointFrame FrameIndex="21" X="-4.4" Y="97" /> <PointFrame FrameIndex="22" X="-4.4" Y="97" /> <PointFrame FrameIndex="23" X="-2.75" Y="97.25" /> <PointFrame FrameIndex="24" Tween="False" X="-21.3" Y="92.1" /> <PointFrame FrameIndex="26" Tween="False" X="-16.05" Y="93.6" /> <PointFrame FrameIndex="28" Tween="False" X="-10.9" Y="95.05" /> <PointFrame FrameIndex="29" Tween="False" X="-8.25" Y="95.75" /> <PointFrame FrameIndex="30" X="-4.4" Y="97" /> <PointFrame FrameIndex="32" X="-4.4" Y="96" /> <PointFrame FrameIndex="33" X="1.35" Y="97.8" /> <PointFrame FrameIndex="34" X="-39.75" Y="85.65" /> <PointFrame FrameIndex="38" X="-40.95" Y="84.85" /> <PointFrame FrameIndex="39" X="-40.95" Y="82.75" /> <PointFrame FrameIndex="43" X="-40.95" Y="84.85" /> <PointFrame FrameIndex="44" X="-40.95" Y="82.75" /> <PointFrame FrameIndex="47" X="-40.95" Y="84.85" /> <PointFrame FrameIndex="48" X="-40.95" Y="82.75" /> <PointFrame FrameIndex="52" X="-39.75" Y="85.65" /> <PointFrame FrameIndex="54" X="-4.4" Y="97" /> </Timeline> <Timeline ActionTag="-1678540637" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="6" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="13" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="14" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="15" X="0.2620544" Y="0.2620544" /> <PointFrame FrameIndex="16" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="18" X="0.2617035" Y="0.2617035" /> <PointFrame FrameIndex="19" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="20" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="21" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="22" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="23" X="0.2621155" Y="0.2621155" /> <PointFrame FrameIndex="24" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="26" Tween="False" X="0.2619934" Y="0.2619934" /> <PointFrame FrameIndex="28" Tween="False" X="0.2620087" Y="0.2620087" /> <PointFrame FrameIndex="29" Tween="False" X="0.2621307" Y="0.2621307" /> <PointFrame FrameIndex="30" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="32" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="33" X="0.2620544" Y="0.2620544" /> <PointFrame FrameIndex="34" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="38" X="0.2617035" Y="0.2617035" /> <PointFrame FrameIndex="39" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="43" X="0.2617035" Y="0.2617035" /> <PointFrame FrameIndex="44" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="47" X="0.2617035" Y="0.2617035" /> <PointFrame FrameIndex="48" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="52" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="54" X="0.262146" Y="0.262146" /> </Timeline> <Timeline ActionTag="-1678540637" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="0" Y="0" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="6.506134" Y="6.506134" /> <PointFrame FrameIndex="16" X="-42.61124" Y="-42.61124" /> <PointFrame FrameIndex="18" X="-43.61803" Y="-43.61803" /> <PointFrame FrameIndex="19" X="-45.1226" Y="-45.1226" /> <PointFrame FrameIndex="20" X="-42.61124" Y="-42.61124" /> <PointFrame FrameIndex="21" X="0" Y="0" /> <PointFrame FrameIndex="22" X="0" Y="0" /> <PointFrame FrameIndex="23" X="1.75061" Y="1.75061" /> <PointFrame FrameIndex="24" Tween="False" X="-15.69649" Y="-15.69649" /> <PointFrame FrameIndex="26" Tween="False" X="-10.8121" Y="-10.8121" /> <PointFrame FrameIndex="28" Tween="False" X="-6.050919" Y="-6.050919" /> <PointFrame FrameIndex="29" Tween="False" X="-3.867981" Y="-3.867981" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="32" X="0" Y="0" /> <PointFrame FrameIndex="33" X="6.506134" Y="6.506134" /> <PointFrame FrameIndex="34" X="-42.61124" Y="-42.61124" /> <PointFrame FrameIndex="38" X="-43.61803" Y="-43.61803" /> <PointFrame FrameIndex="39" X="-45.1226" Y="-45.1226" /> <PointFrame FrameIndex="43" X="-43.61803" Y="-43.61803" /> <PointFrame FrameIndex="44" X="-45.1226" Y="-45.1226" /> <PointFrame FrameIndex="47" X="-43.61803" Y="-43.61803" /> <PointFrame FrameIndex="48" X="-45.1226" Y="-45.1226" /> <PointFrame FrameIndex="52" X="-42.61124" Y="-42.61124" /> <PointFrame FrameIndex="54" X="0" Y="0" /> </Timeline> <Timeline ActionTag="-1678540634" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="True" /> </Timeline> <Timeline ActionTag="-1678540634" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="0" X="0.5006493" Y="0.5" /> <PointFrame FrameIndex="6" X="0.5006493" Y="0.4996795" /> <PointFrame FrameIndex="13" X="0.5006493" Y="0.5" /> <PointFrame FrameIndex="14" X="0.5006493" Y="0.5" /> <PointFrame FrameIndex="15" X="0.5019481" Y="0.5003205" /> <PointFrame FrameIndex="16" X="0.4980519" Y="0.500641" /> <PointFrame FrameIndex="18" X="0.5" Y="0.499359" /> <PointFrame FrameIndex="19" X="0.5" Y="0.500641" /> <PointFrame FrameIndex="20" X="0.4980519" Y="0.500641" /> <PointFrame FrameIndex="21" X="0.5006493" Y="0.5" /> <PointFrame FrameIndex="22" X="0.5006493" Y="0.5" /> <PointFrame FrameIndex="23" X="0.5019481" Y="0.5003205" /> <PointFrame FrameIndex="24" X="0.5032467" Y="0.500641" /> <PointFrame FrameIndex="26" X="0.4993506" Y="0.5" /> <PointFrame FrameIndex="28" X="0.5" Y="0.499359" /> <PointFrame FrameIndex="29" X="0.5006493" Y="0.5003205" /> <PointFrame FrameIndex="30" X="0.5006493" Y="0.5" /> <PointFrame FrameIndex="32" X="0.5006493" Y="0.4996795" /> <PointFrame FrameIndex="33" X="0.5019481" Y="0.5003205" /> <PointFrame FrameIndex="34" X="0.4980519" Y="0.500641" /> <PointFrame FrameIndex="38" X="0.5" Y="0.499359" /> <PointFrame FrameIndex="39" X="0.4993506" Y="0.5009615" /> <PointFrame FrameIndex="43" X="0.5" Y="0.499359" /> <PointFrame FrameIndex="44" X="0.5" Y="0.500641" /> <PointFrame FrameIndex="47" X="0.5" Y="0.499359" /> <PointFrame FrameIndex="48" X="0.5" Y="0.500641" /> <PointFrame FrameIndex="52" X="0.4980519" Y="0.500641" /> <PointFrame FrameIndex="54" X="0.5006493" Y="0.5" /> </Timeline> <Timeline ActionTag="-1678540635" FrameType="PositionFrame"> <PointFrame FrameIndex="0" X="25.15" Y="97.9" /> <PointFrame FrameIndex="6" X="25.15" Y="97" /> <PointFrame FrameIndex="13" Tween="False" X="25.15" Y="97.9" /> <PointFrame FrameIndex="14" X="25.15" Y="97.9" /> <PointFrame FrameIndex="15" X="30.85" Y="95.3" /> <PointFrame FrameIndex="16" X="-18.6" Y="106.45" /> <PointFrame FrameIndex="18" X="-20.25" Y="106.05" /> <PointFrame FrameIndex="19" X="-20.75" Y="104.35" /> <PointFrame FrameIndex="20" X="-18.6" Y="106.45" /> <PointFrame FrameIndex="21" X="25.15" Y="97.9" /> <PointFrame FrameIndex="22" X="25.15" Y="97.9" /> <PointFrame FrameIndex="23" X="26.85" Y="97.25" /> <PointFrame FrameIndex="24" Tween="False" X="6.05" Y="102.5" /> <PointFrame FrameIndex="26" Tween="False" X="11.75" Y="101.6" /> <PointFrame FrameIndex="28" Tween="False" X="17.5" Y="100.65" /> <PointFrame FrameIndex="29" Tween="False" X="20.3" Y="100.15" /> <PointFrame FrameIndex="30" X="25.15" Y="97.9" /> <PointFrame FrameIndex="32" X="25.15" Y="97" /> <PointFrame FrameIndex="33" X="30.85" Y="95.3" /> <PointFrame FrameIndex="34" X="-18.6" Y="106.45" /> <PointFrame FrameIndex="38" X="-20.25" Y="106.05" /> <PointFrame FrameIndex="39" X="-20.75" Y="104.35" /> <PointFrame FrameIndex="43" X="-20.25" Y="106.05" /> <PointFrame FrameIndex="44" X="-20.75" Y="104.35" /> <PointFrame FrameIndex="47" X="-20.25" Y="106.05" /> <PointFrame FrameIndex="48" X="-20.75" Y="104.35" /> <PointFrame FrameIndex="52" X="-18.6" Y="106.45" /> <PointFrame FrameIndex="54" X="25.15" Y="97.9" /> </Timeline> <Timeline ActionTag="-1678540635" FrameType="ScaleFrame"> <PointFrame FrameIndex="0" X="0.2359314" Y="0.2359314" /> <PointFrame FrameIndex="6" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="13" Tween="False" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="14" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="15" X="0.2620544" Y="0.2620544" /> <PointFrame FrameIndex="16" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="18" X="0.2617035" Y="0.2617035" /> <PointFrame FrameIndex="19" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="20" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="21" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="22" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="23" X="0.2621155" Y="0.2621155" /> <PointFrame FrameIndex="24" Tween="False" X="0.2359314" Y="0.2359314" /> <PointFrame FrameIndex="26" Tween="False" X="0.2357788" Y="0.2357788" /> <PointFrame FrameIndex="28" Tween="False" X="0.2357941" Y="0.2357941" /> <PointFrame FrameIndex="29" Tween="False" X="0.2359314" Y="0.2359314" /> <PointFrame FrameIndex="30" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="32" X="0.262146" Y="0.262146" /> <PointFrame FrameIndex="33" X="0.2620544" Y="0.2620544" /> <PointFrame FrameIndex="34" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="38" X="0.2617035" Y="0.2617035" /> <PointFrame FrameIndex="39" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="43" X="0.2617035" Y="0.2617035" /> <PointFrame FrameIndex="44" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="47" X="0.2617035" Y="0.2617035" /> <PointFrame FrameIndex="48" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="52" X="0.2617188" Y="0.2617188" /> <PointFrame FrameIndex="54" X="0.262146" Y="0.262146" /> </Timeline> <Timeline ActionTag="-1678540635" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="0" X="0" Y="0" /> <PointFrame FrameIndex="6" X="0" Y="0" /> <PointFrame FrameIndex="13" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="14" X="0" Y="0" /> <PointFrame FrameIndex="15" X="6.506134" Y="6.506134" /> <PointFrame FrameIndex="16" X="-42.61124" Y="-42.61124" /> <PointFrame FrameIndex="18" X="-43.61803" Y="-43.61803" /> <PointFrame FrameIndex="19" X="-45.1226" Y="-45.1226" /> <PointFrame FrameIndex="20" X="-42.61124" Y="-42.61124" /> <PointFrame FrameIndex="21" X="0" Y="0" /> <PointFrame FrameIndex="22" X="0" Y="0" /> <PointFrame FrameIndex="23" X="1.75061" Y="1.75061" /> <PointFrame FrameIndex="24" Tween="False" X="-16.19681" Y="-16.19681" /> <PointFrame FrameIndex="26" Tween="False" X="-11.52313" Y="-11.52313" /> <PointFrame FrameIndex="28" Tween="False" X="-6.793365" Y="-6.793365" /> <PointFrame FrameIndex="29" Tween="False" X="-4.595749" Y="-4.595749" /> <PointFrame FrameIndex="30" X="0" Y="0" /> <PointFrame FrameIndex="32" X="0" Y="0" /> <PointFrame FrameIndex="33" X="6.506134" Y="6.506134" /> <PointFrame FrameIndex="34" X="-42.61124" Y="-42.61124" /> <PointFrame FrameIndex="38" X="-43.61803" Y="-43.61803" /> <PointFrame FrameIndex="39" X="-45.11778" Y="-45.11778" /> <PointFrame FrameIndex="43" X="-43.61803" Y="-43.61803" /> <PointFrame FrameIndex="44" X="-45.1226" Y="-45.1226" /> <PointFrame FrameIndex="47" X="-43.61803" Y="-43.61803" /> <PointFrame FrameIndex="48" X="-45.1226" Y="-45.1226" /> <PointFrame FrameIndex="52" X="-42.61124" Y="-42.61124" /> <PointFrame FrameIndex="54" X="0" Y="0" /> </Timeline> <Timeline ActionTag="-1678540632" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="30" Value="True" /> <BoolFrame FrameIndex="32" Value="False" /> </Timeline> <Timeline ActionTag="-1678540631" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="32" Value="True" /> <BoolFrame FrameIndex="34" Value="False" /> </Timeline> <Timeline ActionTag="-1678540630" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="34" Value="True" /> <BoolFrame FrameIndex="35" Value="False" /> </Timeline> <Timeline ActionTag="-1678540630" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="34" X="0.49975" Y="0.5" /> </Timeline> <Timeline ActionTag="-1678540633" FrameType="PositionFrame"> <PointFrame FrameIndex="30" Tween="False" X="-7.55" Y="76.65" /> <PointFrame FrameIndex="32" Tween="False" X="-7.55" Y="77.15" /> <PointFrame FrameIndex="34" Tween="False" X="-7.55" Y="77.15" /> </Timeline> <Timeline ActionTag="-1678540633" FrameType="ScaleFrame"> <PointFrame FrameIndex="30" Tween="False" X="1" Y="1" /> <PointFrame FrameIndex="32" Tween="False" X="1" Y="1" /> <PointFrame FrameIndex="34" Tween="False" X="0.8171844" Y="0.8171844" /> </Timeline> <Timeline ActionTag="-1678540633" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="30" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="32" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="34" Tween="False" X="0" Y="0" /> </Timeline> <Timeline ActionTag="-1678540607" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="30" Value="True" /> <BoolFrame FrameIndex="31" Value="False" /> </Timeline> <Timeline ActionTag="-1678540607" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="30" X="0.50025" Y="0.49975" /> </Timeline> <Timeline ActionTag="-1678540606" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="31" Value="True" /> <BoolFrame FrameIndex="32" Value="False" /> </Timeline> <Timeline ActionTag="-1678540606" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="31" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="-1678540605" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="32" Value="True" /> <BoolFrame FrameIndex="33" Value="False" /> </Timeline> <Timeline ActionTag="-1678540605" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="32" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="-1678540604" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="33" Value="True" /> <BoolFrame FrameIndex="34" Value="False" /> </Timeline> <Timeline ActionTag="-1678540604" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="33" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="-1678540603" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="34" Value="True" /> <BoolFrame FrameIndex="35" Value="False" /> <BoolFrame FrameIndex="41" Value="True" /> <BoolFrame FrameIndex="43" Value="False" /> </Timeline> <Timeline ActionTag="-1678540603" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="34" X="0.5" Y="0.5" /> <PointFrame FrameIndex="41" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="-1678540602" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="35" Value="True" /> <BoolFrame FrameIndex="37" Value="False" /> <BoolFrame FrameIndex="49" Value="True" /> <BoolFrame FrameIndex="51" Value="False" /> </Timeline> <Timeline ActionTag="-1678540602" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="35" X="0.5" Y="0.5" /> <PointFrame FrameIndex="49" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="-1678540601" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="37" Value="True" /> <BoolFrame FrameIndex="39" Value="False" /> </Timeline> <Timeline ActionTag="-1678540600" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="39" Value="True" /> <BoolFrame FrameIndex="41" Value="False" /> <BoolFrame FrameIndex="46" Value="True" /> <BoolFrame FrameIndex="47" Value="False" /> <BoolFrame FrameIndex="52" Value="True" /> <BoolFrame FrameIndex="53" Value="False" /> </Timeline> <Timeline ActionTag="-1678540600" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="39" X="0.5" Y="0.5" /> <PointFrame FrameIndex="46" X="0.5" Y="0.5" /> <PointFrame FrameIndex="52" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="-1678540599" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="43" Value="True" /> <BoolFrame FrameIndex="45" Value="False" /> </Timeline> <Timeline ActionTag="-1678540598" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="45" Value="True" /> <BoolFrame FrameIndex="46" Value="False" /> <BoolFrame FrameIndex="51" Value="True" /> <BoolFrame FrameIndex="52" Value="False" /> </Timeline> <Timeline ActionTag="-1678540598" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="45" X="0.5" Y="0.5" /> <PointFrame FrameIndex="51" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="-1678540576" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="47" Value="True" /> <BoolFrame FrameIndex="49" Value="False" /> </Timeline> <Timeline ActionTag="-1678540575" FrameType="VisibleFrame"> <BoolFrame FrameIndex="0" Value="False" /> <BoolFrame FrameIndex="53" Value="True" /> </Timeline> <Timeline ActionTag="-1678540575" FrameType="AnchorPointFrame"> <PointFrame FrameIndex="53" X="0.5" Y="0.5" /> <PointFrame FrameIndex="54" X="0.5" Y="0.5" /> </Timeline> <Timeline ActionTag="-1678540629" FrameType="PositionFrame"> <PointFrame FrameIndex="30" Tween="False" X="-8.1" Y="72.95" /> <PointFrame FrameIndex="31" Tween="False" X="-7.75" Y="72.55" /> <PointFrame FrameIndex="32" Tween="False" X="-7.75" Y="72.55" /> <PointFrame FrameIndex="33" Tween="False" X="-7.75" Y="72.55" /> <PointFrame FrameIndex="34" Tween="False" X="-7.75" Y="72.55" /> <PointFrame FrameIndex="35" Tween="False" X="-7.75" Y="72.55" /> <PointFrame FrameIndex="37" Tween="False" X="-7.8" Y="72.6" /> <PointFrame FrameIndex="39" Tween="False" X="-7.75" Y="72.55" /> <PointFrame FrameIndex="41" Tween="False" X="-7.75" Y="72.55" /> <PointFrame FrameIndex="43" Tween="False" X="-7.8" Y="72.6" /> <PointFrame FrameIndex="45" Tween="False" X="-7.75" Y="72.55" /> <PointFrame FrameIndex="46" Tween="False" X="-7.75" Y="72.55" /> <PointFrame FrameIndex="47" Tween="False" X="-7.8" Y="72.6" /> <PointFrame FrameIndex="49" Tween="False" X="-7.75" Y="72.55" /> <PointFrame FrameIndex="51" Tween="False" X="-7.75" Y="72.55" /> <PointFrame FrameIndex="52" Tween="False" X="-7.75" Y="72.55" /> <PointFrame FrameIndex="53" Tween="False" X="-7.75" Y="72.55" /> <PointFrame FrameIndex="54" Tween="False" X="-7.75" Y="72.55" /> </Timeline> <Timeline ActionTag="-1678540629" FrameType="ScaleFrame"> <PointFrame FrameIndex="30" Tween="False" X="0.8171844" Y="0.8171844" /> <PointFrame FrameIndex="31" Tween="False" X="0.8171844" Y="0.8171844" /> <PointFrame FrameIndex="32" Tween="False" X="0.7354584" Y="0.7354584" /> <PointFrame FrameIndex="33" Tween="False" X="0.8171844" Y="0.8171844" /> <PointFrame FrameIndex="34" Tween="False" X="0.8171844" Y="0.8171844" /> <PointFrame FrameIndex="35" Tween="False" X="0.8171844" Y="0.8171844" /> <PointFrame FrameIndex="37" Tween="False" X="1" Y="1" /> <PointFrame FrameIndex="39" Tween="False" X="0.8171844" Y="0.8171844" /> <PointFrame FrameIndex="41" Tween="False" X="0.8171844" Y="0.8171844" /> <PointFrame FrameIndex="43" Tween="False" X="1" Y="1" /> <PointFrame FrameIndex="45" Tween="False" X="0.8171844" Y="0.8171844" /> <PointFrame FrameIndex="46" Tween="False" X="0.8171844" Y="0.8171844" /> <PointFrame FrameIndex="47" Tween="False" X="1" Y="1" /> <PointFrame FrameIndex="49" Tween="False" X="0.8171844" Y="0.8171844" /> <PointFrame FrameIndex="51" Tween="False" X="0.8171844" Y="0.8171844" /> <PointFrame FrameIndex="52" Tween="False" X="0.8171844" Y="0.8171844" /> <PointFrame FrameIndex="53" Tween="False" X="0.8171844" Y="0.8171844" /> <PointFrame FrameIndex="54" Tween="False" X="0.8171844" Y="0.8171844" /> </Timeline> <Timeline ActionTag="-1678540629" FrameType="RotationSkewFrame"> <PointFrame FrameIndex="30" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="31" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="32" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="33" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="34" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="35" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="37" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="39" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="41" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="43" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="45" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="46" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="47" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="49" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="51" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="52" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="53" Tween="False" X="0" Y="0" /> <PointFrame FrameIndex="54" Tween="False" X="0" Y="0" /> </Timeline> </Animation> <ObjectData Name="captain_jack" CanEdit="False" Visible="False" FrameEvent=""> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="captain_jack_hair" ActionTag="-331241140" FrameEvent="player1_end" ctype="SingleNodeObjectData"> <Position X="-3.5" Y="58.55" /> <Scale ScaleX="0.262146" ScaleY="0.262146" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-331241139" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.4998408" ScaleY="0.5001529" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="314" Y="327" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_hair.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="captain_jack_arm_left" ActionTag="-331241138" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-19.4" Y="39.25" /> <Scale ScaleX="0.262146" ScaleY="0.262146" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-331241137" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.4976563" ScaleY="0.4964286" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="64" Y="56" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_arm_left.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="captain_jack_foot_right" ActionTag="-331241136" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="11.45" Y="7.7" /> <Scale ScaleX="0.262146" ScaleY="0.262146" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-331241135" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5025" ScaleY="0.5016129" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="60" Y="62" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_foot_right.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="captain_jack_leg_right" ActionTag="-331241134" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="9.9" Y="18.1" /> <Scale ScaleX="0.262146" ScaleY="0.262146" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-331241133" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.4991667" ScaleY="0.4992188" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="60" Y="64" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_leg_right.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="captain_jack_foot_left" ActionTag="-331241132" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-16.5" Y="7.55" /> <Scale ScaleX="0.262146" ScaleY="0.262146" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-1678540700" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.4938776" ScaleY="0.4993055" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="49" Y="72" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_foot_left.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="captain_jack_leg_left" ActionTag="-1678540699" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-9.55" Y="19.35" /> <Scale ScaleX="0.2621613" ScaleY="0.2621613" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-1678540698" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.4988372" ScaleY="0.4979452" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="86" Y="73" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_leg_left.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="captain_jack_arm_right" ActionTag="-1678540697" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="12.9" Y="41.55" /> <Scale ScaleX="0.262146" ScaleY="0.262146" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-1678540696" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.4952381" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="42" Y="45" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_arm_right.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="captain_jack_body" ActionTag="-1678540695" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-0.8" Y="35.8" /> <Scale ScaleX="0.262146" ScaleY="0.262146" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-1678540694" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5012712" ScaleY="0.5013762" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="118" Y="109" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_body.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="captain_jack_hand_gun_left" ActionTag="-1678540693" RotationSkewY="180" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="34.8" Y="49.65" /> <Scale ScaleX="0.262146" ScaleY="0.262146" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-1678540692" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5009677" ScaleY="0.4996689" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="155" Y="151" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_hand_gun_left.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="captain_jack_hand_knife_right" ActionTag="-1678540691" RotationSkewY="180" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-46.6" Y="54.3" /> <Scale ScaleX="0.262146" ScaleY="0.262146" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-1678540669" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5002415" ScaleY="0.4998168" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="207" Y="273" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_hand_knife_right.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="captain_jack_pants" ActionTag="-1678540668" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-15.65" Y="21.2" /> <Scale ScaleX="0.262146" ScaleY="0.262146" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-1678540667" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5030303" ScaleY="0.499505" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="66" Y="101" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_pants.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="captain_jack_head5" ActionTag="-1678540666" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="27.85" Y="69.8" /> <Scale ScaleX="0.262146" ScaleY="0.262146" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-1678540665" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.4976563" ScaleY="0.4982456" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="64" Y="57" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_head5.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="captain_jack_head3" ActionTag="-1678540664" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="23.35" Y="86.05" /> <Scale ScaleX="0.262146" ScaleY="0.262146" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-1678540663" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5011628" ScaleY="0.4997807" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="86" Y="228" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_head3.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="captain_jack_head6" ActionTag="-1678540662" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-10.55" Y="63.05" /> <Scale ScaleX="0.262146" ScaleY="0.262146" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-1678540661" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5001798" ScaleY="0.4997641" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="278" Y="212" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_head6.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="captain_jack_head1" ActionTag="-1678540660" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-28.65" Y="71.35" /> <Scale ScaleX="0.262146" ScaleY="0.262146" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-1678540638" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5011236" ScaleY="0.4995536" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="89" Y="112" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_head1.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="captain_jack_head2" ActionTag="-1678540637" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-4.4" Y="97" /> <Scale ScaleX="0.262146" ScaleY="0.262146" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-1678540636" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.4998024" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="253" Y="169" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_head2.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="captain_jack_head4" ActionTag="-1678540635" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="25.15" Y="97.9" /> <Scale ScaleX="0.262146" ScaleY="0.262146" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-1678540634" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5006493" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="77" Y="156" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_head4.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="captain_jack_glitter" ActionTag="-1678540633" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-7.55" Y="77.15" /> <Scale ScaleX="0.8171844" ScaleY="0.8171844" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-1678540632" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="163.999" Y="166.999" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_shape_0.png" /> </NodeObjectData> <NodeObjectData Name="SpriteObject" ActionTag="-1678540631" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="162.999" Y="162.999" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_shape_0.png" /> </NodeObjectData> <NodeObjectData Name="SpriteObject" ActionTag="-1678540630" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.49975" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="200" Y="200" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_sb_00035.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="captain_jack_pirate_effect" ActionTag="-1678540629" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="-7.75" Y="72.55" /> <Scale ScaleX="0.8171844" ScaleY="0.8171844" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <Children> <NodeObjectData Name="SpriteObject" ActionTag="-1678540607" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.50025" ScaleY="0.49975" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="200" Y="200" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/pirate_bqqh_00031.png" /> </NodeObjectData> <NodeObjectData Name="SpriteObject" ActionTag="-1678540606" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="200" Y="200" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/pirate_bqqh_00032.png" /> </NodeObjectData> <NodeObjectData Name="SpriteObject" ActionTag="-1678540605" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="200" Y="200" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/pirate_bqqh_00033.png" /> </NodeObjectData> <NodeObjectData Name="SpriteObject" ActionTag="-1678540604" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="200" Y="200" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/pirate_bqqh_00034.png" /> </NodeObjectData> <NodeObjectData Name="SpriteObject" ActionTag="-1678540603" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="200" Y="200" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/pirate_bqqh_00043.png" /> </NodeObjectData> <NodeObjectData Name="SpriteObject" ActionTag="-1678540602" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="200" Y="200" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/pirate_bqqh_00044.png" /> </NodeObjectData> <NodeObjectData Name="SpriteObject" ActionTag="-1678540601" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="162.999" Y="162.999" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_shape_0.png" /> </NodeObjectData> <NodeObjectData Name="SpriteObject" ActionTag="-1678540600" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="200" Y="200" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/pirate_bqqh_00046.png" /> </NodeObjectData> <NodeObjectData Name="SpriteObject" ActionTag="-1678540599" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="162.999" Y="162.999" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_shape_0.png" /> </NodeObjectData> <NodeObjectData Name="SpriteObject" ActionTag="-1678540598" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="200" Y="200" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/pirate_bqqh_00045.png" /> </NodeObjectData> <NodeObjectData Name="SpriteObject" ActionTag="-1678540576" VisibleForFrame="False" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="162.999" Y="162.999" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/captain_jack_shape_0.png" /> </NodeObjectData> <NodeObjectData Name="SpriteObject" ActionTag="-1678540575" FrameEvent="" ctype="SpriteObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="200" Y="200" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> <FileData Type="Normal" Path="captain_jack_png/pirate_bqqh_00055.png" /> </NodeObjectData> </Children> </NodeObjectData> <NodeObjectData Name="lable" ActionTag="-1678540574" FrameEvent="" ctype="SingleNodeObjectData"> <Position X="0" Y="0" /> <Scale ScaleX="1" ScaleY="1" /> <AnchorPoint ScaleX="0.5" ScaleY="0.5" /> <CColor A="255" R="255" G="255" B="255" /> <Size X="0" Y="0" /> <PrePosition X="0" Y="0" /> <PreSize X="0" Y="0" /> </NodeObjectData> </Children> </ObjectData> </Content> </Content> </GameProjectFile>
Csound
3
chukong/CocosStudioSamples
DemoMicroCardGame/CocosStudioResources/cocosstudio/captain_jack.csd
[ "MIT" ]
discard """ targets: "c js" """ # see also: tdeques, tlists, tcritbits import sets, tables, sequtils block tapply: var x = @[1, 2, 3] x.apply(proc(x: var int) = x = x+10) x.apply(proc(x: int): int = x+100) x.applyIt(it+5000) doAssert x == @[5111, 5112, 5113] block tmapit: var x = @[1, 2, 3] # This mapIt call will run with preallocation because ``len`` is available. var y = x.mapIt($(it+10)) doAssert y == @["11", "12", "13"] type structureWithoutLen = object a: array[5, int] iterator items(s: structureWithoutLen): int {.inline.} = yield s.a[0] yield s.a[1] yield s.a[2] yield s.a[3] yield s.a[4] var st: structureWithoutLen st.a[0] = 0 st.a[1] = 1 st.a[2] = 2 st.a[3] = 3 st.a[4] = 4 # this will run without preallocating the result # since ``len`` is not available var r = st.mapIt($(it+10)) doAssert r == @["10", "11", "12", "13", "14"] # Collections to string: # Tests for tuples doAssert $(1, 2, 3) == "(1, 2, 3)" doAssert $("1", "2", "3") == """("1", "2", "3")""" doAssert $('1', '2', '3') == """('1', '2', '3')""" # Tests for seqs doAssert $(@[1, 2, 3]) == "@[1, 2, 3]" doAssert $(@["1", "2", "3"]) == """@["1", "2", "3"]""" doAssert $(@['1', '2', '3']) == """@['1', '2', '3']""" # Tests for sets doAssert $(toHashSet([1])) == "{1}" doAssert $(toHashSet(["1"])) == """{"1"}""" doAssert $(toHashSet(['1'])) == """{'1'}""" doAssert $(toOrderedSet([1, 2, 3])) == "{1, 2, 3}" doAssert $(toOrderedSet(["1", "2", "3"])) == """{"1", "2", "3"}""" doAssert $(toOrderedSet(['1', '2', '3'])) == """{'1', '2', '3'}""" # see also: tcritbitsToString, tlistsToString # Tests for tables when defined(nimIntHash1): doAssert $({1: "1", 2: "2"}.toTable) == """{1: "1", 2: "2"}""" else: doAssert $({1: "1", 2: "2"}.toTable) == """{2: "2", 1: "1"}""" let tabStr = $({"1": 1, "2": 2}.toTable) doAssert (tabStr == """{"2": 2, "1": 1}""" or tabStr == """{"1": 1, "2": 2}""") # Test escaping behavior block: var s = "" s.addQuoted('\0') s.addQuoted('\31') s.addQuoted('\127') doAssert s == "'\\x00''\\x1F''\\x7F'" block: var s = "" s.addQuoted('\\') s.addQuoted('\'') s.addQuoted('\"') doAssert s == """'\\''\'''\"'""" block: var s = "" s.addQuoted("å") s.addQuoted("ä") s.addQuoted("ö") s.addEscapedChar('\xFF') doAssert s == """"å""ä""ö"\xFF""" # Test customized element representation type CustomString = object proc addQuoted(s: var string, x: CustomString) = s.add("<CustomString>") block: let s = @[CustomString()] doAssert $s == "@[<CustomString>]"
Nimrod
5
JohnAD/Nim
tests/collections/tcollections.nim
[ "MIT" ]
domain: "{ S2[i0, 1] : i0 >= 0 and i0 <= 9; S1[i0, 1] : i0 >= 0 and i0 <= 9; S3[i0, 1] : i0 >= 0 and i0 <= 9 }" child: context: "{ [] }" child: schedule: "[{ S3[i0, i1] -> [(i0)]; S1[i0, i1] -> [(i0)]; S2[i0, i1] -> [(i0)] }, { S3[i0, i1] -> [(i1)]; S1[i0, i1] -> [(i1)]; S2[i0, i1] -> [(i1)] }]" options: "{ separate[i0] }" child: sequence: - filter: "{ S1[i0, i1] }" - filter: "{ S3[i0, i1] }" - filter: "{ S2[i0, i1] }"
Smalltalk
3
chelini/isl-haystack
test_inputs/codegen/cloog/block2.st
[ "MIT" ]
.release-table tr { display: grid; grid-auto-flow: column; grid-template-columns: 1fr 4fr; }
CSS
3
GizMan/portainer
app/kubernetes/views/applications/helm/helm.css
[ "Zlib" ]
0 code_t "proc*" 1 reg32_t "dword" 2 union(code_t,ptr(num32_t)) "Union_0" 3 ptr(TOP) "void*" 4 ptr(union(ptr(TOP),num32_t)) "Union_4*" 5 ptr(array(reg8_t,44)) "unknown_352*" 6 ptr(reg64_t) "qword*" 7 ptr(reg32_t) "dword*" 8 num32_t "LONG" 9 ptr(code_t) "proc**" 10 ptr(struct(0:array(reg8_t,60),60:num32_t)) "StructFrag_10*" 11 ptr(struct(0:reg32_t,4:reg32_t,8:reg32_t,12:reg32_t)) "_EH4_SCOPETABLE*" 12 ptr(array(reg8_t,35)) "unknown_280*" 13 ptr(struct(0:array(reg8_t,60),60:reg32_t)) "StructFrag_4*" 3 ptr(TOP) "LPVOID" 0 code_t "(_Inout_ _EXCEPTION_POINTERS* -ms-> LONG)*" 14 ptr(struct(0:ptr(struct(0:reg32_t,4:reg32_t,8:ptr(struct(0:reg32_t,4:reg32_t,8:ptr(TOP),12:ptr(TOP),16:reg32_t,20:array(uint32_t,15))),12:ptr(TOP),16:reg32_t,20:array(uint32_t,15))),4:ptr(struct(0:reg32_t,4:reg32_t,8:reg32_t,12:reg32_t,16:reg32_t,20:reg32_t,24:reg32_t,28:struct(0:reg32_t,4:reg32_t,8:reg32_t,12:reg32_t,16:reg32_t,20:reg32_t,24:reg32_t,28:array(reg8_t,80),108:reg32_t),140:reg32_t,144:reg32_t,148:reg32_t,152:reg32_t,156:reg32_t,160:reg32_t,164:reg32_t,168:reg32_t,172:reg32_t,176:reg32_t,180:reg32_t,184:reg32_t,188:reg32_t,192:reg32_t,196:reg32_t,200:reg32_t,204:array(reg8_t,512))))) "_EXCEPTION_POINTERS*" 15 uint32_t "UINT" 1 reg32_t "HANDLE" 16 ptr(array(reg8_t,10)) "unknown_80*" 0 code_t "(void -> int)*" 17 ptr(struct(0:reg32_t,4:reg32_t)) "_FILETIME*" 3 ptr(TOP) "PVOID" 18 ptr(ptr(TOP)) "PVOID*" 19 ptr(num32_t) "int*" 20 ptr(union(num64_t,struct(0:reg32_t,4:num32_t))) "Union_1*" 21 ptr(num8_t) "char*" 15 uint32_t "size_t" 22 ptr(struct(0:ptr(num8_t),4:num32_t,8:ptr(num8_t),12:num32_t,16:num32_t,20:num32_t,24:num32_t,28:ptr(num8_t))) "FILE*" 0 code_t "(void -> void)*" 8 num32_t "int" 23 ptr(struct(0:reg32_t,8:ptr(TOP))) "Struct_2*" 21 ptr(num8_t) "char[]" 24 ptr(struct(0:reg16_t,2:num8_t)) "StructFrag_2*" 25 ptr(struct(4:ptr(struct(0:reg32_t,8:ptr(TOP))),8:reg32_t)) "Struct_6*" 18 ptr(ptr(TOP)) "void**" 15 uint32_t "unsigned int" 26 ptr(uint32_t) "unsigned int[]" 7 ptr(reg32_t) "dword[]" 27 num8_t "char" 28 int32_t "signed int" 29 ptr(ptr(num8_t)) "char**" 19 ptr(num32_t) "int[]" 30 ptr(int32_t) "signed int*" 31 ptr(struct(0:reg64_t,8:reg32_t)) "StructFrag_1*" 32 union(ptr(reg32_t),ptr(struct(0:reg64_t,8:reg32_t))) "Union_2" 33 ptr(reg16_t) "word*" 34 ptr(struct(0:array(reg8_t,36),36:uint32_t)) "StructFrag_9*" 35 ptr(struct(0:ptr(TOP),3928494081:num8_t)) "Struct_3*" 36 ptr(struct(0:union(ptr(reg32_t),ptr(struct(0:reg64_t,8:reg32_t))),4:union(ptr(reg32_t),ptr(struct(0:reg64_t,8:reg32_t))))) "Struct_9*" 0 code_t "(_Inout_ void* -> void)*" 0 code_t "(size_t -> void*)*" 37 ptr(struct(0:array(reg8_t,536870896),4294967280:reg32_t)) "StructFrag_3*" 38 ptr(struct(4294967272:ptr(TOP),4294967288:code_t,4294967292:code_t)) "Struct_14*" 0 code_t "(_Inout_ void*,size_t -> void*)*" 26 ptr(uint32_t) "unsigned int*" 0 code_t "(_Inout_ PVOID*,_Inout_ PVOID,_Inout_ PVOID -ms-> PVOID)*" 33 ptr(reg16_t) "word[]" 39 ptr(struct(0:array(reg8_t,6),6:num8_t)) "StructFrag_6*" 40 ptr(struct(0:reg32_t,4:num8_t)) "StructFrag_5*" 41 array(reg8_t,13) "unknown_104" 42 array(reg8_t,6) "unknown_48" 43 array(reg8_t,3) "unknown_24" 44 array(reg8_t,19) "unknown_152" 45 array(reg8_t,17) "unknown_136" 46 array(reg8_t,11) "unknown_88" 47 array(reg8_t,15) "unknown_120" 48 array(reg8_t,5) "unknown_40" 49 array(reg8_t,7) "unknown_56" 50 array(reg8_t,9) "unknown_72" 51 array(reg8_t,16) "unknown_128" 52 array(reg8_t,24) "unknown_192" 53 array(reg8_t,12) "unknown_96" 54 array(reg8_t,20) "unknown_160" 55 array(reg8_t,59) "unknown_472" 56 array(reg8_t,29) "unknown_232" 57 array(reg8_t,35) "unknown_280" 58 reg16_t "word" 59 array(reg8_t,40) "unknown_320" 60 array(reg8_t,10) "unknown_80" 61 array(reg8_t,26) "unknown_208" 62 array(reg8_t,25) "unknown_200" 63 array(reg8_t,22) "unknown_176" 64 array(reg8_t,14) "unknown_112" 65 array(reg8_t,18) "unknown_144" 66 array(reg8_t,55) "unknown_440" 67 array(reg8_t,21) "unknown_168" 68 array(reg8_t,48) "unknown_384" 69 array(reg8_t,32) "unknown_256" 70 array(reg8_t,28) "unknown_224" 71 array(reg8_t,31) "unknown_248" 72 array(reg8_t,56) "unknown_448" 73 array(reg8_t,34) "unknown_272" 74 array(reg8_t,79) "unknown_632" 75 array(reg8_t,38) "unknown_304" 76 array(reg8_t,37) "unknown_296" 77 array(reg8_t,65) "unknown_520" 78 array(reg8_t,67) "unknown_536" 79 array(reg8_t,53) "unknown_424" 80 array(reg8_t,33) "unknown_264" 81 array(reg8_t,49) "unknown_392" 82 array(reg8_t,46) "unknown_368" 83 reg64_t "qword" 84 array(reg8_t,44) "unknown_352" 85 array(reg8_t,41) "unknown_328" 86 array(reg8_t,39) "unknown_312" 87 array(reg8_t,47) "unknown_376" 88 array(reg8_t,52) "unknown_416" 89 array(reg8_t,36) "unknown_288" 90 array(reg8_t,88) "unknown_704" 91 array(reg8_t,43) "unknown_344" 92 array(reg8_t,23) "unknown_184" 93 array(reg8_t,42) "unknown_336" 94 array(reg8_t,27) "unknown_216" 95 array(reg8_t,30) "unknown_240" 96 array(reg8_t,125) "unknown_1000" 97 array(reg8_t,74) "unknown_592" 98 array(reg8_t,61) "unknown_488" 99 array(reg8_t,63) "unknown_504" 100 array(reg8_t,123) "unknown_984" 101 array(reg8_t,71) "unknown_568" 102 array(reg8_t,57) "unknown_456" 103 array(reg8_t,54) "unknown_432" 104 array(reg8_t,45) "unknown_360" 105 array(reg8_t,50) "unknown_400" 106 array(reg8_t,120) "unknown_960" 107 array(ptr(TOP),13) "void*[13]" 108 array(reg8_t,203) "unknown_1624" 109 array(ptr(TOP),4) "void*[4]" 110 array(reg8_t,202) "unknown_1616" 111 array(ptr(TOP),6) "void*[6]" 112 array(reg8_t,101) "unknown_808" 113 array(reg8_t,115) "unknown_920" 114 array(ptr(TOP),8) "void*[8]" 115 array(reg8_t,107) "unknown_856" 116 array(reg8_t,137) "unknown_1096" 117 array(reg8_t,70) "unknown_560" 118 array(reg8_t,3992) "unknown_31936" 0 code_t "(void -ms-> DWORD)*" 0 code_t "(_Inout_ LARGE_INTEGER* -ms-> BOOL)*" 0 code_t "(HMODULE -ms-> BOOL)*" 0 code_t "(void -ms-> BOOL)*" 0 code_t "(_Inout_ LPTOP_LEVEL_EXCEPTION_FILTER -ms-> LPTOP_LEVEL_EXCEPTION_FILTER)*" 0 code_t "(void -ms-> HANDLE)*" 0 code_t "(HANDLE,UINT -ms-> BOOL)*" 0 code_t "(DWORD -ms-> void)*" 0 code_t "(_Inout_ LPLONG,LONG -ms-> LONG)*" 0 code_t "(_Inout_ LPFILETIME -ms-> void)*" 0 code_t "(_Inout_ _onexit_t -> _onexit_t)*" 0 code_t "(void -> FILE*)*" 0 code_t "(_In_ char* -> char*)*" 0 code_t "(FILE*,_In_ char* -> int)*" 0 code_t "(size_t,size_t -> void*)*" 0 code_t "(_Inout_ void*,_In_ void*,size_t -> void*)*" 0 code_t "(_In_ char*,_In_ char* -> int)*" 119 struct(0:ptr(struct(0:reg32_t,4:reg32_t,8:ptr(struct(0:reg32_t,4:reg32_t,8:ptr(TOP),12:ptr(TOP),16:reg32_t,20:array(uint32_t,15))),12:ptr(TOP),16:reg32_t,20:array(uint32_t,15))),4:ptr(struct(0:reg32_t,4:reg32_t,8:reg32_t,12:reg32_t,16:reg32_t,20:reg32_t,24:reg32_t,28:struct(0:reg32_t,4:reg32_t,8:reg32_t,12:reg32_t,16:reg32_t,20:reg32_t,24:reg32_t,28:array(reg8_t,80),108:reg32_t),140:reg32_t,144:reg32_t,148:reg32_t,152:reg32_t,156:reg32_t,160:reg32_t,164:reg32_t,168:reg32_t,172:reg32_t,176:reg32_t,180:reg32_t,184:reg32_t,188:reg32_t,192:reg32_t,196:reg32_t,200:reg32_t,204:array(reg8_t,512)))) "_EXCEPTION_POINTERS" 120 ptr(struct(0:reg32_t,4:reg32_t,8:reg32_t,12:reg32_t,16:reg32_t,20:reg32_t,24:reg32_t,28:struct(0:reg32_t,4:reg32_t,8:reg32_t,12:reg32_t,16:reg32_t,20:reg32_t,24:reg32_t,28:array(reg8_t,80),108:reg32_t),140:reg32_t,144:reg32_t,148:reg32_t,152:reg32_t,156:reg32_t,160:reg32_t,164:reg32_t,168:reg32_t,172:reg32_t,176:reg32_t,180:reg32_t,184:reg32_t,188:reg32_t,192:reg32_t,196:reg32_t,200:reg32_t,204:array(reg8_t,512))) "CONTEXT*" 121 num16_t "short" 122 array(reg8_t,96) "unknown_768" 123 array(reg8_t,104) "unknown_832" 124 array(reg8_t,240) "unknown_1920" 125 array(reg8_t,672) "unknown_5376" 126 array(reg8_t,32928) "unknown_263424" 127 array(reg8_t,432) "unknown_3456" 128 array(reg8_t,408) "unknown_3264" 129 array(reg8_t,456) "unknown_3648" 130 array(reg8_t,144) "unknown_1152" 131 array(reg8_t,384) "unknown_3072" 132 array(reg8_t,72) "unknown_576" 133 array(reg8_t,840) "unknown_6720" 134 array(reg8_t,8664) "unknown_69312" 135 array(reg8_t,9528) "unknown_76224" 136 array(reg8_t,20136) "unknown_161088" 137 array(reg8_t,76) "unknown_608" 138 array(reg8_t,216) "unknown_1728" 139 array(reg8_t,252) "unknown_2016" 140 array(reg8_t,156) "unknown_1248" 141 array(reg8_t,228) "unknown_1824" 142 array(reg8_t,1560) "unknown_12480" 143 array(reg8_t,256) "unknown_2048" 144 array(reg8_t,80) "unknown_640" 145 array(reg8_t,1600) "unknown_12800" 146 array(reg8_t,108) "unknown_864" 147 array(reg8_t,100) "unknown_800" 148 array(reg8_t,5120) "unknown_40960" 149 array(reg8_t,1526) "unknown_12208" 150 array(reg8_t,1534) "unknown_12272" 151 array(reg8_t,41136) "unknown_329088" 152 array(reg8_t,16536) "unknown_132288" 153 array(reg8_t,8190) "unknown_65520" 154 array(reg8_t,102) "unknown_816" 155 array(reg8_t,132) "unknown_1056" 156 array(reg8_t,702) "unknown_5616" 157 array(reg8_t,9120) "unknown_72960" 158 array(num8_t,8) "char[8]" 159 array(num8_t,6) "char[6]" 160 array(num8_t,71) "char[71]" 161 array(num8_t,4) "char[4]" 0 code_t "(dword,dword,dword,dword -> dword)*" 162 struct(0:reg32_t,4:reg32_t,8:reg32_t,12:reg32_t) "_EH4_SCOPETABLE" 163 ptr(ptr(num16_t)) "short**" 164 ptr(num16_t) "short*" 165 array(reg8_t,116) "unknown_928" 166 array(reg8_t,60) "unknown_480" 167 array(reg8_t,172) "unknown_1376" 168 array(reg8_t,1655) "unknown_13240" 169 array(reg8_t,1308) "unknown_10464" 170 array(reg8_t,64) "unknown_512" 171 array(reg8_t,136) "unknown_1088" 172 array(reg8_t,518) "unknown_4144" 173 array(reg8_t,1904) "unknown_15232" 174 array(reg8_t,4096) "unknown_32768" 175 array(reg8_t,135168) "unknown_1081344" 1 reg32_t "BOOL" 0 code_t "_onexit_t"
BlitzBasic
1
matt-noonan/retypd-data
data/libidn.dll.decls
[ "MIT" ]
Red/System [ Title: "A Fixed Size FIFO Multi-Producer Multi-Consumer (MPMC) Queue" Author: "Xie Qingtian" File: %queue.reds Tabs: 4 Rights: "Copyright (C) 2019 Xie Qingtian. All rights reserved." License: { Distributed under the Boost Software License, Version 1.0. See https://github.com/red/red/blob/master/BSL-License.txt } ] cacheLinePad!: alias struct! [ ;-- 64 bytes float1 [float!] float2 [float!] float3 [float!] float4 [float!] float5 [float!] float6 [float!] float7 [float!] float8 [float!] ] qnode!: alias struct! [ value [int-ptr!] h-flag [integer!] t-flag [integer!] ] queue!: alias struct! [ capacity [integer!] ;-- size of the data array capacityMask [integer!] data [qnode!] ;-- offset to the first element in data pad1 [cacheLinePad! value] tail [integer!] pad2 [cacheLinePad! value] head [integer!] ] queue: context [ create: func [ len [integer!] return: [queue!] /local q [queue!] ptr [qnode!] i [integer!] ][ if len < 4 [len: 4] i: 1 << log-b len if i < len [len: i << 1] ;-- rounding up to next power of 2 q: as queue! allocate size? queue! q/capacity: len q/capacityMask: len - 1 q/tail: 0 q/head: 0 ptr: as qnode! allocate len * size? qnode! q/data: ptr i: 0 loop len [ ptr/t-flag: i ptr/h-flag: -1 ptr: ptr + 1 i: i + 1 ] q ] destroy: func [ qe [queue!] ][ free as byte-ptr! qe/data free as byte-ptr! qe ] push: func [ qe [queue!] val [int-ptr!] return: [logic!] /local node [qnode!] next [integer!] tail [integer!] ][ until [ tail: system/atomic/load :qe/tail node: qe/data + (tail and qe/capacityMask) if (system/atomic/load :node/t-flag) <> tail [return false] ;-- queue is full next: tail + 1 system/atomic/cas :qe/tail tail next ] node/value: val system/atomic/store :node/h-flag tail true ] pop: func [ qe [queue!] return: [int-ptr!] /local node [qnode!] head [integer!] next [integer!] result [int-ptr!] ][ until [ head: system/atomic/load :qe/head node: qe/data + (head and qe/capacityMask) if (system/atomic/load :node/h-flag) <> head [return null] ;-- queue is empty next: head + 1 system/atomic/cas :qe/head head next ] result: node/value next: head + qe/capacity system/atomic/store :node/t-flag next result ] s-push: func [ "single producer push, a bit faster than push" qe [queue!] val [int-ptr!] return: [logic!] /local tail [integer!] node [qnode!] ][ tail: qe/tail node: qe/data + (tail and qe/capacityMask) if tail <> node/t-flag [return false] ;-- queue is full qe/tail: tail + 1 node/value: val system/atomic/store :node/h-flag tail true ] s-pop: func [ qe [queue!] return: [int-ptr!] /local node [qnode!] head [integer!] result [int-ptr!] ][ head: qe/head node: qe/data + (head and qe/capacityMask) if head <> node/h-flag [return null] ;-- queue is empty qe/head: head + 1 result: node/value head: head + qe/capacity system/atomic/store :node/t-flag head result ] empty?: func [ qe [queue!] return: [logic!] /local tail [integer!] ][ tail: system/atomic/load :qe/tail qe/head = tail ] size: func [ qe [queue!] return: [integer!] /local tail [int-ptr!] head [int-ptr!] ][ tail: as int-ptr! system/atomic/load :qe/tail head: as int-ptr! system/atomic/load :qe/head either tail > head [as-integer tail - head][0] ] ]
Red
5
GalenIvanov/red
runtime/queue.reds
[ "BSL-1.0", "BSD-3-Clause" ]
+/ 3.2 4, 8 3
APL
0
mbudde/apltail
tests/test23.apl
[ "MIT" ]