text
stringlengths
31
1.04M
/** * @author zdenko.vrabel@wirecard.com */ abstract class NomixBase extends Script { def helloWorld() { println "Hello NomixBase" } }
<%@ page language="java" import="java.util.*" contentType="text/html; charset=utf-8" %> <%@ taglib prefix="s" uri="/struts-tags"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!-- 这是一个html5 doctype声明 --> <!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>用户登录</title> </head> <style type="text/css"> body{ margin:0px; padding:0px; overflow:hidden; } #wrapper{ position:absolute; width:100%; height:100%; min-width:1280px; min-height:680px; overflow-x:hidden; overflow-y:hidden; background-image: -moz-linear-gradient(top,#77D1F6, #2F368F); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #77D1F6),color-stop(1, #2F368F)); } #header{ height:100px; width:100%; } #logo{ position:absolute; float:left; margin-left:5%; margin-top:30px; height:40px; width:160px; text-align:center; } #heading{ position:relative; float:left; margin-left:20%; margin-top:-18px; height:110px; width:60%; border-radius: 18px; background-color:#1C75BC; opacity:0.6; } #heading #title{ margin-top:40px; text-align:center; font-family:微软雅黑; font-size:24px; font-weight:bold; } #heading #subTitle{ margin-top:10px; text-align:center; font-family:Courier New; } #main{ margin-top:20px; height:500px; width:100%; } #mainBg{ position:relative; float:left; margin-left:20%; margin-top:0px; height:500px; width:60%; border-radius: 18px; background-color:#000000; opacity:0.5; } #mainPanel{ position:relative; margin:25px; height:450px; border-radius: 18px; background-image: -moz-linear-gradient(top,#EBEBEB, #BFBFBF); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #EBEBEB),color-stop(1, #BFBFBF)); } #mainPanel #left{ float:left; border-right:2px solid #F6F6F6; position:relative; top:10%; height:80%; width:49%; border-right-style:groove; } #mainPanel #image{ position:relative; height:256px; width:256px; left:15%; top:12%; background-image:url('../images/admin.png'); } #mainPanel #right{ float:left; position:relative; height:90%; width:49%; top:5%; } #welcome{ margin-top:20px; height:60px; width:100%; vertical-align: middle; display: inline-block; line-height: 60px; text-align:center; } #welcome #welcome-text{ font-size:38px; font-weight:bold; font-family:微软雅黑; text-shadow: 0 1px 1px #F6F6F6; } #user-name{ height:35px; width:100%; margin-top:20px; vertical-align: middle; display: inline-block; line-height: 35px; } #user-password{ margin-top:20px; height:35px; width:100%; vertical-align: middle; display: inline-block; line-height: 35px; } #user-checkcode{ margin-top:20px; height:35px; width:100%; vertical-align: middle; display: inline-block; line-height: 35px; } #button-group{ margin-top:10px; height:35px; width:100%; vertical-align: middle; display: inline-block; line-height: 35px; text-align:center; } #error-tip{ margin-top:20px; margin-left:5%; height:40px; width:90%; vertical-align: middle; display: inline-block; line-height: 35px; text-align:center; border-bottom:2px solid #F6F6F6; border-bottom-style:groove; } #error-tip #tip-text{ font-size:18px; font-weight:bold; font-family:微软雅黑; color:red; } .item{ margin-left:20px; font-family:微软雅黑; font-size:20px; font-weight:bold; float: left; width:80px; margin-top: 3px; text-align: center; text-shadow: 0 1px 1px #F6F6F6; } .input{ vertical-align: middle; display: inline-block; } #checkcode-img{ margin-top:3px; height:20px; width:60px; } .form-input{ height:20px; } .btn{ border:1px solid #cccccc; cursor:pointer; margin:10px 5px; height:40px; width:80px; text-align:center; border-radius: 4px; border-color: #636263 #464647 #A1A3A5; text-shadow: 0 1px 1px #F6F6F6; background-image: -moz-linear-gradient(center top, #D9D9D9, #A6A6A6 49%, #A6A6A6 50%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #D9D9D9),color-stop(1, #A6A6A6)); } #footer{ margin-top:20px; width:100%; } #footer #text{ text-align:center; font-size:14px; font-family:微软雅黑; font-weight:bold; } </style> <body> <div id="wrapper"> <div id="header"> <div id="logo"></div> <div id="heading"> <div id="title">后台管理系统</div> <div id="subTitle">Ver 1.0</div> </div> </div> <div id="main"> <div id="mainBg"> <div id="mainPanel"> <div id="left"> <div id="image"></div> </div> <div id="right"> <form name="loginForm" action="<%=path%>/users/Users_login.action" method="post"> <!-- start of login form --> <div id="welcome"> <span id="welcome-text">管&nbsp;理&nbsp;登&nbsp;录</span> </div> <div id="user-name"> <span class="item">用户名:</span> <span><input type="text" name="username" class="form-input"></span> </div> <div id="user-password"> <span class="item">密&nbsp;&nbsp;&nbsp;码:</span> <span class="input"><input type="password" name="password" class="form-input"></span> </div> <div id="button-group"> <input type="submit" class="btn" value="登录"/> <input type="reset" class="btn" value="重置"/> </div> <div> <s:fielderror/> <!-- 显示表单验证的出错信息 --> </div> <!-- end of form --> </form> </div> </div> </div> </div> <div id="footer"> <div id="text">Copyright © 2009-2015 All Rights Reserved Powered By Simoniu</div> </div> </div> </body> </html>
------------------------------------------------------------------------------ -- In the Agda standard library zero divides zero ------------------------------------------------------------------------------ {-# OPTIONS --exact-split #-} {-# OPTIONS --no-sized-types #-} {-# OPTIONS --no-universe-polymorphism #-} {-# OPTIONS --without-K #-} module FOT.FOTC.Data.Nat.Divisibility.ZeroDividesZero where open import Data.Nat.Divisibility open import Relation.Binary.PropositionalEquality ------------------------------------------------------------------------------ 0∣0 : 0 ∣ 0 0∣0 = divides 0 refl
Write out some of your awesome attributes, and use emphasis (like bold or italics) to identify keywords, programming languages, or skills. **coding is the best thing to do** _like the way to do_ _CODING_
#!nobacktrace ;;; Ypsilon Scheme System ;;; Copyright (c) 2004-2009 Y.FUJITA / LittleWing Company Limited. ;;; See license.txt for terms and conditions of use. (library (ypsilon gtk window) (export gtk_window_activate_default gtk_window_activate_focus gtk_window_activate_key gtk_window_add_accel_group gtk_window_add_embedded_xid gtk_window_add_mnemonic gtk_window_begin_move_drag gtk_window_begin_resize_drag gtk_window_deiconify gtk_window_fullscreen gtk_window_get_accept_focus gtk_window_get_decorated gtk_window_get_default_icon_list gtk_window_get_default_icon_name gtk_window_get_default_size gtk_window_get_default_widget gtk_window_get_deletable gtk_window_get_destroy_with_parent gtk_window_get_focus gtk_window_get_focus_on_map gtk_window_get_frame_dimensions gtk_window_get_gravity gtk_window_get_group gtk_window_get_has_frame gtk_window_get_icon gtk_window_get_icon_list gtk_window_get_icon_name gtk_window_get_mnemonic_modifier gtk_window_get_modal gtk_window_get_opacity gtk_window_get_position gtk_window_get_resizable gtk_window_get_role gtk_window_get_screen gtk_window_get_size gtk_window_get_skip_pager_hint gtk_window_get_skip_taskbar_hint gtk_window_get_title gtk_window_get_transient_for gtk_window_get_type gtk_window_get_type_hint gtk_window_get_urgency_hint gtk_window_group_add_window gtk_window_group_get_type gtk_window_group_list_windows gtk_window_group_new gtk_window_group_remove_window gtk_window_has_toplevel_focus gtk_window_iconify gtk_window_is_active gtk_window_list_toplevels gtk_window_maximize gtk_window_mnemonic_activate gtk_window_move gtk_window_new gtk_window_parse_geometry gtk_window_position_get_type gtk_window_present gtk_window_present_with_time gtk_window_propagate_key_event gtk_window_remove_accel_group gtk_window_remove_embedded_xid gtk_window_remove_mnemonic gtk_window_reshow_with_initial_size gtk_window_resize gtk_window_set_accept_focus gtk_window_set_auto_startup_notification gtk_window_set_decorated gtk_window_set_default gtk_window_set_default_icon gtk_window_set_default_icon_from_file gtk_window_set_default_icon_list gtk_window_set_default_icon_name gtk_window_set_default_size gtk_window_set_deletable gtk_window_set_destroy_with_parent gtk_window_set_focus gtk_window_set_focus_on_map gtk_window_set_frame_dimensions gtk_window_set_geometry_hints gtk_window_set_gravity gtk_window_set_has_frame gtk_window_set_icon gtk_window_set_icon_from_file gtk_window_set_icon_list gtk_window_set_icon_name gtk_window_set_keep_above gtk_window_set_keep_below gtk_window_set_mnemonic_modifier gtk_window_set_modal gtk_window_set_opacity gtk_window_set_position gtk_window_set_resizable gtk_window_set_role gtk_window_set_screen gtk_window_set_skip_pager_hint gtk_window_set_skip_taskbar_hint gtk_window_set_startup_id gtk_window_set_title gtk_window_set_transient_for gtk_window_set_type_hint gtk_window_set_urgency_hint gtk_window_set_wmclass gtk_window_stick gtk_window_type_get_type gtk_window_unfullscreen gtk_window_unmaximize gtk_window_unstick) (import (rnrs) (ypsilon ffi)) (define lib-name (cond (on-linux "libgtk-x11-2.0.so.0") (on-sunos "libgtk-x11-2.0.so.0") (on-freebsd "libgtk-x11-2.0.so.0") (on-openbsd "libgtk-x11-2.0.so.0") (on-darwin "Gtk.framework/Gtk") (on-windows "libgtk-win32-2.0-0.dll") (else (assertion-violation #f "can not locate GTK library, unknown operating system")))) (define lib (load-shared-object lib-name)) (define-syntax define-function (syntax-rules () ((_ ret name args) (define name (c-function lib lib-name ret name args))))) (define-syntax define-function/va_list (syntax-rules () ((_ ret name args) (define name (lambda x (assertion-violation 'name "va_list argument not supported")))))) ;; gboolean gtk_window_activate_default (GtkWindow* window) (define-function int gtk_window_activate_default (void*)) ;; gboolean gtk_window_activate_focus (GtkWindow* window) (define-function int gtk_window_activate_focus (void*)) ;; gboolean gtk_window_activate_key (GtkWindow* window, GdkEventKey* event) (define-function int gtk_window_activate_key (void* void*)) ;; void gtk_window_add_accel_group (GtkWindow* window, GtkAccelGroup* accel_group) (define-function void gtk_window_add_accel_group (void* void*)) ;; void gtk_window_add_embedded_xid (GtkWindow* window, GdkNativeWindow xid) (define-function void gtk_window_add_embedded_xid (void* uint32_t)) ;; void gtk_window_add_mnemonic (GtkWindow* window, guint keyval, GtkWidget* target) (define-function void gtk_window_add_mnemonic (void* unsigned-int void*)) ;; void gtk_window_begin_move_drag (GtkWindow* window, gint button, gint root_x, gint root_y, guint32 timestamp) (define-function void gtk_window_begin_move_drag (void* int int int uint32_t)) ;; void gtk_window_begin_resize_drag (GtkWindow* window, GdkWindowEdge edge, gint button, gint root_x, gint root_y, guint32 timestamp) (define-function void gtk_window_begin_resize_drag (void* int int int int uint32_t)) ;; void gtk_window_deiconify (GtkWindow* window) (define-function void gtk_window_deiconify (void*)) ;; void gtk_window_fullscreen (GtkWindow* window) (define-function void gtk_window_fullscreen (void*)) ;; gboolean gtk_window_get_accept_focus (GtkWindow* window) (define-function int gtk_window_get_accept_focus (void*)) ;; gboolean gtk_window_get_decorated (GtkWindow* window) (define-function int gtk_window_get_decorated (void*)) ;; GList* gtk_window_get_default_icon_list (void) (define-function void* gtk_window_get_default_icon_list ()) ;; constgchar* gtk_window_get_default_icon_name (void) (define-function char* gtk_window_get_default_icon_name ()) ;; void gtk_window_get_default_size (GtkWindow* window, gint* width, gint* height) (define-function void gtk_window_get_default_size (void* void* void*)) ;; GtkWidget* gtk_window_get_default_widget (GtkWindow* window) (define-function void* gtk_window_get_default_widget (void*)) ;; gboolean gtk_window_get_deletable (GtkWindow* window) (define-function int gtk_window_get_deletable (void*)) ;; gboolean gtk_window_get_destroy_with_parent (GtkWindow* window) (define-function int gtk_window_get_destroy_with_parent (void*)) ;; GtkWidget* gtk_window_get_focus (GtkWindow* window) (define-function void* gtk_window_get_focus (void*)) ;; gboolean gtk_window_get_focus_on_map (GtkWindow* window) (define-function int gtk_window_get_focus_on_map (void*)) ;; void gtk_window_get_frame_dimensions (GtkWindow* window, gint* left, gint* top, gint* right, gint* bottom) (define-function void gtk_window_get_frame_dimensions (void* void* void* void* void*)) ;; GdkGravity gtk_window_get_gravity (GtkWindow* window) (define-function int gtk_window_get_gravity (void*)) ;; GtkWindowGroup* gtk_window_get_group (GtkWindow* window) (define-function void* gtk_window_get_group (void*)) ;; gboolean gtk_window_get_has_frame (GtkWindow* window) (define-function int gtk_window_get_has_frame (void*)) ;; GdkPixbuf* gtk_window_get_icon (GtkWindow* window) (define-function void* gtk_window_get_icon (void*)) ;; GList* gtk_window_get_icon_list (GtkWindow* window) (define-function void* gtk_window_get_icon_list (void*)) ;; constgchar* gtk_window_get_icon_name (GtkWindow* window) (define-function char* gtk_window_get_icon_name (void*)) ;; GdkModifierType gtk_window_get_mnemonic_modifier (GtkWindow* window) (define-function int gtk_window_get_mnemonic_modifier (void*)) ;; gboolean gtk_window_get_modal (GtkWindow* window) (define-function int gtk_window_get_modal (void*)) ;; gdouble gtk_window_get_opacity (GtkWindow* window) (define-function double gtk_window_get_opacity (void*)) ;; void gtk_window_get_position (GtkWindow* window, gint* root_x, gint* root_y) (define-function void gtk_window_get_position (void* void* void*)) ;; gboolean gtk_window_get_resizable (GtkWindow* window) (define-function int gtk_window_get_resizable (void*)) ;; const gchar* gtk_window_get_role (GtkWindow* window) (define-function char* gtk_window_get_role (void*)) ;; GdkScreen* gtk_window_get_screen (GtkWindow* window) (define-function void* gtk_window_get_screen (void*)) ;; void gtk_window_get_size (GtkWindow* window, gint* width, gint* height) (define-function void gtk_window_get_size (void* void* void*)) ;; gboolean gtk_window_get_skip_pager_hint (GtkWindow* window) (define-function int gtk_window_get_skip_pager_hint (void*)) ;; gboolean gtk_window_get_skip_taskbar_hint (GtkWindow* window) (define-function int gtk_window_get_skip_taskbar_hint (void*)) ;; const gchar* gtk_window_get_title (GtkWindow* window) (define-function char* gtk_window_get_title (void*)) ;; GtkWindow* gtk_window_get_transient_for (GtkWindow* window) (define-function void* gtk_window_get_transient_for (void*)) ;; GType gtk_window_get_type (void) (define-function unsigned-long gtk_window_get_type ()) ;; GdkWindowTypeHint gtk_window_get_type_hint (GtkWindow* window) (define-function int gtk_window_get_type_hint (void*)) ;; gboolean gtk_window_get_urgency_hint (GtkWindow* window) (define-function int gtk_window_get_urgency_hint (void*)) ;; void gtk_window_group_add_window (GtkWindowGroup* window_group, GtkWindow* window) (define-function void gtk_window_group_add_window (void* void*)) ;; GType gtk_window_group_get_type (void) (define-function unsigned-long gtk_window_group_get_type ()) ;; GList* gtk_window_group_list_windows (GtkWindowGroup* window_group) (define-function void* gtk_window_group_list_windows (void*)) ;; GtkWindowGroup* gtk_window_group_new (void) (define-function void* gtk_window_group_new ()) ;; void gtk_window_group_remove_window (GtkWindowGroup* window_group, GtkWindow* window) (define-function void gtk_window_group_remove_window (void* void*)) ;; gboolean gtk_window_has_toplevel_focus (GtkWindow* window) (define-function int gtk_window_has_toplevel_focus (void*)) ;; void gtk_window_iconify (GtkWindow* window) (define-function void gtk_window_iconify (void*)) ;; gboolean gtk_window_is_active (GtkWindow* window) (define-function int gtk_window_is_active (void*)) ;; GList* gtk_window_list_toplevels (void) (define-function void* gtk_window_list_toplevels ()) ;; void gtk_window_maximize (GtkWindow* window) (define-function void gtk_window_maximize (void*)) ;; gboolean gtk_window_mnemonic_activate (GtkWindow* window, guint keyval, GdkModifierType modifier) (define-function int gtk_window_mnemonic_activate (void* unsigned-int int)) ;; void gtk_window_move (GtkWindow* window, gint x, gint y) (define-function void gtk_window_move (void* int int)) ;; GtkWidget* gtk_window_new (GtkWindowType type) (define-function void* gtk_window_new (int)) ;; gboolean gtk_window_parse_geometry (GtkWindow* window, const gchar* geometry) (define-function int gtk_window_parse_geometry (void* char*)) ;; GType gtk_window_position_get_type (void) (define-function unsigned-long gtk_window_position_get_type ()) ;; void gtk_window_present (GtkWindow* window) (define-function void gtk_window_present (void*)) ;; void gtk_window_present_with_time (GtkWindow* window, guint32 timestamp) (define-function void gtk_window_present_with_time (void* uint32_t)) ;; gboolean gtk_window_propagate_key_event (GtkWindow* window, GdkEventKey* event) (define-function int gtk_window_propagate_key_event (void* void*)) ;; void gtk_window_remove_accel_group (GtkWindow* window, GtkAccelGroup* accel_group) (define-function void gtk_window_remove_accel_group (void* void*)) ;; void gtk_window_remove_embedded_xid (GtkWindow* window, GdkNativeWindow xid) (define-function void gtk_window_remove_embedded_xid (void* uint32_t)) ;; void gtk_window_remove_mnemonic (GtkWindow* window, guint keyval, GtkWidget* target) (define-function void gtk_window_remove_mnemonic (void* unsigned-int void*)) ;; void gtk_window_reshow_with_initial_size (GtkWindow* window) (define-function void gtk_window_reshow_with_initial_size (void*)) ;; void gtk_window_resize (GtkWindow* window, gint width, gint height) (define-function void gtk_window_resize (void* int int)) ;; void gtk_window_set_accept_focus (GtkWindow* window, gboolean setting) (define-function void gtk_window_set_accept_focus (void* int)) ;; void gtk_window_set_auto_startup_notification (gboolean setting) (define-function void gtk_window_set_auto_startup_notification (int)) ;; void gtk_window_set_decorated (GtkWindow* window, gboolean setting) (define-function void gtk_window_set_decorated (void* int)) ;; void gtk_window_set_default (GtkWindow* window, GtkWidget* default_widget) (define-function void gtk_window_set_default (void* void*)) ;; void gtk_window_set_default_icon (GdkPixbuf* icon) (define-function void gtk_window_set_default_icon (void*)) ;; gboolean gtk_window_set_default_icon_from_file (const gchar* filename, GError** err) (define-function int gtk_window_set_default_icon_from_file (char* void*)) ;; void gtk_window_set_default_icon_list (GList* list) (define-function void gtk_window_set_default_icon_list (void*)) ;; void gtk_window_set_default_icon_name (const gchar* name) (define-function void gtk_window_set_default_icon_name (char*)) ;; void gtk_window_set_default_size (GtkWindow* window, gint width, gint height) (define-function void gtk_window_set_default_size (void* int int)) ;; void gtk_window_set_deletable (GtkWindow* window, gboolean setting) (define-function void gtk_window_set_deletable (void* int)) ;; void gtk_window_set_destroy_with_parent (GtkWindow* window, gboolean setting) (define-function void gtk_window_set_destroy_with_parent (void* int)) ;; void gtk_window_set_focus (GtkWindow* window, GtkWidget* focus) (define-function void gtk_window_set_focus (void* void*)) ;; void gtk_window_set_focus_on_map (GtkWindow* window, gboolean setting) (define-function void gtk_window_set_focus_on_map (void* int)) ;; void gtk_window_set_frame_dimensions (GtkWindow* window, gint left, gint top, gint right, gint bottom) (define-function void gtk_window_set_frame_dimensions (void* int int int int)) ;; void gtk_window_set_geometry_hints (GtkWindow* window, GtkWidget* geometry_widget, GdkGeometry* geometry, GdkWindowHints geom_mask) (define-function void gtk_window_set_geometry_hints (void* void* void* int)) ;; void gtk_window_set_gravity (GtkWindow* window, GdkGravity gravity) (define-function void gtk_window_set_gravity (void* int)) ;; void gtk_window_set_has_frame (GtkWindow* window, gboolean setting) (define-function void gtk_window_set_has_frame (void* int)) ;; void gtk_window_set_icon (GtkWindow* window, GdkPixbuf* icon) (define-function void gtk_window_set_icon (void* void*)) ;; gboolean gtk_window_set_icon_from_file (GtkWindow* window, const gchar* filename, GError** err) (define-function int gtk_window_set_icon_from_file (void* char* void*)) ;; void gtk_window_set_icon_list (GtkWindow* window, GList* list) (define-function void gtk_window_set_icon_list (void* void*)) ;; void gtk_window_set_icon_name (GtkWindow* window, const gchar* name) (define-function void gtk_window_set_icon_name (void* char*)) ;; void gtk_window_set_keep_above (GtkWindow* window, gboolean setting) (define-function void gtk_window_set_keep_above (void* int)) ;; void gtk_window_set_keep_below (GtkWindow* window, gboolean setting) (define-function void gtk_window_set_keep_below (void* int)) ;; void gtk_window_set_mnemonic_modifier (GtkWindow* window, GdkModifierType modifier) (define-function void gtk_window_set_mnemonic_modifier (void* int)) ;; void gtk_window_set_modal (GtkWindow* window, gboolean modal) (define-function void gtk_window_set_modal (void* int)) ;; void gtk_window_set_opacity (GtkWindow* window, gdouble opacity) (define-function void gtk_window_set_opacity (void* double)) ;; void gtk_window_set_position (GtkWindow* window, GtkWindowPosition position) (define-function void gtk_window_set_position (void* int)) ;; void gtk_window_set_resizable (GtkWindow* window, gboolean resizable) (define-function void gtk_window_set_resizable (void* int)) ;; void gtk_window_set_role (GtkWindow* window, const gchar* role) (define-function void gtk_window_set_role (void* char*)) ;; void gtk_window_set_screen (GtkWindow* window, GdkScreen* screen) (define-function void gtk_window_set_screen (void* void*)) ;; void gtk_window_set_skip_pager_hint (GtkWindow* window, gboolean setting) (define-function void gtk_window_set_skip_pager_hint (void* int)) ;; void gtk_window_set_skip_taskbar_hint (GtkWindow* window, gboolean setting) (define-function void gtk_window_set_skip_taskbar_hint (void* int)) ;; void gtk_window_set_startup_id (GtkWindow* window, const gchar* startup_id) (define-function void gtk_window_set_startup_id (void* char*)) ;; void gtk_window_set_title (GtkWindow* window, const gchar* title) (define-function void gtk_window_set_title (void* char*)) ;; void gtk_window_set_transient_for (GtkWindow* window, GtkWindow* parent) (define-function void gtk_window_set_transient_for (void* void*)) ;; void gtk_window_set_type_hint (GtkWindow* window, GdkWindowTypeHint hint) (define-function void gtk_window_set_type_hint (void* int)) ;; void gtk_window_set_urgency_hint (GtkWindow* window, gboolean setting) (define-function void gtk_window_set_urgency_hint (void* int)) ;; void gtk_window_set_wmclass (GtkWindow* window, const gchar* wmclass_name, const gchar* wmclass_class) (define-function void gtk_window_set_wmclass (void* char* char*)) ;; void gtk_window_stick (GtkWindow* window) (define-function void gtk_window_stick (void*)) ;; GType gtk_window_type_get_type (void) (define-function unsigned-long gtk_window_type_get_type ()) ;; void gtk_window_unfullscreen (GtkWindow* window) (define-function void gtk_window_unfullscreen (void*)) ;; void gtk_window_unmaximize (GtkWindow* window) (define-function void gtk_window_unmaximize (void*)) ;; void gtk_window_unstick (GtkWindow* window) (define-function void gtk_window_unstick (void*)) ) ;[end]
Fast copy of a sas table using os utility For tiny data like this(34mm rows 50 cols), I copied the table in 12 seconds. Classic SAS on a 2012 Dell laptop with workstation and SAS 9.4M2 WIn 7 64bit Are you on an EG server? HAVE ==== 34 million rows and 50 columns Middle Observation(17000000 ) of d_wrk.million34 - Total Obs 34,000,000 -- NUMERIC -- Var type Value FIFTY1 N8 1234 FIFTY2 N8 1234 FIFTY3 N8 1234 FIFTY4 N8 1234 FIFTY5 N8 1234 FIFTY6 N8 1234 .. FIFTY48 N8 1234 FIFTY49 N8 1234 FIFTY50 N8 1234 PROCESS ======= * copy to c/wrk; options xsync xwait; %let beg=%sysfunc(time()); data _null_; call system('robocopy d:\wrk c:\wrk\ million34.sas7bdat'); run;quit; %let elap = %sysevalf(%sysfunc(time()) - &beg); %put &=elap; LOG === NOTE: DATA statement used (Total process time): real time 11.57 seconds cpu time 0.03 seconds 1047 %let elap = %sysevalf(%sysfunc(time()) - &beg); 1048 %put &=elap; ELAP=11.5799999236987 Make data ========= * copying a tiny 34 million table with 50 columns; libname d_wrk "d:/wrk"; data d_wrk.million34(compress=binary); array fifty[50] (50*1234); do i=1 to 34000000; output; end; drop i; run;quit;
Element["" "B130" "" "" 1000 1000 0nm -1000000nm 0 100 ""] ( Pad[-2400000nm 0nm -1600000nm 0nm 1700000nm 400000nm 1775000nm "1" "1" "square"] Pad[1600000nm 0nm 2400000nm 0nm 1700000nm 400000nm 1775000nm "2" "2" "square"] ElementLine [-3500000nm -1700000nm -3500000nm 1700000nm 155000nm] ElementLine [3500000nm -1700000nm 3500000nm 1700000nm 155000nm] ElementLine [-3500000nm 1700000nm 3500000nm 1700000nm 155000nm] ElementLine [-3500000nm -1700000nm 3500000nm -1700000nm 155000nm] )
/* * Copyright 2013-2020 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.cloud.contract.verifier.builder import spock.lang.Issue import spock.lang.Shared import spock.lang.Specification import org.springframework.cloud.contract.spec.Contract import org.springframework.cloud.contract.verifier.config.ContractVerifierConfigProperties import org.springframework.cloud.contract.verifier.config.TestFramework import org.springframework.cloud.contract.verifier.config.TestMode import org.springframework.cloud.contract.verifier.file.ContractMetadata import org.springframework.cloud.contract.verifier.util.SyntaxChecker /** * @author Marcin Grzejszczak * @author Tim Ysewyn */ class MessagingMethodBodyBuilderSpec extends Specification { @Shared ContractVerifierConfigProperties properties = new ContractVerifierConfigProperties( assertJsonSize: true ) @Shared SingleTestGenerator.GeneratedClassData generatedClassData = new SingleTestGenerator.GeneratedClassData("foo", "com.example", new File(MessagingMethodBodyBuilderSpec.getResource(".").toURI()).toPath()) def setup() { properties = new ContractVerifierConfigProperties( assertJsonSize: true, generatedTestSourcesDir: new File(MessagingMethodBodyBuilderSpec.getResource(".").toURI()), generatedTestResourcesDir: new File(MessagingMethodBodyBuilderSpec.getResource(".").toURI()) ) } private String singleTestGenerator(Contract contractDsl) { return new JavaTestGenerator() { @Override ClassBodyBuilder classBodyBuilder(BlockBuilder builder, GeneratedClassMetaData metaData, SingleMethodBuilder methodBuilder) { return super.classBodyBuilder(builder, metaData, methodBuilder).field(new Field() { @Override boolean accept() { return metaData.configProperties.testMode == TestMode.JAXRSCLIENT } @Override Field call() { builder.addLine("WebTarget webTarget") return this } }) } }.buildClass(properties, [contractMetadata(contractDsl)], "foo", generatedClassData) } private ContractMetadata contractMetadata(Contract contractDsl) { return new ContractMetadata(new File(".").toPath(), false, 0, null, contractDsl) } def "should work for triggered based messaging with Spock"() { given: // tag::trigger_method_dsl[] def contractDsl = Contract.make { name "foo" label 'some_label' input { triggeredBy('bookReturnedTriggered()') } outputMessage { sentTo('activemq:output') body('''{ "bookName" : "foo" }''') headers { header('BOOK-NAME', 'foo') messagingContentType(applicationJson()) } } } // end::trigger_method_dsl[] properties.testFramework = TestFramework.SPOCK when: String test = singleTestGenerator(contractDsl) then: String expectedMessage = // tag::trigger_method_test[] '''\ package com.example import com.jayway.jsonpath.DocumentContext import com.jayway.jsonpath.JsonPath import spock.lang.Specification import javax.inject.Inject import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.* import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes @SuppressWarnings("rawtypes") class FooSpec extends Specification { \t@Inject ContractVerifierMessaging contractVerifierMessaging \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper \tdef validate_foo() throws Exception { \t\twhen: \t\t\tbookReturnedTriggered() \t\tthen: \t\t\tContractVerifierMessage response = contractVerifierMessaging.receive("activemq:output") \t\t\tresponse != null \t\tand: \t\t\tresponse.getHeader("BOOK-NAME") != null \t\t\tresponse.getHeader("BOOK-NAME").toString() == 'foo' \t\t\tresponse.getHeader("contentType") != null \t\t\tresponse.getHeader("contentType").toString() == 'application/json' \t\tand: \t\t\tDocumentContext parsedJson = JsonPath.parse(contractVerifierObjectMapper.writeValueAsString(response.getPayload())) \t\t\tassertThatJson(parsedJson).field("['bookName']").isEqualTo("foo") \t} } ''' // end::trigger_method_test[] test.trim() == expectedMessage.trim() } def "should work for triggered based messaging with JUnit"() { given: def contractDsl = Contract.make { name "foo" label 'some_label' input { triggeredBy('bookReturnedTriggered()') } outputMessage { sentTo('activemq:output') body('''{ "bookName" : "foo" }''') headers { header('BOOK-NAME', 'foo') messagingContentType(applicationJson()) } } } properties.testFramework = TestFramework.JUNIT when: String test = singleTestGenerator(contractDsl) then: String expectedMessage = // tag::trigger_method_junit_test[] '''\ package com.example; import com.jayway.jsonpath.DocumentContext; import com.jayway.jsonpath.JsonPath; import org.junit.Test; import org.junit.Rule; import javax.inject.Inject; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging; import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.*; import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson; import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes; @SuppressWarnings("rawtypes") public class FooTest { \t@Inject ContractVerifierMessaging contractVerifierMessaging; \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper; \t@Test \tpublic void validate_foo() throws Exception { \t\t// when: \t\t\tbookReturnedTriggered(); \t\t// then: \t\t\tContractVerifierMessage response = contractVerifierMessaging.receive("activemq:output"); \t\t\tassertThat(response).isNotNull(); \t\t// and: \t\t\tassertThat(response.getHeader("BOOK-NAME")).isNotNull(); \t\t\tassertThat(response.getHeader("BOOK-NAME").toString()).isEqualTo("foo"); \t\t\tassertThat(response.getHeader("contentType")).isNotNull(); \t\t\tassertThat(response.getHeader("contentType").toString()).isEqualTo("application/json"); \t\t// and: \t\t\tDocumentContext parsedJson = JsonPath.parse(contractVerifierObjectMapper.writeValueAsString(response.getPayload())); \t\t\tassertThatJson(parsedJson).field("['bookName']").isEqualTo("foo"); \t} } ''' // end::trigger_method_junit_test[] test.trim() == expectedMessage.trim() } def "should generate tests triggered by a message for Spock"() { given: // tag::trigger_message_dsl[] def contractDsl = Contract.make { name "foo" label 'some_label' input { messageFrom('jms:input') messageBody([ bookName: 'foo' ]) messageHeaders { header('sample', 'header') } } outputMessage { sentTo('jms:output') body([ bookName: 'foo' ]) headers { header('BOOK-NAME', 'foo') } } } // end::trigger_message_dsl[] properties.testFramework = TestFramework.SPOCK when: String test = singleTestGenerator(contractDsl) then: String expectedMessage = // tag::trigger_message_spock[] """\ package com.example import com.jayway.jsonpath.DocumentContext import com.jayway.jsonpath.JsonPath import spock.lang.Specification import javax.inject.Inject import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.* import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes @SuppressWarnings("rawtypes") class FooSpec extends Specification { \t@Inject ContractVerifierMessaging contractVerifierMessaging \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper \tdef validate_foo() throws Exception { \t\tgiven: \t\t\tContractVerifierMessage inputMessage = contractVerifierMessaging.create( \t\t\t\t\t'''{"bookName":"foo"}''' \t\t\t\t\t\t, headers() \t\t\t\t\t\t\t.header("sample", "header") \t\t\t) \t\twhen: \t\t\tcontractVerifierMessaging.send(inputMessage, "jms:input") \t\tthen: \t\t\tContractVerifierMessage response = contractVerifierMessaging.receive("jms:output") \t\t\tresponse != null \t\tand: \t\t\tresponse.getHeader("BOOK-NAME") != null \t\t\tresponse.getHeader("BOOK-NAME").toString() == 'foo' \t\tand: \t\t\tDocumentContext parsedJson = JsonPath.parse(contractVerifierObjectMapper.writeValueAsString(response.getPayload())) \t\t\tassertThatJson(parsedJson).field("['bookName']").isEqualTo("foo") \t} } """ // end::trigger_message_spock[] test.trim() == expectedMessage.trim() } def "should generate tests triggered by a message for JUnit"() { given: def contractDsl = Contract.make { name "foo" label 'some_label' input { messageFrom('jms:input') messageBody([ bookName: 'foo' ]) messageHeaders { header('sample', 'header') } } outputMessage { sentTo('jms:output') body([ bookName: 'foo' ]) headers { header('BOOK-NAME', 'foo') } } } properties.testFramework = TestFramework.JUNIT when: String test = singleTestGenerator(contractDsl) then: String expectedMessage = // tag::trigger_message_junit[] '''\ package com.example; import com.jayway.jsonpath.DocumentContext; import com.jayway.jsonpath.JsonPath; import org.junit.Test; import org.junit.Rule; import javax.inject.Inject; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging; import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.*; import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson; import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes; @SuppressWarnings("rawtypes") public class FooTest { \t@Inject ContractVerifierMessaging contractVerifierMessaging; \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper; \t@Test \tpublic void validate_foo() throws Exception { \t\t// given: \t\t\tContractVerifierMessage inputMessage = contractVerifierMessaging.create( \t\t\t\t\t"{\\"bookName\\":\\"foo\\"}" \t\t\t\t\t\t, headers() \t\t\t\t\t\t\t.header("sample", "header") \t\t\t); \t\t// when: \t\t\tcontractVerifierMessaging.send(inputMessage, "jms:input"); \t\t// then: \t\t\tContractVerifierMessage response = contractVerifierMessaging.receive("jms:output"); \t\t\tassertThat(response).isNotNull(); \t\t// and: \t\t\tassertThat(response.getHeader("BOOK-NAME")).isNotNull(); \t\t\tassertThat(response.getHeader("BOOK-NAME").toString()).isEqualTo("foo"); \t\t// and: \t\t\tDocumentContext parsedJson = JsonPath.parse(contractVerifierObjectMapper.writeValueAsString(response.getPayload())); \t\t\tassertThatJson(parsedJson).field("['bookName']").isEqualTo("foo"); \t} } ''' // end::trigger_message_junit[] test.trim() == expectedMessage.trim() } def "should generate tests without destination, triggered by a message"() { given: // tag::trigger_no_output_dsl[] def contractDsl = Contract.make { name "foo" label 'some_label' input { messageFrom('jms:delete') messageBody([ bookName: 'foo' ]) messageHeaders { header('sample', 'header') } assertThat('bookWasDeleted()') } } // end::trigger_no_output_dsl[] properties.testFramework = TestFramework.SPOCK when: String test = singleTestGenerator(contractDsl) then: String expectedMsg = // tag::trigger_no_output_spock[] """\ package com.example import com.jayway.jsonpath.DocumentContext import com.jayway.jsonpath.JsonPath import spock.lang.Specification import javax.inject.Inject import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.* import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes @SuppressWarnings("rawtypes") class FooSpec extends Specification { \t@Inject ContractVerifierMessaging contractVerifierMessaging \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper \tdef validate_foo() throws Exception { \t\tgiven: \t\t\tContractVerifierMessage inputMessage = contractVerifierMessaging.create( \t\t\t\t\t'''{"bookName":"foo"}''' \t\t\t\t\t\t, headers() \t\t\t\t\t\t\t.header("sample", "header") \t\t\t) \t\twhen: \t\t\tcontractVerifierMessaging.send(inputMessage, "jms:delete") \t\t\tbookWasDeleted() \t\tthen: \t\t\tnoExceptionThrown() \t} } """ // end::trigger_no_output_spock[] test.trim() == expectedMsg.trim() } def "should generate tests without destination, triggered by a message for JUnit"() { given: def contractDsl = Contract.make { name "foo" label 'some_label' input { messageFrom('jms:delete') messageBody([ bookName: 'foo' ]) messageHeaders { header('sample', 'header') } assertThat('bookWasDeleted()') } } properties.testFramework = TestFramework.JUNIT when: String test = singleTestGenerator(contractDsl) then: String expectedMsg = // tag::trigger_no_output_junit[] """\ package com.example; import com.jayway.jsonpath.DocumentContext; import com.jayway.jsonpath.JsonPath; import org.junit.Test; import org.junit.Rule; import javax.inject.Inject; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging; import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.*; import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson; import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes; @SuppressWarnings("rawtypes") public class FooTest { \t@Inject ContractVerifierMessaging contractVerifierMessaging; \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper; \t@Test \tpublic void validate_foo() throws Exception { \t\t// given: \t\t\tContractVerifierMessage inputMessage = contractVerifierMessaging.create( \t\t\t\t\t"{\\"bookName\\":\\"foo\\"}" \t\t\t\t\t\t, headers() \t\t\t\t\t\t\t.header("sample", "header") \t\t\t); \t\t// when: \t\t\tcontractVerifierMessaging.send(inputMessage, "jms:delete"); \t\t\tbookWasDeleted(); \t} } """ // end::trigger_no_output_junit[] test.trim() == expectedMsg.trim() } def "should generate tests without headers for JUnit"() { given: def contractDsl = Contract.make { name "foo" label 'some_label' input { messageFrom('jms:input') messageBody([ bookName: 'foo' ]) messageHeaders { header('sample', 'header') } } outputMessage { sentTo('jms:output') body([ bookName: 'foo' ]) } } properties.testFramework = TestFramework.JUNIT when: String test = singleTestGenerator(contractDsl) then: String expectedMsg = """\ package com.example; import com.jayway.jsonpath.DocumentContext; import com.jayway.jsonpath.JsonPath; import org.junit.Test; import org.junit.Rule; import javax.inject.Inject; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging; import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.*; import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson; import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes; @SuppressWarnings("rawtypes") public class FooTest { \t@Inject ContractVerifierMessaging contractVerifierMessaging; \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper; \t@Test \tpublic void validate_foo() throws Exception { \t\t// given: \t\t\tContractVerifierMessage inputMessage = contractVerifierMessaging.create( \t\t\t\t\t"{\\"bookName\\":\\"foo\\"}" \t\t\t\t\t\t, headers() \t\t\t\t\t\t\t.header("sample", "header") \t\t\t); \t\t// when: \t\t\tcontractVerifierMessaging.send(inputMessage, "jms:input"); \t\t// then: \t\t\tContractVerifierMessage response = contractVerifierMessaging.receive("jms:output"); \t\t\tassertThat(response).isNotNull(); \t\t// and: \t\t\tDocumentContext parsedJson = JsonPath.parse(contractVerifierObjectMapper.writeValueAsString(response.getPayload())); \t\t\tassertThatJson(parsedJson).field("['bookName']").isEqualTo("foo"); \t} } """ test.trim() == expectedMsg.trim() } def "should generate tests without headers for Spock"() { given: def contractDsl = Contract.make { name "foo" label 'some_label' input { messageFrom('jms:input') messageBody([ bookName: 'foo' ]) messageHeaders { header('sample', 'header') } } outputMessage { sentTo('jms:output') body([ bookName: 'foo' ]) } } properties.testFramework = TestFramework.SPOCK when: String test = singleTestGenerator(contractDsl) then: String expectedMsg = """\ package com.example import com.jayway.jsonpath.DocumentContext import com.jayway.jsonpath.JsonPath import spock.lang.Specification import javax.inject.Inject import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.* import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes @SuppressWarnings("rawtypes") class FooSpec extends Specification { \t@Inject ContractVerifierMessaging contractVerifierMessaging \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper \tdef validate_foo() throws Exception { \t\tgiven: \t\t\tContractVerifierMessage inputMessage = contractVerifierMessaging.create( \t\t\t\t\t'''{"bookName":"foo"}''' \t\t\t\t\t\t, headers() \t\t\t\t\t\t\t.header("sample", "header") \t\t\t) \t\twhen: \t\t\tcontractVerifierMessaging.send(inputMessage, "jms:input") \t\tthen: \t\t\tContractVerifierMessage response = contractVerifierMessaging.receive("jms:output") \t\t\tresponse != null \t\tand: \t\t\tDocumentContext parsedJson = JsonPath.parse(contractVerifierObjectMapper.writeValueAsString(response.getPayload())) \t\t\tassertThatJson(parsedJson).field("['bookName']").isEqualTo("foo") \t} } """ test.trim() == expectedMsg.trim() } private String stripped(String text) { return text.stripIndent().stripMargin().replace(' ', '').replace('\n', '').replace('\t', '').replaceAll("\\W", "") } def "should generate tests without headers for JUnit with consumer / producer notation"() { given: def contractDsl = // tag::consumer_producer[] Contract.make { name "foo" label 'some_label' input { messageFrom value(consumer('jms:output'), producer('jms:input')) messageBody([ bookName: 'foo' ]) messageHeaders { header('sample', 'header') } } outputMessage { sentTo $(consumer('jms:input'), producer('jms:output')) body([ bookName: 'foo' ]) } } // end::consumer_producer[] properties.testFramework = TestFramework.JUNIT when: String test = singleTestGenerator(contractDsl) then: String expectedMsg = ''' package com.example; import com.jayway.jsonpath.DocumentContext; import com.jayway.jsonpath.JsonPath; import org.junit.Test; import org.junit.Rule; import javax.inject.Inject; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging; import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.*; import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson; import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes; @SuppressWarnings("rawtypes") public class FooTest { \t@Inject ContractVerifierMessaging contractVerifierMessaging; \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper; \t@Test \tpublic void validate_foo() throws Exception { \t\t// given: \t\t\tContractVerifierMessage inputMessage = contractVerifierMessaging.create( \t\t\t\t\t"{\\"bookName\\":\\"foo\\"}" \t\t\t\t\t\t, headers() \t\t\t\t\t\t\t.header("sample", "header") \t\t\t); \t\t// when: \t\t\tcontractVerifierMessaging.send(inputMessage, "jms:input"); \t\t// then: \t\t\tContractVerifierMessage response = contractVerifierMessaging.receive("jms:output"); \t\t\tassertThat(response).isNotNull(); \t\t// and: \t\t\tDocumentContext parsedJson = JsonPath.parse(contractVerifierObjectMapper.writeValueAsString(response.getPayload())); \t\t\tassertThatJson(parsedJson).field("['bookName']").isEqualTo("foo"); \t} } ''' test.trim() == expectedMsg.trim() } @Issue("336") def "should generate tests with message headers containing regular expression for JUnit"() { given: def contractDsl = org.springframework.cloud.contract.spec.Contract.make { name "foo" label 'trigger_event' input { triggeredBy('requestIsCalled()') } outputMessage { sentTo 'topic.rateablequote' headers { header('processId', value(producer(regex('[0-9]+')), consumer('123'))) } body([ eventId: value(producer(regex('[0-9]+')), consumer('1')) ]) } } properties.testFramework = TestFramework.JUNIT when: String test = singleTestGenerator(contractDsl) then: String expectedMsg = """\ package com.example; import com.jayway.jsonpath.DocumentContext; import com.jayway.jsonpath.JsonPath; import org.junit.Test; import org.junit.Rule; import javax.inject.Inject; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging; import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.*; import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson; import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes; @SuppressWarnings("rawtypes") public class FooTest { \t@Inject ContractVerifierMessaging contractVerifierMessaging; \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper; \t@Test \tpublic void validate_foo() throws Exception { \t\t// when: \t\t\trequestIsCalled(); \t\t// then: \t\t\tContractVerifierMessage response = contractVerifierMessaging.receive("topic.rateablequote"); \t\t\tassertThat(response).isNotNull(); \t\t// and: \t\t\tassertThat(response.getHeader("processId")).isNotNull(); \t\t\tassertThat(response.getHeader("processId").toString()).matches("[0-9]+"); \t\t// and: \t\t\tDocumentContext parsedJson = JsonPath.parse(contractVerifierObjectMapper.writeValueAsString(response.getPayload())); \t\t\tassertThatJson(parsedJson).field("['eventId']").matches("[0-9]+"); \t} } """ test.trim() == expectedMsg.trim() } @Issue("567") def "should generate tests with message headers containing regular expression with backslashes for JUnit"() { given: def contractDsl = org.springframework.cloud.contract.spec.Contract.make { name "foo" label 'trigger_event' input { triggeredBy('requestIsCalled()') } outputMessage { sentTo 'topic.rateablequote' headers { header('processId', value(producer(regex('\\d+')), consumer('123'))) } body([ eventId: value(producer(regex('\\d+')), consumer('1')) ]) } } properties.testFramework = TestFramework.JUNIT when: String test = singleTestGenerator(contractDsl) then: test.contains('assertThat(response.getHeader("processId").toString()).matches("\\\\d+");') } @Issue('#587') def "should allow easier way of providing dynamic values for [#methodBuilderName]"() { given: //tag::regex_creating_props[] Contract contractDsl = Contract.make { name "foo" label 'trigger_event' input { triggeredBy('toString()') } outputMessage { sentTo 'topic.rateablequote' body([ alpha : $(anyAlphaUnicode()), number : $(anyNumber()), anInteger : $(anyInteger()), positiveInt : $(anyPositiveInt()), aDouble : $(anyDouble()), aBoolean : $(aBoolean()), ip : $(anyIpAddress()), hostname : $(anyHostname()), email : $(anyEmail()), url : $(anyUrl()), httpsUrl : $(anyHttpsUrl()), uuid : $(anyUuid()), date : $(anyDate()), dateTime : $(anyDateTime()), time : $(anyTime()), iso8601WithOffset: $(anyIso8601WithOffset()), nonBlankString : $(anyNonBlankString()), nonEmptyString : $(anyNonEmptyString()), anyOf : $(anyOf('foo', 'bar')) ]) } } //end::regex_creating_props[] methodBuilder() when: String test = singleTestGenerator(contractDsl) then: test.contains('assertThatJson(parsedJson).field("[\'aBoolean\']").matches("(true|false)")') test.contains('assertThatJson(parsedJson).field("[\'alpha\']").matches("[\\\\p{L}]*")') test.contains('assertThatJson(parsedJson).field("[\'hostname\']").matches("((http[s]?|ftp):/)/?([^:/\\\\s]+)(:[0-9]{1,5})?")') test.contains('assertThatJson(parsedJson).field("[\'url\']").matches("^(?:(?:[A-Za-z][+-.\\\\w^_]*:/{2})?(?:\\\\S+(?::\\\\S*)?@)?(?:(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)|(?:(?:[a-z\\\\u00a1-\\\\uffff0-9]-*)*[a-z\\\\u00a1-\\\\uffff0-9]+)(?:\\\\.(?:[a-z\\\\u00a1-\\\\uffff0-9]-*)*[a-z\\\\u00a1-\\\\uffff0-9]+)*(?:\\\\.(?:[a-z\\\\u00a1-\\\\uffff]{2,}))|(?:localhost))(?::\\\\d{2,5})?(?:/\\\\S*)?)') test.contains('assertThatJson(parsedJson).field("[\'number\']").matches("-?(\\\\d*\\\\.\\\\d+|\\\\d+)")') test.contains('assertThatJson(parsedJson).field("[\'anInteger\']").matches("-?(\\\\d+)")') test.contains('assertThatJson(parsedJson).field("[\'positiveInt\']").matches("([1-9]\\\\d*)")') test.contains('assertThatJson(parsedJson).field("[\'aDouble\']").matches("-?(\\\\d*\\\\.\\\\d+)")') test.contains('assertThatJson(parsedJson).field("[\'email\']").matches("[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\\\.[a-zA-Z]{2,6}")') test.contains('assertThatJson(parsedJson).field("[\'ip\']").matches("([01]?\\\\d\\\\d?|2[0-4]\\\\d|25[0-5])\\\\.([01]?\\\\d\\\\d?|2[0-4]\\\\d|25[0-5])\\\\.([01]?\\\\d\\\\d?|2[0-4]\\\\d|25[0-5])\\\\.([01]?\\\\d\\\\d?|2[0-4]\\\\d|25[0-5])")') test.contains('assertThatJson(parsedJson).field("[\'httpsUrl\']").matches("^(?:https:/{2}(?:\\\\S+(?::\\\\S*)?@)?(?:(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)|(?:(?:[a-z\\\\u00a1-\\\\uffff0-9]-*)*[a-z\\\\u00a1-\\\\uffff0-9]+)(?:\\\\.(?:[a-z\\\\u00a1-\\\\uffff0-9]-*)*[a-z\\\\u00a1-\\\\uffff0-9]+)*(?:\\\\.(?:[a-z\\\\u00a1-\\\\uffff]{2,}))|(?:localhost))(?::\\\\d{2,5})?(?:/\\\\S*)?)') test.contains('assertThatJson(parsedJson).field("[\'uuid\']").matches("[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}")') test.contains('assertThatJson(parsedJson).field("[\'date\']").matches("(\\\\d\\\\d\\\\d\\\\d)-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])') test.contains('assertThatJson(parsedJson).field("[\'dateTime\']").matches("([0-9]{4})-(1[0-2]|0[1-9])-(3[01]|0[1-9]|[12][0-9])T(2[0-3]|[01][0-9]):([0-5][0-9]):([0-5][0-9])') test.contains('assertThatJson(parsedJson).field("[\'time\']").matches("(2[0-3]|[01][0-9]):([0-5][0-9]):([0-5][0-9])")') test.contains('assertThatJson(parsedJson).field("[\'iso8601WithOffset\']").matches("([0-9]{4})-(1[0-2]|0[1-9])-(3[01]|0[1-9]|[12][0-9])T(2[0-3]|[01][0-9]):([0-5][0-9]):([0-5][0-9])(\\\\.\\\\d{1,6})?(Z|[+-][01]\\\\d:[0-5]\\\\d)")') test.contains('assertThatJson(parsedJson).field("[\'nonBlankString\']").matches("^\\\\s*\\\\S[\\\\S\\\\s]*")') test.contains('assertThatJson(parsedJson).field("[\'nonEmptyString\']").matches("[\\\\S\\\\s]+")') test.contains('assertThatJson(parsedJson).field("[\'anyOf\']").matches("^foo' + endOfLineRegExSymbol + '|^bar' + endOfLineRegExSymbol + '")') !test.contains('cursor') !test.contains('REGEXP>>') and: SyntaxChecker.tryToCompile(methodBuilderName, test) where: methodBuilderName | methodBuilder | endOfLineRegExSymbol "spock" | { properties.testFramework = TestFramework.SPOCK } | '\\$' "junit" | { properties.testFramework = TestFramework.JUNIT } | '$' } @Issue("587") def "should generate tests with message headers containing regular expression with escapes for JUnit"() { given: def contractDsl = org.springframework.cloud.contract.spec.Contract.make { name "foo" label 'trigger_event' input { triggeredBy('requestIsCalled()') } outputMessage { sentTo 'topic.rateablequote' headers { header('processId', value(producer(regex(nonEmpty())), consumer('123'))) } body([ eventId: value(producer(regex(nonEmpty())), consumer('1')) ]) } } properties.testFramework = TestFramework.JUNIT when: String test = singleTestGenerator(contractDsl) then: test.contains('ContractVerifierMessage response = contractVerifierMessaging.receive("topic.rateablequote")') test.contains('assertThat(response).isNotNull()') test.contains('assertThat(response.getHeader("processId")).isNotNull()') test.contains('assertThat(response.getHeader("processId").toString()).matches("[\\\\S\\\\s]+")') test.contains('DocumentContext parsedJson = JsonPath.parse(contractVerifierObjectMapper.writeValueAsString(response.getPayload()))') test.contains('assertThatJson(parsedJson).field("[\'eventId\']").matches("[\\\\S\\\\s]+")') } @Issue("336") def "should generate tests with message headers containing regular expression for Spock"() { given: def contractDsl = org.springframework.cloud.contract.spec.Contract.make { name "foo" label 'trigger_event' input { triggeredBy('requestIsCalled()') } outputMessage { sentTo 'topic.rateablequote' headers { header('processId', value(producer(regex('[0-9]+')), consumer('123'))) } body([ eventId: value(producer(regex('[0-9]+')), consumer('1')) ]) } } properties.testFramework = TestFramework.SPOCK when: String test = singleTestGenerator(contractDsl) then: String expectedMsg = """\ package com.example import com.jayway.jsonpath.DocumentContext import com.jayway.jsonpath.JsonPath import spock.lang.Specification import javax.inject.Inject import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.* import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes @SuppressWarnings("rawtypes") class FooSpec extends Specification { \t@Inject ContractVerifierMessaging contractVerifierMessaging \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper \tdef validate_foo() throws Exception { \t\twhen: \t\t\trequestIsCalled() \t\tthen: \t\t\tContractVerifierMessage response = contractVerifierMessaging.receive("topic.rateablequote") \t\t\tresponse != null \t\tand: \t\t\tresponse.getHeader("processId") != null \t\t\tresponse.getHeader("processId").toString() ==~ java.util.regex.Pattern.compile('[0-9]+') \t\tand: \t\t\tDocumentContext parsedJson = JsonPath.parse(contractVerifierObjectMapper.writeValueAsString(response.getPayload())) \t\t\tassertThatJson(parsedJson).field("['eventId']").matches("[0-9]+") \t} } """ test.trim() == expectedMsg.trim() } @Issue("587") def "should generate tests with message headers containing regular expression with escapes for Spock"() { given: def contractDsl = org.springframework.cloud.contract.spec.Contract.make { name "foo" label 'trigger_event' input { triggeredBy('requestIsCalled()') } outputMessage { sentTo 'topic.rateablequote' headers { header('processId', value(producer(regex(nonEmpty())), consumer('123'))) } body([ eventId: value(producer(regex(nonEmpty())), consumer('1')) ]) } } properties.testFramework = TestFramework.SPOCK when: String test = singleTestGenerator(contractDsl) then: String expectedMsg = """\ package com.example import com.jayway.jsonpath.DocumentContext import com.jayway.jsonpath.JsonPath import spock.lang.Specification import javax.inject.Inject import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.* import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes @SuppressWarnings("rawtypes") class FooSpec extends Specification { \t@Inject ContractVerifierMessaging contractVerifierMessaging \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper \tdef validate_foo() throws Exception { \t\twhen: \t\t\trequestIsCalled() \t\tthen: \t\t\tContractVerifierMessage response = contractVerifierMessaging.receive("topic.rateablequote") \t\t\tresponse != null \t\tand: \t\t\tresponse.getHeader("processId") != null \t\t\tresponse.getHeader("processId").toString() ==~ java.util.regex.Pattern.compile('[\\\\S\\\\s]+') \t\tand: \t\t\tDocumentContext parsedJson = JsonPath.parse(contractVerifierObjectMapper.writeValueAsString(response.getPayload())) \t\t\tassertThatJson(parsedJson).field("['eventId']").matches("[\\\\S\\\\s]+") \t} } """ test.trim() == expectedMsg.trim() } @Issue("440") def "should generate tests with sentTo having a method execution for Spock"() { given: def contractDsl = org.springframework.cloud.contract.spec.Contract.make { name "foo" label 'trigger_event' input { triggeredBy('requestIsCalled()') } outputMessage { sentTo $(producer(execute("toString()")), consumer('topic.rateablequote')) headers { header('processId', value(producer(regex('[0-9]+')), consumer('123'))) } body([ eventId: value(producer(regex('[0-9]+')), consumer('1')) ]) } } properties.testFramework = TestFramework.SPOCK when: String test = singleTestGenerator(contractDsl) then: String expectedMsg = """\ package com.example import com.jayway.jsonpath.DocumentContext import com.jayway.jsonpath.JsonPath import spock.lang.Specification import javax.inject.Inject import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.* import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes @SuppressWarnings("rawtypes") class FooSpec extends Specification { \t@Inject ContractVerifierMessaging contractVerifierMessaging \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper \tdef validate_foo() throws Exception { \t\twhen: \t\t\trequestIsCalled() \t\tthen: \t\t\tContractVerifierMessage response = contractVerifierMessaging.receive(toString()) \t\t\tresponse != null \t\tand: \t\t\tresponse.getHeader("processId") != null \t\t\tresponse.getHeader("processId").toString() ==~ java.util.regex.Pattern.compile('[0-9]+') \t\tand: \t\t\tDocumentContext parsedJson = JsonPath.parse(contractVerifierObjectMapper.writeValueAsString(response.getPayload())) \t\t\tassertThatJson(parsedJson).field("['eventId']").matches("[0-9]+") \t} } """ test.trim() == expectedMsg.trim() } @Issue("440") def "should generate tests with sentTo having a method execution for JUnit"() { given: def contractDsl = org.springframework.cloud.contract.spec.Contract.make { name "foo" label 'trigger_event' input { triggeredBy('requestIsCalled()') } outputMessage { sentTo $(producer(execute("toString()")), consumer('topic.rateablequote')) headers { header('processId', value(producer(regex('[0-9]+')), consumer('123'))) } body([ eventId: value(producer(regex('[0-9]+')), consumer('1')) ]) } } properties.testFramework = TestFramework.JUNIT when: String test = singleTestGenerator(contractDsl) then: String expectedMsg = """\ package com.example; import com.jayway.jsonpath.DocumentContext; import com.jayway.jsonpath.JsonPath; import org.junit.Test; import org.junit.Rule; import javax.inject.Inject; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging; import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.*; import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson; import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes; @SuppressWarnings("rawtypes") public class FooTest { \t@Inject ContractVerifierMessaging contractVerifierMessaging; \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper; \t@Test \tpublic void validate_foo() throws Exception { \t\t// when: \t\t\trequestIsCalled(); \t\t// then: \t\t\tContractVerifierMessage response = contractVerifierMessaging.receive(toString()); \t\t\tassertThat(response).isNotNull(); \t\t// and: \t\t\tassertThat(response.getHeader("processId")).isNotNull(); \t\t\tassertThat(response.getHeader("processId").toString()).matches("[0-9]+"); \t\t// and: \t\t\tDocumentContext parsedJson = JsonPath.parse(contractVerifierObjectMapper.writeValueAsString(response.getPayload())); \t\t\tassertThatJson(parsedJson).field("['eventId']").matches("[0-9]+"); \t} } """ test.trim() == expectedMsg.trim() } @Issue('#620') def "should generate tests with message headers containing regular expression which compile for [#methodBuilderName]"() { given: Contract contractDsl = Contract.make { name "foo" label 'shouldPublishMessage' // input to the contract input { // the contract will be triggered by a methodBuilder triggeredBy('foo()') } // output message of the contract outputMessage { // destination to which the output message will be sent sentTo('messageExchange') // the body of the output message body([ "field": "value" ]) headers { header('Authorization', value(regex('Bearer [A-Za-z0-9\\-\\._~\\+\\/]+=*'))) } } } methodBuilder() when: String test = singleTestGenerator(contractDsl) then: !test.contains('cursor') !test.contains('REGEXP>>') test.trim() == expectedTest.trim() where: methodBuilderName | methodBuilder | expectedTest "spock" | { properties.testFramework = TestFramework.SPOCK } | """\ package com.example import com.jayway.jsonpath.DocumentContext import com.jayway.jsonpath.JsonPath import spock.lang.Specification import javax.inject.Inject import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.* import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes @SuppressWarnings("rawtypes") class FooSpec extends Specification { \t@Inject ContractVerifierMessaging contractVerifierMessaging \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper \tdef validate_foo() throws Exception { \t\twhen: \t\t\tfoo() \t\tthen: \t\t\tContractVerifierMessage response = contractVerifierMessaging.receive("messageExchange") \t\t\tresponse != null \t\tand: \t\t\tresponse.getHeader("Authorization") != null \t\t\tresponse.getHeader("Authorization").toString() ==~ java.util.regex.Pattern.compile('Bearer [A-Za-z0-9\\\\-\\\\._~\\\\+\\\\/]+=*') \t\tand: \t\t\tDocumentContext parsedJson = JsonPath.parse(contractVerifierObjectMapper.writeValueAsString(response.getPayload())) \t\t\tassertThatJson(parsedJson).field("['field']").isEqualTo("value") \t} } """ "junit" | { properties.testFramework = TestFramework.JUNIT } | """\ package com.example; import com.jayway.jsonpath.DocumentContext; import com.jayway.jsonpath.JsonPath; import org.junit.Test; import org.junit.Rule; import javax.inject.Inject; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging; import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.*; import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson; import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes; @SuppressWarnings("rawtypes") public class FooTest { \t@Inject ContractVerifierMessaging contractVerifierMessaging; \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper; \t@Test \tpublic void validate_foo() throws Exception { \t\t// when: \t\t\tfoo(); \t\t// then: \t\t\tContractVerifierMessage response = contractVerifierMessaging.receive("messageExchange"); \t\t\tassertThat(response).isNotNull(); \t\t// and: \t\t\tassertThat(response.getHeader("Authorization")).isNotNull(); \t\t\tassertThat(response.getHeader("Authorization").toString()).matches("Bearer [A-Za-z0-9\\\\-\\\\._~\\\\+\\\\/]+=*"); \t\t// and: \t\t\tDocumentContext parsedJson = JsonPath.parse(contractVerifierObjectMapper.writeValueAsString(response.getPayload())); \t\t\tassertThatJson(parsedJson).field("['field']").isEqualTo("value"); \t} } """ } @Issue('#664') def "should generate tests for messages having binary payloads [#methodBuilderName]"() { given: Contract contractDsl = Contract.make { name "foo" label 'shouldPublishMessage' input { messageFrom("foo") messageBody(fileAsBytes("body_builder/request.pdf")) messageHeaders { messagingContentType(applicationOctetStream()) } } outputMessage { sentTo('messageExchange') body(fileAsBytes("body_builder/response.pdf")) headers { messagingContentType(applicationOctetStream()) } } } methodBuilder() when: String test = singleTestGenerator(contractDsl) then: !test.contains('cursor') !test.contains('REGEXP>>') test.trim() == expectedTest.trim() where: methodBuilderName | methodBuilder | expectedTest "spock" | { properties.testFramework = TestFramework.SPOCK } | """\ package com.example import spock.lang.Specification import javax.inject.Inject import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.* import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes @SuppressWarnings("rawtypes") class FooSpec extends Specification { \t@Inject ContractVerifierMessaging contractVerifierMessaging \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper \tdef validate_foo() throws Exception { \t\tgiven: \t\t\tContractVerifierMessage inputMessage = contractVerifierMessaging.create( \t\t\t\t\tfileToBytes(this, "foo_request_request.pdf") \t\t\t\t\t\t, headers() \t\t\t\t\t\t\t.header("contentType", "application/octet-stream") \t\t\t) \t\twhen: \t\t\tcontractVerifierMessaging.send(inputMessage, "foo") \t\tthen: \t\t\tContractVerifierMessage response = contractVerifierMessaging.receive("messageExchange") \t\t\tresponse != null \t\tand: \t\t\tresponse.getHeader("contentType") != null \t\t\tresponse.getHeader("contentType").toString() == 'application/octet-stream' \t\tand: \t\t\tresponse.getPayloadAsByteArray() == fileToBytes(this, "foo_response_response.pdf") \t} } """ "junit" | { properties.testFramework = TestFramework.JUNIT } | """\ package com.example; import org.junit.Test; import org.junit.Rule; import javax.inject.Inject; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging; import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.*; import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes; @SuppressWarnings("rawtypes") public class FooTest { \t@Inject ContractVerifierMessaging contractVerifierMessaging; \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper; \t@Test \tpublic void validate_foo() throws Exception { \t\t// given: \t\t\tContractVerifierMessage inputMessage = contractVerifierMessaging.create( \t\t\t\t\tfileToBytes(this, "foo_request_request.pdf") \t\t\t\t\t\t, headers() \t\t\t\t\t\t\t.header("contentType", "application/octet-stream") \t\t\t); \t\t// when: \t\t\tcontractVerifierMessaging.send(inputMessage, "foo"); \t\t// then: \t\t\tContractVerifierMessage response = contractVerifierMessaging.receive("messageExchange"); \t\t\tassertThat(response).isNotNull(); \t\t// and: \t\t\tassertThat(response.getHeader("contentType")).isNotNull(); \t\t\tassertThat(response.getHeader("contentType").toString()).isEqualTo("application/octet-stream"); \t\t// and: \t\t\tassertThat(response.getPayloadAsByteArray()).isEqualTo(fileToBytes(this, "foo_response_response.pdf")); \t} } """ } @Issue('#650') def "should generate output for message [#methodBuilderName]"() { given: Contract contractDsl = org.springframework.cloud.contract.spec.Contract.make { name "foo" description 'issue #650' label 'trigger' input { triggeredBy('createNewPerson()') } outputMessage { sentTo 'personEventsTopic' headers { [ header('contentType': 'application/json'), header('type': 'person'), header('eventType': 'PersonChangedEvent'), header('customerId': $(producer(regex(uuid())))) ] } body([ "type" : 'CREATED', "personId" : $(producer(regex(uuid())), consumer('0fd552ba-8043-42da-ab97-4fc77e1057c9')), "userId" : $(producer(optional(regex(uuid()))), consumer('f043ccf1-0b72-423b-ad32-4ef123718897')), "firstName" : $(regex(nonEmpty())), "middleName": $(optional(regex(nonEmpty()))), "lastName" : $(regex(nonEmpty())), "version" : $(producer(regex(number())), consumer(0l)), "uid" : $(producer(regex(uuid()))) ]) } } methodBuilder() when: String test = singleTestGenerator(contractDsl) then: !test.contains('cursor') !test.contains('REGEXP>>') test.trim() == expectedTest.trim() where: methodBuilderName | methodBuilder | expectedTest "spock" | { properties.testFramework = TestFramework.SPOCK } | """\ package com.example import com.jayway.jsonpath.DocumentContext import com.jayway.jsonpath.JsonPath import spock.lang.Specification import javax.inject.Inject import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.* import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes @SuppressWarnings("rawtypes") class FooSpec extends Specification { \t@Inject ContractVerifierMessaging contractVerifierMessaging \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper \tdef validate_foo() throws Exception { \t\twhen: \t\t\tcreateNewPerson() \t\tthen: \t\t\tContractVerifierMessage response = contractVerifierMessaging.receive("personEventsTopic") \t\t\tresponse != null \t\tand: \t\t\tresponse.getHeader("contentType") != null \t\t\tresponse.getHeader("contentType").toString() == 'application/json' \t\t\tresponse.getHeader("type") != null \t\t\tresponse.getHeader("type").toString() == 'person' \t\t\tresponse.getHeader("eventType") != null \t\t\tresponse.getHeader("eventType").toString() == 'PersonChangedEvent' \t\t\tresponse.getHeader("customerId") != null \t\t\tresponse.getHeader("customerId").toString() ==~ java.util.regex.Pattern.compile('[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}') \t\tand: \t\t\tDocumentContext parsedJson = JsonPath.parse(contractVerifierObjectMapper.writeValueAsString(response.getPayload())) \t\t\tassertThatJson(parsedJson).field("['type']").isEqualTo("CREATED") \t\t\tassertThatJson(parsedJson).field("['personId']").matches("[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}") \t\t\tassertThatJson(parsedJson).field("['userId']").matches("([a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})?") \t\t\tassertThatJson(parsedJson).field("['firstName']").matches("[\\\\S\\\\s]+") \t\t\tassertThatJson(parsedJson).field("['middleName']").matches("([\\\\S\\\\s]+)?") \t\t\tassertThatJson(parsedJson).field("['lastName']").matches("[\\\\S\\\\s]+") \t\t\tassertThatJson(parsedJson).field("['version']").matches("-?(\\\\d*\\\\.\\\\d+|\\\\d+)") \t\t\tassertThatJson(parsedJson).field("['uid']").matches("[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}") \t} } """ "junit" | { properties.testFramework = TestFramework.JUNIT } | """\ package com.example; import com.jayway.jsonpath.DocumentContext; import com.jayway.jsonpath.JsonPath; import org.junit.Test; import org.junit.Rule; import javax.inject.Inject; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierObjectMapper; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessage; import org.springframework.cloud.contract.verifier.messaging.internal.ContractVerifierMessaging; import static org.springframework.cloud.contract.verifier.assertion.SpringCloudContractAssertions.assertThat; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.*; import static com.toomuchcoding.jsonassert.JsonAssertion.assertThatJson; import static org.springframework.cloud.contract.verifier.messaging.util.ContractVerifierMessagingUtil.headers; import static org.springframework.cloud.contract.verifier.util.ContractVerifierUtil.fileToBytes; @SuppressWarnings("rawtypes") public class FooTest { \t@Inject ContractVerifierMessaging contractVerifierMessaging; \t@Inject ContractVerifierObjectMapper contractVerifierObjectMapper; \t@Test \tpublic void validate_foo() throws Exception { \t\t// when: \t\t\tcreateNewPerson(); \t\t// then: \t\t\tContractVerifierMessage response = contractVerifierMessaging.receive("personEventsTopic"); \t\t\tassertThat(response).isNotNull(); \t\t// and: \t\t\tassertThat(response.getHeader("contentType")).isNotNull(); \t\t\tassertThat(response.getHeader("contentType").toString()).isEqualTo("application/json"); \t\t\tassertThat(response.getHeader("type")).isNotNull(); \t\t\tassertThat(response.getHeader("type").toString()).isEqualTo("person"); \t\t\tassertThat(response.getHeader("eventType")).isNotNull(); \t\t\tassertThat(response.getHeader("eventType").toString()).isEqualTo("PersonChangedEvent"); \t\t\tassertThat(response.getHeader("customerId")).isNotNull(); \t\t\tassertThat(response.getHeader("customerId").toString()).matches("[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}"); \t\t// and: \t\t\tDocumentContext parsedJson = JsonPath.parse(contractVerifierObjectMapper.writeValueAsString(response.getPayload())); \t\t\tassertThatJson(parsedJson).field("['type']").isEqualTo("CREATED"); \t\t\tassertThatJson(parsedJson).field("['personId']").matches("[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}"); \t\t\tassertThatJson(parsedJson).field("['userId']").matches("([a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})?"); \t\t\tassertThatJson(parsedJson).field("['firstName']").matches("[\\\\S\\\\s]+"); \t\t\tassertThatJson(parsedJson).field("['middleName']").matches("([\\\\S\\\\s]+)?"); \t\t\tassertThatJson(parsedJson).field("['lastName']").matches("[\\\\S\\\\s]+"); \t\t\tassertThatJson(parsedJson).field("['version']").matches("-?(\\\\d*\\\\.\\\\d+|\\\\d+)"); \t\t\tassertThatJson(parsedJson).field("['uid']").matches("[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}"); \t} } """ } }
/* * Copyright (c) Facebook, Inc. and its affiliates. * * 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. */ namespace cpp2 apache.thrift namespace php thrift namespace py apache.thrift.dynamic namespace py.asyncio apache.asyncio.thrift.dynamic namespace py3 apache.thrift namespace java.swift org.apache.thrift.dynamic namespace js thrift cpp_include "thrift/lib/thrift/SerializableDynamic.h" union Dynamic { 1: bool boolean (java.swift.name = "_boolean"); 2: i64 integer; 3: double doubl; 4: binary str; 5: list<Dynamic> arr; 6: map<string, Dynamic> object; } typedef Dynamic (cpp.type = "::apache::thrift::SerializableDynamic") DynamicType
(* Copyright (C) 1999-2005, 2008 Henry Cejtin, Matthew Fluet, Suresh * Jagannathan, and Stephen Weeks. * Copyright (C) 1997-2000 NEC Research Institute. * * MLton is released under a HPND-style license. * See the file MLton-LICENSE for details. *) val ~ = Int.~ val ( op + ) = Int.+ val ( op - ) = Int.- val ( op * ) = Int.* val ( op div ) = Int.div val ( op mod ) = Int.mod val ( op < ) = Int.< val ( op <= ) = Int.<= val ( op > ) = Int.> val ( op >= ) = Int.>=
{-# OPTIONS_GHC -Wno-unused-imports #-} {-# OPTIONS_GHC -Wno-dodgy-exports #-} module Pos.Chain.Block.Main ( module Pos.Chain.Block.Main.Instances , module Pos.Chain.Block.Main.Types ) where import Pos.Chain.Block.Main.Instances import Pos.Chain.Block.Main.Types
grammar TinyX; program : statement+; statement : let | show ; let : VAR '=' (INT | VAR) ; show : 'show' (INT | VAR) ; VAR : [a-z]+ ; INT : [0-9]+ ; WS : [ \n\t]+ -> skip;
package org.koin.sampleapp.repository.json.weather import com.google.gson.annotations.Expose import com.google.gson.annotations.SerializedName class Forecastday { /** * @return The period */ /** * @param period The period */ @Expose var period: Int? = null /** * @return The icon */ /** * @param icon The icon */ @Expose var icon: String? = null /** * @return The iconUrl */ /** * @param iconUrl The icon_url */ @SerializedName("icon_url") @Expose var iconUrl: String? = null /** * @return The title */ /** * @param title The title */ @Expose var title: String? = null /** * @return The fcttext */ /** * @param fcttext The fcttext */ @Expose var fcttext: String? = null /** * @return The fcttextMetric */ /** * @param fcttextMetric The fcttext_metric */ @SerializedName("fcttext_metric") @Expose var fcttextMetric: String? = null /** * @return The pop */ /** * @param pop The pop */ @Expose var pop: String? = null }
{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fswiss\fcharset0 Arial;}} {\*\generator Msftedit 5.41.15.1515;}\viewkind4\uc1\pard\f0\fs20 function skel_oncombat(pUnit, event)\par pUnit:RegisterEvent("skel_thrash", math.random(8000, 10000), 0)\par end\par \par function skel_thrash(pUnit, event)\par local luck = math.random(1, 10)\par if luck <= 5 then\par pUnit:CastSpell(3391)\par else\par end\par end\par \par function skel_ondeath(pUnit, event)\par pUnit:RemoveEvents()\par pUnit:Despawn(500, 0) \par end\par \par function skel_leavecombat(pUnit, event)\par \tab pUnit:RemoveEvents()\par end\par \par RegisterUnitEvent(20007, 1, "skel_oncombat")\par RegisterUnitEvent(20007, 2, "skel_leavecombat")\par RegisterUnitEvent(20007, 4, "skel_ondeath")\par }
Comparison of Synphot and Pysynphot Bandpar Functionality ========================================================= .. abstract:: :author: Matt Davis (SSB) :date: 15 November 2011 Pysynphot attempts to replicate much of the functionality of the Synphot `bandpar utility <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/doc/bandpar.hlp>`_ but sometimes uses different formulae and algorithms. This TSR collects the calculations used in Pysynphot, Synphot, the formulae described in the `Synphot Manual`_ in Section 5.1 on page 42, and the formulae in the Synphot help files. .. _Synphot Manual: http://stsdas.stsci.edu/stsci_python_epydoc/SynphotManual.pdf RMS Width - BANDW - PHOTBW ========================== Summary ------- RMS width is added to image headers in the PHOTBW keyword. **Pysynphot** * *Function name*: `SpectralElement.rmswidth <https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py#L1083>`_ * *Source code*: `spectrum.py <https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py>`_ * *References*: :ref:`3: page 836 <ref3>` **Synphot** * *Bandpar name*: `BANDW <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/doc/bandpar.hlp>`_ * *Function name*: `rmslam`_ called by `comppar`_ called by `bandpar`_. * *Source code*: `rmslam.x <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/lib/synphot/rmslam.x>`_ * *References*: :ref:`1: sections 5.1,7.1 <ref1>`, :ref:`2 <ref2>`, :ref:`4: page 46 <ref4>` .. _comppar: https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/bandpar/comppar.x .. _bandpar: https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/bandpar/bandpar.x Synphot Equations ----------------- The `Synphot Manual`_ section 5.1 gives the equation for RMS bandwidth as .. math:: \lambda_{rms}^2 = \bar{\lambda}^2 \frac{\int P_{\lambda} \ln(\lambda/\bar{\lambda})^2 \,d\lambda/\lambda}{\int P_{\lambda} \,d\lambda/\lambda} where .. math:: \bar{\lambda} = \exp \left[ \frac{\int P_{\lambda} \ln(\lambda) \,d\lambda/\lambda} {\int P_{\lambda} \,d\lambda/\lambda} \right]. The Synphot function `rmslam`_ does appear to implement this procedure for calculating the RMS width of the bandpass. The source code references the `WF/PC-1 Instrument Handbook <http://www.stsci.edu/hst/wfpc/documents/HST_WFPC_Instrument_Handbook.pdf>`_ as the source of the equation for RMS width and references Schneider, Gunn and Hoessel (1983 ApJ 264,337) as the source for the equation for mean wavelength. The `bandpar help file <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/doc/bandpar.hlp>`_ gives the same equations as above for the RMS width but the `Synphot Manual`_ in section 7.1 gives different equations when describing bandpar. The equations in section 7.1 are the same as used by Pysynphot, shown below. .. _rmslam: https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/lib/synphot/rmslam.x Pysynphot Equations ------------------- The Pysynphot `rmswidth`_ source code references Koornneef et al 1987, page 836 as the source for its RMS width calculation, which is .. math:: \lambda_{rms}^2 = \frac{\int P_{\lambda} (\lambda - \bar{\lambda})^2 \,d\lambda} {\int P_{\lambda} \,d\lambda} where .. math:: \bar{\lambda} = \frac{\int \lambda P_{\lambda} \,d\lambda} {\int P_{\lambda} \,d\lambda}. .. _rmswidth: https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py#L1106 Full Width Half-Max - FWHM ========================== Summary ------- **Pysynphot** * *Function name*: `SpectralElement.fwhm <https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py#L1462>`_ * *Source code*: `spectrum.py <https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py>`_ * *References*: **Synphot** * *Bandpar name*: `FWHM <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/doc/bandpar.hlp>`_ * *Function name*: `fwhmlam <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/lib/synphot/fwhmlam.x>`_ called by `comppar`_ called by `bandpar`_. * *Source code*: `fwhmlam.x <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/lib/synphot/fwhmlam.x>`_ * *References*: :ref:`1: section 5.1 <ref1>` Synphot Equations ----------------- The FWHM is simply defined relative to the RMS width above: .. math:: fwhm = \sqrt{8\ln 2}\cdot rmswidth Pysynphot Equations ------------------- Pysynphot does not currently implement a FWHM calculation. See https://trac.assembla.com/astrolib/ticket/139. Equivalent Width - EQUVW ======================== Summary ------- **Pysynphot** * *Function name*: `SpectralElement.equvwidth <https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py#L1126>`_ * *Source code*: `spectrum.py <https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py>`_ * *References*: **Synphot** * *Bandpar name*: `EQUVW <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/doc/bandpar.hlp>`_ * *Function name*: `widthlam <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/newlib/widthlam.x>`_ called by `comppar`_ called by `bandpar`_. * *Source code*: `widthlam.x <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/newlib/widthlam.x>`_ * *References*: :ref:`1: section 5.1 <ref1>` Synphot Equations ----------------- The equivalent width is simply the integral of the throughput: .. math:: equvw = \int P_{\lambda}\,d\lambda Pysynphot Equations ------------------- Pysynphot calculates the equivalent width in the same manner as Synphot. Rectangular Width - RECTW ========================= Summary ------- **Pysynphot** * *Function name*: `SpectralElement.rectwidth <https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py#L1109>`_ * *Source code*: `spectrum.py <https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py>`_ * *References*: **Synphot** * *Bandpar name*: `RECTW <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/doc/bandpar.hlp>`_ * *Function name*: `widthlam <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/newlib/widthlam.x>`_ called by `comppar`_ called by `bandpar`_. * *Source code*: `widthlam.x <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/newlib/widthlam.x>`_ * *References*: :ref:`1: section 5.1 <ref1>` Synphot Equations ----------------- Synphot calculates the rectangular width at the same time it calculates the equivalent width by simply dividing the equivalent width by the maximum throughput of the passband: .. math:: rectw = \frac{equvw}{\max(P_{\lambda})} This is equivalent to the formula given in section 5.1 of the `Synphot Manual`_: .. math:: rectw = \frac{\int P_{\lambda}\,d\lambda}{\max(P_{\lambda})} Pysynphot Equations ------------------- Pysynphot calculates the rectangular width in functionally the same way as Synphot but does not defer any calculation to the equivalent width method. Instead, Pysynphot directly calculates the integral of the throughput and divides by the maximum within the `rectwidth method <https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py#L1109>`_. Unit Response - URESP - PHOTFLAM ================================ Summary ------- Unit response is added to image headers in the PHOTFLAM keyword. **Pysynphot** * *Function name*: `SpectralElement.unit_response <https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py#L1429>`_ * *Source code*: `spectrum.py <https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py>`_ * *References*: **Synphot** * *Bandpar name*: `URESP <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/doc/bandpar.hlp>`_ * *Function name*: `funit <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/lib/synphot/funit.x>`_ called by `comppar`_ called by `bandpar`_. * *Source code*: `funit.x <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/lib/synphot/funit.x>`_ * *References*: :ref:`1: sections 5.1, 7.1 <ref1>` Synphot Equations ----------------- .. math:: U_{\lambda} = \frac{hc/A}{\int \lambda P_{\lambda}\,d\lambda} where :math:`h` and :math:`c` are the usual fundamental constants and :math:`A` is the area of the telescope primary mirror. Pysynphot Equations ------------------- Pysynphot calculates the unit response in the same way as Synphot. Pivot Wavelength - PIVWV - PHOTPLAM =================================== Summary ------- Pivot wavelength is added to image headers in the PHOTPLAM keyword. **Pysynphot** * *Function name*: `SpectralElement.pivot <https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py#L1060>`_ * *Source code*: `spectrum.py <https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py>`_ * *References*: **Synphot** * *Bandpar name*: `PIVWV <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/doc/bandpar.hlp>`_ * *Function name*: `pivlam <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/lib/synphot/pivlam.x>`_ called by `comppar`_ called by `bandpar`_. * *Source code*: `pivlam.x <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/lib/synphot/pivlam.x>`_ * *References*: :ref:`1: sections 5.1, 7.1 <ref1>` Synphot Equations ----------------- The pivot wavelength equation is recorded in sections 5.1 and 7.1 of the `Synphot Manual`_ and matches in both places. .. math:: \lambda_p = \sqrt{\frac{\int \lambda P_{\lambda}\,d\lambda} {\int P_{\lambda}\,d\lambda/\lambda}} Pysynphot Equations ------------------- Pysynphot calculates the pivot wavelength in the same way as Synphot. Wavelength at Peak Throughput - WPEAK ===================================== Summary ------- **Pysynphot** * *Function name*: * *Source code*: * *References*: **Synphot** * *Bandpar name*: `WPEAK <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/doc/bandpar.hlp>`_ * *Function name*: `peaklam2 <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/newlib/peaklam.x>`_ called by `comppar`_ called by `bandpar`_. * *Source code*: `peaklam.x <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/newlib/peaklam.x>`_ * *References*: :ref:`1: sections 5.1 <ref1>` Synphot Equations ----------------- Like the name implies, this is simply the wavelength at the point of peak throughput. Synphot finds it by looping over the throughput. Pysynphot Equations ------------------- Pysynphot does not currently implement a peak wavelength calculation. See https://trac.assembla.com/astrolib/ticket/139. Peak Throughput - TPEAK ======================= Summary ------- **Pysynphot** * *Function name*: * *Source code*: * *References*: **Synphot** * *Bandpar name*: `TPEAK <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/doc/bandpar.hlp>`_ * *Function name*: `peaklam2 <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/newlib/peaklam.x>`_ called by `comppar`_ called by `bandpar`_. * *Source code*: `peaklam.x <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/newlib/peaklam.x>`_ * *References*: :ref:`1: sections 5.1 <ref1>` Synphot Equations ----------------- This is simply the maximum throughput of the passband. Synphot finds it by looping over the throughput. Pysynphot Equations ------------------- Pysynphot does not currently implement a peak throughput calculation. See https://trac.assembla.com/astrolib/ticket/139. Average Wavelength - AVGWV ========================== Summary ------- **Pysynphot** * *Function name*: `SpectralElement.avgwave <https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py#L1039>`_ * *Source code*: `spectrum.py <https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py>`_ * *References*: :ref:`3: page 836 <ref3>` **Synphot** * *Bandpar name*: `AVGWV <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/doc/bandpar.hlp>`_ * *Function name*: `avglam <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/lib/synphot/avglam.x>`_ called by `comppar`_ called by `bandpar`_. * *Source code*: `avglam.x <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/lib/synphot/avglam.x>`_ * *References*: :ref:`1: sections 5.1, 7.1 <ref1>` Synphot Equations ----------------- .. math:: \lambda_0 = \frac{\int \lambda P_{\lambda}\,d\lambda} {\int P_{\lambda}\,d\lambda} Pysynphot Equations ------------------- Pysynphot calculates the average wavelength in the same way as Synphot. Dimensionless Efficiency - QTLAM ================================ Summary ------- **Pysynphot** * *Function name*: `SpectralElement.efficiency <https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py#L1131>`_ * *Source code*: `spectrum.py <https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py>`_ * *References*: **Synphot** * *Bandpar name*: `QTLAM <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/doc/bandpar.hlp>`_ * *Function name*: `qtlam <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/newlib/qtlam.x>`_ called by `comppar`_ called by `bandpar`_. * *Source code*: `qtlam.x <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/newlib/qtlam.x>`_ * *References*: :ref:`1: section 5.1 <ref1>`, :ref:`5: page 152 <ref5>` Synphot Equations ----------------- .. math:: qtlam = \int P_{\lambda}\,d\lambda/\lambda Pysynphot Equations ------------------- Pysynphot calculates the efficiency in the same way as Synphot. Throughput at Reference Wavelength - TLAMBDA ============================================ Summary ------- **Pysynphot** * *Function name*: * *Source code*: * *References*: **Synphot** * *Bandpar name*: `TLAMBDA <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/doc/bandpar.hlp>`_ * *Function name*: `monolam <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/newlib/monolam.x>`_ called by `comppar`_ called by `bandpar`_. * *Source code*: `monolam.x <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/newlib/monolam.x>`_ * *References*: :ref:`1: sections 5.1 <ref1>` Synphot Equations ----------------- This is simply the bandpass throughput at a reference wavelength. By default the reference wavelength is the average wavelength as defined above. Pysynphot Equations ------------------- The throughput of a Pysynphot SpectralElement object can be sampled at any wavelength using the `sample() method <https://trac.assembla.com/astrolib/browser/trunk/pysynphot/lib/pysynphot/spectrum.py#L1251>`_. There is no function specifically for retrieving the throughput at the average wavelength. Equivalent Monochromatic Flux - EMFLX ===================================== Summary ------- **Pysynphot** * *Function name*: * *Source code*: * *References*: **Synphot** * *Bandpar name*: `EMFLX <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/doc/bandpar.hlp>`_ * *Function name*: `monolam <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/newlib/monolam.x>`_ called by `comppar`_ called by `bandpar`_. * *Source code*: `monolam.x <https://svn.stsci.edu/trac/ssb/stsci_python/browser/stsdas/trunk/stsdas/pkg/hst_calib/synphot/newlib/monolam.x>`_ * *References*: :ref:`1: sections 5.1 <ref1>` Synphot Equations ----------------- The equivalent monochromatic flux is a combination of unit response, rectangular width, peak throughput and throughput at the average wavelength: .. math:: emflx = uresp \cdot rectw \cdot \frac{tpeak}{tlambda} Pysynphot Equations ------------------- Pysynphot does not currently implement an equivalent monochromatic flux calculation. See https://trac.assembla.com/astrolib/ticket/139. Reference Wavelength - REFWAVE ============================== See the section on average wavelength above.
-include_lib("eunit.hrl"). couch_storage_test() -> {ok, State} = couch_storage:open("testdata/couch", storage_test), {ok, St2} = couch_storage:put("key_one", context, <<"value one">>, State), {ok, St3} = couch_storage:put("key_one", context, <<"value one">>, St2), {ok, St4} = couch_storage:put("key_two", context, <<"value two">>, St3), Result = couch_storage:fold(fun({Key, Context, Value}, Acc) -> [Key|Acc] end, St4, []), timer:sleep(100), ["key_two", "key_one"] = Result, {ok, {context, <<"value one">>}} = couch_storage:get("key_one", St4), {ok, true} = couch_storage:has_key("key_one", St4), {ok, St5} = couch_storage:delete("key_one", St4), {ok, false} = couch_storage:has_key("key_one", St5), {ok, true} = couch_storage:has_key("key_two", St5), {ok, St6} = couch_storage:delete("key_two", St5), couch_storage:close(St6). % dict_storage_test() -> % storage_server:start_link(dict_storage, ok, store, 0, (2 bsl 31)), % storage_server:put(store, key, context, value), % storage_server:put(store, two, context, value2), % ["two", "key"] = storage_server:fold(store, fun({Key, Context, Value}, Acc) -> [Key|Acc] end, []), % {ok, {context, [value]}} = storage_server:get(store, key), % {ok, true} = storage_server:has_key(store, key), % storage_server:delete(store, key), % {ok, false} = storage_server:has_key(store, key), % storage_server:close(store), % receive _ -> true end. % % local_fs_storage_test() -> % {ok, State} = fs_storage:open("testdata/storage_test", storage_test), % fs_storage:put("key_one", context, <<"value one">>, State), % fs_storage:put("key_one", context, <<"value one">>, State), % fs_storage:put("key_two", context, <<"value two">>, State), % ["key_two", "key_one"] = fs_storage:fold(fun({Key, Context, Value}, Acc) -> [Key|Acc] end, State, []), % {ok, {context, [<<"value one">>]}} = fs_storage:get("key_one", State), % {ok, true} = fs_storage:has_key("key_one", State), % fs_storage:delete("key_one", State), % {ok, false} = fs_storage:has_key("key_one", State), % {ok, true} = fs_storage:has_key("key_two", State), % fs_storage:delete("key_two", State), % fs_storage:close(State). % % fs_storage_test() -> % {ok, Pid} = storage_server:start_link(fs_storage, "testdata/storage_test", store2, 0, (2 bsl 31)), % storage_server:put(store2, "key_one", context, <<"value one">>), % storage_server:put(store2, "key_one", context, <<"value one">>), % storage_server:put(store2, "key_two", context, <<"value two">>), % ["key_two", "key_one"] = storage_server:fold(store2, fun({Key, Context, Value}, Acc) -> [Key|Acc] end, []), % {ok, {context, [<<"value one">>]}} = storage_server:get(store2, "key_one"), % {ok,true} = storage_server:has_key(store2, "key_one"), % storage_server:delete(store2, "key_one"), % {ok,false} = storage_server:has_key(store2, "key_one"), % {ok,true} = storage_server:has_key(store2, "key_two"), % storage_server:delete(store2, "key_two"), % exit(Pid, shutdown), % receive _ -> true end. % % sync_storage_test() -> % {ok, Pid} = storage_server:start_link(dict_storage, ok, store1, 0, (2 bsl 31)), % {ok, Pid2} = storage_server:start_link(dict_storage, ok, store2, 0, (2 bsl 31)), % storage_server:put(store2, "key_one", vector_clock:create(a), <<"value one">>), % storage_server:put(store2, "key_two", vector_clock:create(a), <<"value two">>), % storage_server:sync(store2, Pid), % {ok, {_, [<<"value one">>]}} = storage_server:get(Pid, "key_one"), % {ok, {_, [<<"value two">>]}} = storage_server:get(Pid, "key_two"), % exit(Pid, shutdown), % receive _ -> true end, % exit(Pid2, shutdown), % receive _ -> true end.
/* QUERY 1: instanceOf('WomanUnderLifetimeBRCRisk','Helen',LE). P=0.123 EXPL: LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),(equivalentClasses(['WomanUnderBRCRisk',intersectionOf(['Woman',someValuesFrom(hasRisk,'BRCRisk')])]),'Helen'),(equivalentClasses(['WomanUnderIncreasedBRCRisk',intersectionOf([someValuesFrom(hasRisk,'IncreasedBRCRisk'),'WomanUnderBRCRisk'])]),'Helen'),(equivalentClasses(['WomanUnderModeratelyIncreasedBRCRisk',intersectionOf(['WomanUnderIncreasedBRCRisk',someValuesFrom(hasRisk,'ModeratelyIncreasedBRCRisk')])]),'Helen'),(subClassOf('PostmenopausalWomanTakingEstrogen','WomanUnderModeratelyIncreasedBRCRisk'),'Helen'),(equivalentClasses(['PostmenopausalWomanTakingEstrogen',intersectionOf(['PostmenopausalWoman',someValuesFrom(hasRiskFactor,'Estrogen')])]),'Helen'),(equivalentClasses(['WomanTakingEstrogen',someValuesFrom(hasRiskFactor,'Estrogen')]),'Helen'),classAssertion('WomanTakingEstrogen','Helen'),classAssertion('PostmenopausalWoman','Helen')] ? ; LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),(equivalentClasses(['WomanUnderBRCRisk',intersectionOf(['Woman',someValuesFrom(hasRisk,'BRCRisk')])]),'Helen'),(equivalentClasses(['WomanUnderIncreasedBRCRisk',intersectionOf([someValuesFrom(hasRisk,'IncreasedBRCRisk'),'WomanUnderBRCRisk'])]),'Helen'),(subClassOf('WomanUnderModeratelyIncreasedBRCRisk','WomanUnderIncreasedBRCRisk'),'Helen'),(subClassOf('PostmenopausalWomanTakingEstrogen','WomanUnderModeratelyIncreasedBRCRisk'),'Helen'),(equivalentClasses(['PostmenopausalWomanTakingEstrogen',intersectionOf(['PostmenopausalWoman',someValuesFrom(hasRiskFactor,'Estrogen')])]),'Helen'),(equivalentClasses(['WomanTakingEstrogen',someValuesFrom(hasRiskFactor,'Estrogen')]),'Helen'),classAssertion('WomanTakingEstrogen','Helen'),classAssertion('PostmenopausalWoman','Helen')] ? ; LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),classAssertion('Woman','Helen')] ? ; LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),(subClassOf('WomanTakingEstrogen','Woman'),'Helen'),classAssertion('WomanTakingEstrogen','Helen')] ? ; LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),(equivalentClasses(['PostmenopausalWoman',intersectionOf(['Woman',someValuesFrom(hasRiskFactor,'AfterMenopause')])]),'Helen'),classAssertion('PostmenopausalWoman','Helen')] ? ; LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),(subClassOf('PostmenopausalWoman','Woman'),'Helen'),classAssertion('PostmenopausalWoman','Helen')] ? ; LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),(equivalentClasses(['WomanAged3040',intersectionOf(['Woman',someValuesFrom(hasAge,'Age3040')])]),'Helen'),classAssertion('WomanAged3040','Helen')] ? ; LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),(equivalentClasses(['WomanUnderShortTermBRCRisk',intersectionOf(['Woman',someValuesFrom(hasRisk,'ShortTermBRCRisk')])]),'Helen'),(subClassOf('WomanAged3040','WomanUnderShortTermBRCRisk'),'Helen'),classAssertion('WomanAged3040','Helen')] ? ; LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),(equivalentClasses(['WomanUnderAbsoluteBRCRisk',intersectionOf(['Woman',someValuesFrom(hasRisk,'AbsoluteBRCRisk')])]),'Helen'),(subClassOf('WomanUnderShortTermBRCRisk','WomanUnderAbsoluteBRCRisk'),'Helen'),(subClassOf('WomanAged3040','WomanUnderShortTermBRCRisk'),'Helen'),classAssertion('WomanAged3040','Helen')] ? ; LE = [(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),'Helen'),(subClassOf('WomanAged3040','Woman'),'Helen'),classAssertion('WomanAged3040','Helen')] ? ; */ equivalentClasses(['WomanTakingEstrogen',someValuesFrom('hasRiskFactor','Estrogen')]). equivalentClasses(['WomanTakingProgestin',someValuesFrom('hasRiskFactor','Progestin')]). equivalentClasses(['AbsoluteBRCRisk',intersectionOf(['BRCRisk',allValuesFrom('riskCategory','AbsoluteRiskCategory')])]). equivalentClasses(['AfricanAmericanWoman',intersectionOf(['Woman',someValuesFrom('hasRace','AfricanAmerican')])]). equivalentClasses(['Age50Plus',unionOf(['Age5060','Age70Plus','Age6070'])]). equivalentClasses(['AshkenaziJewishWoman',intersectionOf([someValuesFrom('hasRace','AshkenaziJew'),'Woman'])]). equivalentClasses(['BRCRType',intersectionOf(['RiskType',someValuesFrom('riskOf','BreastCancer')])]). equivalentClasses(['EstrogenProgestin',intersectionOf(['Estrogen','Progestin'])]). equivalentClasses(['EstrogenTestosterone',intersectionOf(['Testosterone','Estrogen'])]). equivalentClasses(['IncreasedBRCRisk',intersectionOf(['RelativeBRCRisk',allValuesFrom('riskCategory','IncreasedRiskCategory')])]). equivalentClasses(['ModeratelyIncreasedBRCRisk',intersectionOf([allValuesFrom('riskCategory','ModerateIncrease'),'IncreasedBRCRisk'])]). equivalentClasses(['ModeratelyReducedBRCRisk',allValuesFrom('riskCategory','ModerateDecrease')]). equivalentClasses(['OverweightWoman',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','Overweight')])]). equivalentClasses(['PersonUnderRisk',intersectionOf(['Person',someValuesFrom('hasRisk','Risk')])]). equivalentClasses(['PostmenopausalWoman',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','AfterMenopause')])]). equivalentClasses(['PostmenopausalWomanTakingEstrogen',intersectionOf(['PostmenopausalWoman',someValuesFrom('hasRiskFactor','Estrogen')])]). equivalentClasses(['PostmenopausalWomanTakingEstrogenAndProgestin',intersectionOf([someValuesFrom('hasRiskFactor','Estrogen'),someValuesFrom('hasRiskFactor','Progestin')])]). equivalentClasses(['PostmenopausalWomanTakingEstrogenAndTestosterone',intersectionOf([someValuesFrom('hasRiskFactor','Testosterone'),someValuesFrom('hasRiskFactor','Estrogen'),'PostmenopausalWoman'])]). equivalentClasses(['PostmenopausalWomanTakingProgestin',intersectionOf([someValuesFrom('hasRiskFactor','Progestin'),'PostmenopausalWoman'])]). equivalentClasses(['PostmenopausalWomanTakingTestosterone',intersectionOf([someValuesFrom('hasRiskFactor','Testosterone'),'PostmenopausalWoman'])]). equivalentClasses(['PostmenopausalWomanWithHighLevelOfEstrogen',intersectionOf(['PostmenopausalWoman','WomanWithHighLevelOfEstrogen'])]). equivalentClasses(['PremenopausalWoman',intersectionOf([someValuesFrom('hasRiskFactor','BeforeMenopause'),'Woman'])]). equivalentClasses(['ReducedBRCRisk',intersectionOf(['RelativeBRCRisk',someValuesFrom('riskCategory','ReducedRiskCategory')])]). equivalentClasses(['RelativeBRCRisk',intersectionOf(['BRCRisk',allValuesFrom('riskCategory','RelativeRiskCategory')])]). equivalentClasses(['SeniorWomanWithMotherBRCAffected',intersectionOf([intersectionOf(['Woman',someValuesFrom('hasRiskFactor','MotherAffected')]),someValuesFrom('hasAge','Age50Plus')])]). equivalentClasses(['StronglyIncreasedBRCRisk',intersectionOf(['IncreasedBRCRisk',allValuesFrom('riskCategory','StrongIncrease')])]). equivalentClasses(['StronglyReducedBRCRisk',allValuesFrom('riskCategory','StrongDecrease')]). equivalentClasses(['WeakelyIncreasedBRCRisk',intersectionOf([allValuesFrom('riskCategory','WeakIncrease'),'IncreasedBRCRisk'])]). equivalentClasses(['WeakelyReducedBRCRisk',allValuesFrom('riskCategory','WeakDecrease')]). equivalentClasses(['Woman',intersectionOf(['Person',someValuesFrom('hasGender','Female')])]). equivalentClasses(['WomanAbusingAlcohol',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','Alcohol')])]). equivalentClasses(['WomanAged2030',someValuesFrom('hasAge','Age2030')]). equivalentClasses(['WomanAged3040',intersectionOf(['Woman',someValuesFrom('hasAge','Age3040')])]). equivalentClasses(['WomanAged4050',someValuesFrom('hasAge','Age4050')]). equivalentClasses(['WomanAged5060',intersectionOf([someValuesFrom('hasAge','Age5060'),'Woman'])]). equivalentClasses(['WomanAged50Plus',intersectionOf(['Woman',someValuesFrom('hasAge','Age50Plus')])]). equivalentClasses(['WomanAged6070',someValuesFrom('hasAge','Age6070')]). equivalentClasses(['WomanAged70Plus',someValuesFrom('hasAge','Age70Plus')]). equivalentClasses(['WomanAgedUnder20',someValuesFrom('hasAge','AgeUnder20')]). equivalentClasses(['WomanAgedUnder50',intersectionOf(['Woman',someValuesFrom('hasAge','AgeUnder50')])]). equivalentClasses(['WomanExposedToRadiationDuringYouth',someValuesFrom('hasRiskFactor','RadiationExposureDuringYouth')]). equivalentClasses(['WomanHavingFirstPeriodBefore12',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','FirstPeriodBefore12')])]). equivalentClasses(['WomanLackingExercise',intersectionOf([someValuesFrom('hasRiskFactor','LackOfExercise'),'Woman'])]). equivalentClasses(['WomanTakingBirthControlPills',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','BirthControlPills')])]). equivalentClasses(['WomanTakingPostmenopausalHormones',intersectionOf([someValuesFrom('hasRiskFactor','PostmenopausalHormones'),'Woman'])]). equivalentClasses(['WomanUnderAbsoluteBRCRisk',intersectionOf(['Woman',someValuesFrom('hasRisk','AbsoluteBRCRisk')])]). equivalentClasses(['WomanUnderBRCRisk',intersectionOf(['Woman',someValuesFrom('hasRisk','BRCRisk')])]). equivalentClasses(['WomanUnderIncreasedBRCRisk',intersectionOf([someValuesFrom('hasRisk','IncreasedBRCRisk'),'WomanUnderBRCRisk'])]). equivalentClasses(['WomanUnderLifetimeBRCRisk',intersectionOf(['Woman',someValuesFrom('hasRisk','LifetimeBRCRisk')])]). equivalentClasses(['WomanUnderModeratelyIncreasedBRCRisk',intersectionOf(['WomanUnderIncreasedBRCRisk',someValuesFrom('hasRisk','ModeratelyIncreasedBRCRisk')])]). equivalentClasses(['WomanUnderModeratelyReducedBRCRisk',someValuesFrom('hasRisk','ModeratelyReducedBRCRisk')]). equivalentClasses(['WomanUnderReducedBRCRisk',intersectionOf(['WomanUnderBRCRisk',someValuesFrom('hasRisk','ReducedBRCRisk')])]). equivalentClasses(['WomanUnderRelativeBRCRisk',intersectionOf([someValuesFrom('hasRisk','RelativeBRCRisk'),'Woman'])]). equivalentClasses(['WomanUnderShortTermBRCRisk',intersectionOf(['Woman',someValuesFrom('hasRisk','ShortTermBRCRisk')])]). equivalentClasses(['WomanUnderStronglyIncreasedBRCRisk',intersectionOf([someValuesFrom('hasRisk','StronglyIncreasedBRCRisk'),'WomanUnderIncreasedBRCRisk'])]). equivalentClasses(['WomanUnderStronglyReducedBRCRisk',someValuesFrom('hasRisk','StronglyReducedBRCRisk')]). equivalentClasses(['WomanUnderWeakelyIncreasedBRCRisk',intersectionOf(['WomanUnderIncreasedBRCRisk',someValuesFrom('hasRisk','WeakelyIncreasedBRCRisk')])]). equivalentClasses(['WomanUnderWeakelyReducedBRCRisk',someValuesFrom('hasRisk','WeakelyReducedBRCRisk')]). equivalentClasses(['WomanWithAtypicalHyperplasia',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','AtypicalHyperplasia')])]). equivalentClasses(['WomanWithBRCA1Mutation',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','BRCA1Mutation')])]). equivalentClasses(['WomanWithBRCA2Mutation',intersectionOf([someValuesFrom('hasRiskFactor','BRCA2Mutation'),'Woman'])]). equivalentClasses(['WomanWithBRCAMutation',intersectionOf([someValuesFrom('hasRiskFactor','BRCAMutation'),'Woman'])]). equivalentClasses(['WomanWithCarcinomaInSitu',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','CarcinomaInSitu')])]). equivalentClasses(['WomanWithEarlyFirstChild',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','EarlyFirstChild')])]). equivalentClasses(['WomanWithEarlyFirstPeriodAndLateMenopause',intersectionOf(['WomanHavingFirstPeriodBefore12','WomanWithLateMenopause'])]). equivalentClasses(['WomanWithEarlyMenopause',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','EarlyMenopause')])]). equivalentClasses(['WomanWithFamilyBRCHistory',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','FamilyCancerHistory')])]). equivalentClasses(['WomanWithHighBoneDensity',intersectionOf([someValuesFrom('hasRiskFactor','HighBreastDensity'),'Woman'])]). equivalentClasses(['WomanWithHighBreastDensity',intersectionOf([someValuesFrom('hasRiskFactor','HighBreastDensity'),'Woman'])]). equivalentClasses(['WomanWithHighLevelOfEstrogen',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','HighLevelOfEstrogen')])]). equivalentClasses(['WomanWithImmediateRelativesBRCAffected',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','TwoImmediateRelativesAffected')])]). equivalentClasses(['WomanWithLateFirstChild',intersectionOf([someValuesFrom('hasRiskFactor','LateFirstChild'),'Woman'])]). equivalentClasses(['WomanWithLateMenopause',intersectionOf([someValuesFrom('hasRiskFactor','LateMenopause'),'Woman'])]). equivalentClasses(['WomanWithMotherAffectedAfterAge60',someValuesFrom('hasRiskFactor','MotherAffectedAfterAge60')]). equivalentClasses(['WomanWithMotherAffectedBeforeAge60',someValuesFrom('hasRiskFactor','MotherAffectedBeforeAge60')]). equivalentClasses(['WomanWithMotherBRCAffected',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','MotherAffected')])]). equivalentClasses(['WomanWithPersonalBRCHistory',intersectionOf([someValuesFrom('hasRiskFactor','PersonalBRCHistory'),'Woman'])]). equivalentClasses(['WomanWithRiskFactors',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','RiskFactor')])]). equivalentClasses(['WomanWithUsualHyperplasia',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','UsualHyperplasia')])]). equivalentClasses(['WomanWithoutBreastfeeding',intersectionOf([someValuesFrom('hasRiskFactor','NoBreastfeeding'),'Woman'])]). equivalentClasses(['WomanWithoutChildren',intersectionOf(['Woman',someValuesFrom('hasRiskFactor','NoChildren'),someValuesFrom('hasRiskFactor',unionOf(['Age4050','Age50Plus','Age3040']))])]). disjointClasses(['AfricanAmerican','AshkenaziJew']). disjointClasses(['Age2030','Age3040']). disjointClasses(['Age2030','Age4050']). disjointClasses(['Age2030','Age5060']). disjointClasses(['Age2030','Age6070']). disjointClasses(['Age2030','Age70Plus']). disjointClasses(['Age2030','AgeUnder20']). disjointClasses(['Age3040','Age4050']). disjointClasses(['Age3040','Age6070']). disjointClasses(['Age3040','Age70Plus']). disjointClasses(['Age3040','AgeUnder20']). disjointClasses(['Age4050','Age70Plus']). disjointClasses(['Age5060','Age3040']). disjointClasses(['Age5060','Age4050']). disjointClasses(['Age5060','Age6070']). disjointClasses(['Age5060','Age70Plus']). disjointClasses(['Age6070','Age4050']). disjointClasses(['Age6070','Age70Plus']). disjointClasses(['AgeUnder20','Age4050']). disjointClasses(['AgeUnder50','Age50Plus']). disjointClasses(['AtypicalHyperplasia','UsualHyperplasia']). disjointClasses(['BeforeMenopause','AfterMenopause']). disjointClasses(['BeforeMenopause','LateMenopause']). disjointClasses(['EarlyFirstChild','LateFirstChild']). disjointClasses(['LateMenopause','EarlyMenopause']). disjointClasses(['ModerateDecrease','WeakDecrease']). disjointClasses(['MotherAffectedBeforeAge60','MotherAffectedAfterAge60']). disjointClasses(['PostmenopausalWoman','PremenopausalWoman']). disjointClasses(['StrongDecrease','ModerateDecrease']). disjointClasses(['StrongDecrease','WeakDecrease']). disjointClasses(['StrongIncrease','ModerateIncrease']). disjointClasses(['StrongIncrease','WeakIncrease']). disjointClasses(['WeakIncrease','ModerateIncrease']). disjointClasses(['WomanUnderModeratelyIncreasedBRCRisk','WomanUnderStronglyIncreasedBRCRisk']). disjointClasses(['WomanUnderModeratelyReducedBRCRisk','WomanUnderStronglyReducedBRCRisk']). disjointClasses(['WomanUnderModeratelyReducedBRCRisk','WomanUnderWeakelyReducedBRCRisk']). disjointClasses(['WomanUnderReducedBRCRisk','WomanUnderIncreasedBRCRisk']). disjointClasses(['WomanUnderStronglyReducedBRCRisk','WomanUnderWeakelyReducedBRCRisk']). disjointClasses(['WomanUnderWeakelyIncreasedBRCRisk','WomanUnderModeratelyIncreasedBRCRisk']). disjointClasses(['WomanUnderWeakelyIncreasedBRCRisk','WomanUnderStronglyIncreasedBRCRisk']). disjointClasses(['WomanWithLateFirstChild','WomanWithEarlyFirstChild']). disjointClasses(['WomanWithLateFirstChild','WomanWithoutChildren']). disjointClasses(['WomanWithoutChildren','WomanWithEarlyFirstChild']). subClassOf('WomanTakingEstrogen','Woman'). subClassOf('WomanTakingProgestin','Woman'). subClassOf('AbsoluteBRCRisk','BRCRisk'). subClassOf('AbsoluteRiskCategory','RiskCategory'). subClassOf('AfricanAmerican','Ethnicity'). subClassOf('AfricanAmericanWoman','Woman'). subClassOf('AfterMenopause','KnownFactor'). subClassOf('Age','KnownFactor'). subClassOf('Age2030','AgeUnder50'). subClassOf('Age3040','AgeUnder50'). subClassOf('Age4050','AgeUnder50'). subClassOf('Age5060','Age'). subClassOf('Age50Plus','Age'). subClassOf('Age6070','Age'). subClassOf('Age70Plus','Age'). subClassOf('AgeUnder20','AgeUnder50'). subClassOf('AgeUnder50','Age'). subClassOf('Alcohol','KnownFactor'). subClassOf('AshkenaziJew','Ethnicity'). subClassOf('AshkenaziJewishWoman','Woman'). subClassOf('AshkenaziJewishWoman','WomanWithBRCAMutation'). subClassOf('AtypicalHyperplasia','BenignBreastDisease'). subClassOf('BRCA1Mutation','BRCAMutation'). subClassOf('BRCA2Mutation','BRCAMutation'). subClassOf('BRCAMutation','InferredFactor'). subClassOf('BRCRisk',intersectionOf([someValuesFrom('riskType','BRCRType'),'Risk'])). subClassOf('BeforeMenopause','KnownFactor'). subClassOf('BenignBreastDisease','InferredFactor'). subClassOf('BirthControlPills','KnownFactor'). subClassOf('BreastCancer','Cancer'). subClassOf('Cancer','Disease'). subClassOf('CarcinomaInSitu','InferredFactor'). subClassOf('Disease','http://www.w3.org/2002/07/owl#Thing'). subClassOf('EarlyFirstChild','KnownFactor'). subClassOf('EarlyMenopause','KnownFactor'). subClassOf('Estrogen','PostmenopausalHormones'). subClassOf('EstrogenProgestin','PostmenopausalHormones'). subClassOf('EstrogenTestosterone','PostmenopausalHormones'). subClassOf('Ethnicity','http://www.w3.org/2002/07/owl#Thing'). subClassOf('FamilyCancerHistory','KnownFactor'). subClassOf('Female','Gender'). subClassOf('FirstPeriodBefore12','KnownFactor'). subClassOf('Gender','http://www.w3.org/2002/07/owl#Thing'). subClassOf('HighBoneDensity','InferredFactor'). subClassOf('HighBreastDensity','InferredFactor'). subClassOf('HighLevelOfEstrogen','InferredFactor'). subClassOf('IncreasedBRCRisk','RelativeBRCRisk'). subClassOf('IncreasedRiskCategory','RelativeRiskCategory'). subClassOf('InferredFactor','RiskFactor'). subClassOf('KnownFactor','RiskFactor'). subClassOf('LackOfExercise','KnownFactor'). subClassOf('LateFirstChild','KnownFactor'). subClassOf('LateMenopause','KnownFactor'). subClassOf('LifetimeBRCRisk','AbsoluteBRCRisk'). subClassOf('Male','Gender'). subClassOf('ModerateDecrease','ReducedRiskCategory'). subClassOf('ModerateIncrease','IncreasedRiskCategory'). subClassOf('ModeratelyIncreasedBRCRisk','IncreasedBRCRisk'). subClassOf('ModeratelyReducedBRCRisk','ReducedBRCRisk'). subClassOf('MotherAffected','FamilyCancerHistory'). subClassOf('MotherAffectedAfterAge60','MotherAffected'). subClassOf('MotherAffectedBeforeAge60','MotherAffected'). subClassOf('NoBreastfeeding','KnownFactor'). subClassOf('NoChildren','NoBreastfeeding'). subClassOf('Overweight','KnownFactor'). subClassOf('OverweightWoman','Woman'). subClassOf('Person','http://www.w3.org/2002/07/owl#Thing'). subClassOf('Person',someValuesFrom('hasGender','Gender')). subClassOf('PersonUnderRisk','Person'). subClassOf('PersonalBRCHistory','KnownFactor'). subClassOf('PostmenopausalHormones','KnownFactor'). subClassOf('PostmenopausalWoman','Woman'). subClassOf('PostmenopausalWomanTakingEstrogenAndProgestin','PostmenopausalWoman'). subClassOf('PostmenopausalWomanTakingEstrogenAndTestosterone','PostmenopausalWoman'). subClassOf('PostmenopausalWomanWithHighLevelOfEstrogen','Woman'). subClassOf('PremenopausalWoman','Woman'). subClassOf('Progestin','PostmenopausalHormones'). subClassOf('RadiationExposureDuringYouth','KnownFactor'). subClassOf('ReducedBRCRisk','RelativeBRCRisk'). subClassOf('ReducedRiskCategory','RelativeRiskCategory'). subClassOf('RelativeBRCRisk','BRCRisk'). subClassOf('RelativeRiskCategory','RiskCategory'). subClassOf('Risk','http://www.w3.org/2002/07/owl#Thing'). subClassOf('RiskCategory','http://www.w3.org/2002/07/owl#Thing'). subClassOf('RiskFactor','http://www.w3.org/2002/07/owl#Thing'). subClassOf('RiskFactor',allValuesFrom('relatedToDisease','Disease')). subClassOf('RiskType',intersectionOf(['http://www.w3.org/2002/07/owl#Thing',someValuesFrom('riskOf','Disease')])). subClassOf('SeniorWomanWithMotherBRCAffected','Woman'). subClassOf('ShortTermBRCRisk','AbsoluteBRCRisk'). subClassOf('StrongDecrease','ReducedRiskCategory'). subClassOf('StrongIncrease','IncreasedRiskCategory'). subClassOf('StronglyIncreasedBRCRisk','IncreasedBRCRisk'). subClassOf('StronglyReducedBRCRisk','ReducedBRCRisk'). subClassOf('Testosterone','PostmenopausalHormones'). subClassOf('TwoImmediateRelativesAffected','FamilyCancerHistory'). subClassOf('UsualHyperplasia','BenignBreastDisease'). subClassOf('WeakDecrease','ReducedRiskCategory'). subClassOf('WeakIncrease','IncreasedRiskCategory'). subClassOf('WeakelyIncreasedBRCRisk','IncreasedBRCRisk'). subClassOf('WeakelyReducedBRCRisk','ReducedBRCRisk'). subClassOf('Woman','http://www.w3.org/2002/07/owl#Thing'). subClassOf('Woman','WomanUnderLifetimeBRCRisk'). subClassOf('WomanAbusingAlcohol','Woman'). subClassOf('WomanAged2030','Woman'). subClassOf('WomanAged3040','Woman'). subClassOf('WomanAged4050','Woman'). subClassOf('WomanAged5060','Woman'). subClassOf('WomanAged6070','Woman'). subClassOf('WomanAged70Plus','Woman'). subClassOf('WomanAgedUnder20','Woman'). subClassOf('WomanAgedUnder50','WomanWithRiskFactors'). subClassOf('WomanExposedToRadiationDuringYouth','Woman'). subClassOf('WomanHavingFirstPeriodBefore12','Woman'). subClassOf('WomanLackingExercise','Woman'). subClassOf('WomanTakingBirthControlPills','Woman'). subClassOf('WomanTakingPostmenopausalHormones','Woman'). subClassOf('WomanUnderLifetimeBRCRisk','WomanUnderAbsoluteBRCRisk'). subClassOf('WomanUnderModeratelyIncreasedBRCRisk','WomanUnderIncreasedBRCRisk'). subClassOf('WomanUnderModeratelyReducedBRCRisk','WomanUnderReducedBRCRisk'). subClassOf('WomanUnderRelativeBRCRisk','Woman'). subClassOf('WomanUnderShortTermBRCRisk','WomanUnderAbsoluteBRCRisk'). subClassOf('WomanUnderStronglyIncreasedBRCRisk','WomanUnderIncreasedBRCRisk'). subClassOf('WomanUnderStronglyReducedBRCRisk','WomanUnderReducedBRCRisk'). subClassOf('WomanUnderWeakelyIncreasedBRCRisk','WomanUnderIncreasedBRCRisk'). subClassOf('WomanUnderWeakelyReducedBRCRisk','WomanUnderReducedBRCRisk'). subClassOf('WomanWithAtypicalHyperplasia','Woman'). subClassOf('WomanWithBRCA1Mutation','WomanUnderLifetimeBRCRisk'). subClassOf('WomanWithBRCAMutation','WomanWithRiskFactors'). subClassOf('WomanWithBRCAMutation','WomanUnderLifetimeBRCRisk'). subClassOf('WomanWithBRCAMutation','WomanUnderLifetimeBRCRisk'). subClassOf('WomanWithCarcinomaInSitu','Woman'). subClassOf('WomanWithEarlyFirstChild','Woman'). subClassOf('WomanWithEarlyFirstPeriodAndLateMenopause','Woman'). subClassOf('WomanWithEarlyMenopause','PostmenopausalWoman'). subClassOf('WomanWithEarlyMenopause','Woman'). subClassOf('WomanWithFamilyBRCHistory','Woman'). subClassOf('WomanWithHighBoneDensity','Woman'). subClassOf('WomanWithHighBreastDensity','Woman'). subClassOf('WomanWithHighLevelOfEstrogen','Woman'). subClassOf('WomanWithImmediateRelativesBRCAffected','Woman'). subClassOf('WomanWithLateFirstChild','Woman'). subClassOf('WomanWithLateMenopause','PostmenopausalWoman'). subClassOf('WomanWithLateMenopause','Woman'). subClassOf('WomanWithMotherAffectedAfterAge60','WomanWithMotherBRCAffected'). subClassOf('WomanWithMotherAffectedBeforeAge60','WomanWithMotherBRCAffected'). subClassOf('WomanWithMotherBRCAffected','Woman'). subClassOf('WomanWithRiskFactors','Woman'). subClassOf('WomanWithUsualHyperplasia','Woman'). subClassOf('WomanWithoutBreastfeeding','Woman'). subClassOf('WomanWithoutChildren','Woman'). subClassOf('WomanAgedUnder20','WomanUnderShortTermBRCRisk'). subClassOf('WomanAged3040','WomanUnderShortTermBRCRisk'). subClassOf('WomanAged6070','WomanUnderShortTermBRCRisk'). subClassOf('WomanWithMotherAffectedBeforeAge60','WomanUnderModeratelyIncreasedBRCRisk'). subClassOf('WomanWithLateMenopause','WomanUnderModeratelyIncreasedBRCRisk'). subClassOf('PostmenopausalWomanTakingEstrogen','WomanUnderModeratelyIncreasedBRCRisk'). subClassOf('PostmenopausalWomanTakingProgestin','WomanUnderModeratelyIncreasedBRCRisk'). subClassOf('WomanHavingFirstPeriodBefore12','WomanWithHighLevelOfEstrogen'). subPropertyOf('hasAge','hasRiskFactor'). subPropertyOf('willDevelopInLongTerm','willDevelop'). subPropertyOf('willDevelopInShortTerm','willDevelop'). functionalProperty('hasAge'). functionalProperty('hasGender'). functionalProperty('riskCategory'). functionalProperty('riskOf'). functionalProperty('riskType'). functionalProperty('increaseFactor'). propertyDomain('hasAge','Person'). propertyDomain('hasGender','Person'). propertyDomain('hasRace','Person'). propertyDomain('hasRisk','Person'). propertyDomain('hasRiskFactor','Person'). propertyDomain('relatedToDisease','RiskFactor'). propertyDomain('riskCategory','Risk'). propertyDomain('riskOf','RiskType'). propertyDomain('riskType','Risk'). propertyDomain('willDevelop','Person'). propertyDomain('willDevelopInLongTerm','Person'). propertyDomain('willDevelopInShortTerm','Person'). propertyDomain('increaseFactor','RelativeRiskCategory'). propertyRange('hasAge','Age'). propertyRange('hasGender','Gender'). propertyRange('hasRace','Ethnicity'). propertyRange('hasRisk','Risk'). propertyRange('hasRiskFactor','RiskFactor'). propertyRange('relatedToDisease','Disease'). propertyRange('riskCategory','RiskCategory'). propertyRange('riskOf','Disease'). propertyRange('riskType','RiskType'). propertyRange('willDevelop','Disease'). propertyRange('willDevelopInLongTerm','Disease'). propertyRange('willDevelopInShortTerm','Disease'). propertyRange('increaseFactor','http://www.w3.org/2001/XMLSchema#decimal'). classAssertion('Woman','Helen'). classAssertion('WomanTakingEstrogen','Helen'). classAssertion('PostmenopausalWoman','Helen'). classAssertion('WomanAged3040','Helen'). /* objectProperty('hasAge'). objectProperty('hasGender'). objectProperty('hasRace'). objectProperty('hasRisk'). objectProperty('hasRiskFactor'). objectProperty('relatedToDisease'). objectProperty('riskCategory'). objectProperty('riskOf'). objectProperty('riskType'). objectProperty('willDevelop'). objectProperty('willDevelopInLongTerm'). objectProperty('willDevelopInShortTerm'). dataProperty('increaseFactor'). dataProperty('http://www.w3.org/2006/12/owl11#maxExclusive'). dataProperty('http://www.w3.org/2006/12/owl11#minExclusive'). annotationProperty('http://www.w3.org/2000/01/rdf-schema#label'). annotationProperty('http://www.w3.org/2000/01/rdf-schema#comment'). annotationProperty('https://sites.google.com/a/unife.it/ml/bundle#probability'). class('WomanTakingEstrogen'). class('WomanTakingProgestin'). class('AbsoluteBRCRisk'). class('AbsoluteRiskCategory'). class('AfricanAmerican'). class('AfricanAmericanWoman'). class('AfterMenopause'). class('Age'). class('Age2030'). class('Age3040'). class('Age4050'). class('Age5060'). class('Age50Plus'). class('Age6070'). class('Age70Plus'). class('AgeUnder20'). class('AgeUnder50'). class('Alcohol'). class('AshkenaziJew'). class('AshkenaziJewishWoman'). class('AtypicalHyperplasia'). class('BRCA1Mutation'). class('BRCA2Mutation'). class('BRCAMutation'). class('BRCRType'). class('BRCRisk'). class('BeforeMenopause'). class('BenignBreastDisease'). class('BirthControlPills'). class('BreastCancer'). class('Cancer'). class('CarcinomaInSitu'). class('Disease'). class('EarlyFirstChild'). class('EarlyMenopause'). class('Estrogen'). class('EstrogenProgestin'). class('EstrogenTestosterone'). class('Ethnicity'). class('FamilyCancerHistory'). class('Female'). class('FirstPeriodBefore12'). class('Gender'). class('HighBoneDensity'). class('HighBreastDensity'). class('HighLevelOfEstrogen'). class('IncreasedBRCRisk'). class('IncreasedRiskCategory'). class('InferredFactor'). class('KnownFactor'). class('LackOfExercise'). class('LateFirstChild'). class('LateMenopause'). class('LifetimeBRCRisk'). class('Male'). class('ModerateDecrease'). class('ModerateIncrease'). class('ModeratelyIncreasedBRCRisk'). class('ModeratelyReducedBRCRisk'). class('MotherAffected'). class('MotherAffectedAfterAge60'). class('MotherAffectedBeforeAge60'). class('NoBreastfeeding'). class('NoChildren'). class('Overweight'). class('OverweightWoman'). class('Person'). class('PersonUnderRisk'). class('PersonalBRCHistory'). class('PostmenopausalHormones'). class('PostmenopausalWoman'). class('PostmenopausalWomanTakingEstrogen'). class('PostmenopausalWomanTakingEstrogenAndProgestin'). class('PostmenopausalWomanTakingEstrogenAndTestosterone'). class('PostmenopausalWomanTakingProgestin'). class('PostmenopausalWomanTakingTestosterone'). class('PostmenopausalWomanWithHighLevelOfEstrogen'). class('PremenopausalWoman'). class('Progestin'). class('RadiationExposureDuringYouth'). class('ReducedBRCRisk'). class('ReducedRiskCategory'). class('RelativeBRCRisk'). class('RelativeRiskCategory'). class('Risk'). class('RiskCategory'). class('RiskFactor'). class('RiskType'). class('SeniorWomanWithMotherBRCAffected'). class('ShortTermBRCRisk'). class('StrongDecrease'). class('StrongIncrease'). class('StronglyIncreasedBRCRisk'). class('StronglyReducedBRCRisk'). class('Testosterone'). class('TwoImmediateRelativesAffected'). class('UsualHyperplasia'). class('WeakDecrease'). class('WeakIncrease'). class('WeakelyIncreasedBRCRisk'). class('WeakelyReducedBRCRisk'). class('Woman'). class('WomanAbusingAlcohol'). class('WomanAged2030'). class('WomanAged3040'). class('WomanAged4050'). class('WomanAged5060'). class('WomanAged50Plus'). class('WomanAged6070'). class('WomanAged70Plus'). class('WomanAgedUnder20'). class('WomanAgedUnder50'). class('WomanExposedToRadiationDuringYouth'). class('WomanHavingFirstPeriodBefore12'). class('WomanLackingExercise'). class('WomanTakingBirthControlPills'). class('WomanTakingPostmenopausalHormones'). class('WomanUnderAbsoluteBRCRisk'). class('WomanUnderBRCRisk'). class('WomanUnderIncreasedBRCRisk'). class('WomanUnderLifetimeBRCRisk'). class('WomanUnderModeratelyIncreasedBRCRisk'). class('WomanUnderModeratelyReducedBRCRisk'). class('WomanUnderReducedBRCRisk'). class('WomanUnderRelativeBRCRisk'). class('WomanUnderShortTermBRCRisk'). class('WomanUnderStronglyIncreasedBRCRisk'). class('WomanUnderStronglyReducedBRCRisk'). class('WomanUnderWeakelyIncreasedBRCRisk'). class('WomanUnderWeakelyReducedBRCRisk'). class('WomanWithAtypicalHyperplasia'). class('WomanWithBRCA1Mutation'). class('WomanWithBRCA2Mutation'). class('WomanWithBRCAMutation'). class('WomanWithCarcinomaInSitu'). class('WomanWithEarlyFirstChild'). class('WomanWithEarlyFirstPeriodAndLateMenopause'). class('WomanWithEarlyMenopause'). class('WomanWithFamilyBRCHistory'). class('WomanWithHighBoneDensity'). class('WomanWithHighBreastDensity'). class('WomanWithHighLevelOfEstrogen'). class('WomanWithImmediateRelativesBRCAffected'). class('WomanWithLateFirstChild'). class('WomanWithLateMenopause'). class('WomanWithMotherAffectedAfterAge60'). class('WomanWithMotherAffectedBeforeAge60'). class('WomanWithMotherBRCAffected'). class('WomanWithPersonalBRCHistory'). class('WomanWithRiskFactors'). class('WomanWithUsualHyperplasia'). class('WomanWithoutBreastfeeding'). class('WomanWithoutChildren'). class('http://www.w3.org/2002/07/owl#Thing'). */ p(subClassOf('AshkenaziJewishWoman','WomanWithBRCAMutation'),0.025). p(subClassOf('PostmenopausalWomanTakingEstrogen','WomanUnderWeakelyIncreasedBRCRisk'),0.67). p(subClassOf('PostmenopausalWomanTakingTestosterone','subClassOf WomanUnderWeakelyIncreasedBRCRisk'),0.85). p(subClassOf('PostmenopausalWomanTakingEstrogenAndProgestin','WomanUnderWeakelyIncreasedBRCRisk'),0.35). p(subClassOf('WomanWithMotherAffectedAfterAge60','WomanUnderWeakelyIncreasedBRCRisk'),1.0). p(subClassOf('WomanWithBRCAMutation','WomanUnderLifetimeBRCRisk'),0.85). p(subClassOf('PostmenopausalWomanTakingProgestin','WomanUnderWeakelyIncreasedBRCRisk'),0.13). p(subClassOf('WomanWithBRCA1Mutation','WomanUnderLifetimeBRCRisk'),0.8). p(subClassOf('PostmenopausalWomanTakingEstrogenAndTestosterone','WomanUnderWeakelyIncreasedBRCRisk'),0.21). p(subClassOf('Woman','WomanUnderLifetimeBRCRisk'),0.123).
<?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <!-- FileName: MATH17 --> <!-- Document: http://www.w3.org/TR/xpath --> <!-- DocVersion: 19990922 --> <!-- Section: 4.4 --> <!-- Purpose: Test of number() conversion function on a tree fragment. --> <xsl:variable name="ResultTreeFragTest"> <xsl:value-of select="n4"/> </xsl:variable> <xsl:template match="doc"> <out> <xsl:value-of select="number($ResultTreeFragTest)"/> </out> </xsl:template> <!-- * 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. --> </xsl:stylesheet>
<?php require '../cnx/adminconexao.php'; $user = filter_input(INPUT_POST, 'input1', FILTER_SANITIZE_STRING); $pass = filter_input(INPUT_POST, 'input2', FILTER_SANITIZE_STRING); checar_login($user,$pass,$servername,$username,$password,$dbadmin); ?>
----------------------------------------------------------------------- -- awa-components-wikis -- Wiki rendering component -- Copyright (C) 2011, 2015, 2016, 2021 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Strings.Wide_Wide_Unbounded; with Util.Beans.Basic; with Util.Beans.Objects; with ASF.Contexts.Faces; with ASF.Components; with ASF.Components.Html; with Wiki.Strings; with Wiki.Render; with Wiki.Plugins; with Wiki.Render.Links; package AWA.Components.Wikis is use ASF.Contexts.Faces; -- The wiki format of the wiki text. The valid values are: -- dotclear, markdown, creole, mediawiki, html FORMAT_NAME : constant String := "format"; VALUE_NAME : constant String := ASF.Components.VALUE_NAME; -- The link renderer bean that controls the generation of page and image links. LINKS_NAME : constant String := "links"; -- The plugin factory bean that must be used for Wiki plugins. PLUGINS_NAME : constant String := "plugins"; -- Whether the TOC is rendered in the document. TOC_NAME : constant String := "toc"; -- The output format when rendering the content ("text" or "html", default is "html"). OUTPUT_NAME : constant String := "output"; -- ------------------------------ -- Wiki component -- ------------------------------ -- -- <awa:wiki value="wiki-text" format="dotclear|google|creole|phpbb" styleClass="class"/> -- type UIWiki is new ASF.Components.Html.UIHtmlComponent with null record; type UIWiki_Access is access all UIWiki'Class; -- Get the wiki format style. The format style is obtained from the <b>format</b> -- attribute name. function Get_Wiki_Style (UI : in UIWiki; Context : in Faces_Context'Class) return Wiki.Wiki_Syntax; -- Get the links renderer that must be used to render image and page links. function Get_Links_Renderer (UI : in UIWiki; Context : in Faces_Context'Class) return Wiki.Render.Links.Link_Renderer_Access; -- Get the plugin factory that must be used by the Wiki parser. function Get_Plugin_Factory (UI : in UIWiki; Context : in Faces_Context'Class) return Wiki.Plugins.Plugin_Factory_Access; -- Returns true if we must render a text content instead of html. function Is_Text (UI : in UIWiki; Context : in Faces_Context'Class) return Boolean; -- Render the wiki text overriding procedure Encode_Begin (UI : in UIWiki; Context : in out Faces_Context'Class); use Ada.Strings.Wide_Wide_Unbounded; IMAGE_PREFIX_ATTR : constant String := "image_prefix"; PAGE_PREFIX_ATTR : constant String := "page_prefix"; type Link_Renderer_Bean is new Util.Beans.Basic.Bean and Wiki.Render.Links.Link_Renderer with record Page_Prefix : Unbounded_Wide_Wide_String; Image_Prefix : Unbounded_Wide_Wide_String; end record; -- Make a link adding a prefix unless the link is already absolute. procedure Make_Link (Renderer : in Link_Renderer_Bean; Link : in Wiki.Strings.WString; Prefix : in Unbounded_Wide_Wide_String; URI : out Unbounded_Wide_Wide_String); -- Get the value identified by the name. overriding function Get_Value (From : in Link_Renderer_Bean; Name : in String) return Util.Beans.Objects.Object; -- Set the value identified by the name. overriding procedure Set_Value (From : in out Link_Renderer_Bean; Name : in String; Value : in Util.Beans.Objects.Object); -- Get the image link that must be rendered from the wiki image link. overriding procedure Make_Image_Link (Renderer : in out Link_Renderer_Bean; Link : in Wiki.Strings.WString; URI : out Unbounded_Wide_Wide_String; Width : in out Natural; Height : in out Natural); -- Get the page link that must be rendered from the wiki page link. overriding procedure Make_Page_Link (Renderer : in out Link_Renderer_Bean; Link : in Wiki.Strings.WString; URI : out Unbounded_Wide_Wide_String; Exists : out Boolean); private function Starts_With (Content : in Unbounded_Wide_Wide_String; Item : in String) return Boolean; end AWA.Components.Wikis;
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <div id="userModal" class="hide"><p style="padding: 5px;"> <table id="userTab" class="list-table full-table"> <tr> <th width="40px"></th> <th width="350px">用户名</th> <th width="150px">职位</th> </tr> </table> </p></div> <script> var $_u_src; ppmDialog("#userModal", "选择用户", { "确认": function() { selectUser(); }, "清空": function() { selectUser(true); }, "取消": function() { $(this).dialog("close"); } }); $("#userModal").next().append("<span class='chx-container' style='float: left;'><input id='u_showStructure' type='checkbox' />组织架构</span>"); function loadUserData($inp, $tr) { $_u_src = $inp; var id = $inp.attr("val"), id = id ? id : ""; if(!$("#u_showStructure").is(":checked")) { _remoteCall("user/getDepartUsers.do", {}, function(data) { var html = "", $tab = $("#userTab"); // remove origin rows $("tr:gt(0)", $tab).remove(); for(var i in data) { html += "<tr id='" + data[i].id + "' onclick='clickUser($(this));' ondblclick='selectUser();'>"; html += "<td class='sn'><input name='_user' type='radio' " + (id == data[i].id ? "checked" : "") + " /></td>"; html += "<td><div>" + data[i].username + "</div></td>"; html += "<td><div>" + data[i].positionName + "</div></td>"; html += "</tr>"; } $tab.append(html); // init check box $("#userTab input").not("#u_showStructure").iCheck({radioClass: "iradio_square-blue"}); }, true); } else { _remoteCall("user/getStructure.do", {parentId: $tr ? $tr.attr("id") : ""}, function(data) { var html = "", $tab = $("#userTab"); for(var i in data) { html += "<tr id='" + data[i].id + "' parentId='" + data[i].parentId + "' " + (data[i].isDepart != "Y" ? ("onclick='clickUser($(this));' ondblclick='selectUser();'") : "") + ">"; html += "<td class='sn'>"; if(data[i].isDepart != "Y") { html += "<input name='_user' type='radio' " + (id == data[i].id ? "checked" : "") + " />"; } html += "</td>"; html += "<td><div style='padding-left: " + data[i].pad + "px;" + (data[i].isDepart == "Y" ? "font-weight: bold;" : "") + "'><i onclick='u_toggleDepart($(this));' class='icon-plus tree-icon " + (data[i].hasChild == "Y" ? "" : "invisiable") + "'></i>" + (data[i].isDepart == "Y" ? data[i].departName : data[i].username) + "</div></td>"; html += "<td><div>" + (data[i].positionName ? data[i].positionName : "") + "</div></td>"; html += "</tr>"; } var $trs = $(html); if($tr) { $tr.after($trs); } else { $("tr:gt(0)", $tab).remove(); $tab.append($trs); } // init check box $("#userTab input").not("#u_showStructure").iCheck({radioClass: "iradio_square-blue"}); }, true); } } function u_toggleDepart($i) { var $tr = $i.closest("tr"); if(!$tr.attr("hasLoad")) { loadUserData($_u_src, $tr); $tr.attr("hasLoad", "Y"); } else { $("#userTab tr[parentId='" + $tr.attr("id") + "']").toggle(); } if($i.hasClass("icon-plus")) { $i.removeClass("icon-plus").addClass("icon-minus"); } else { $i.removeClass("icon-minus").addClass("icon-plus"); } } function clickUser($tr) { $("input", $tr).iCheck("check"); } function selectUser(isClear) { if(isClear) { $_u_src.attr("val", "").val(""); } else { var $sel = $("#userModal input:radio:checked").closest("tr"); $_u_src.attr("val", $sel.attr("id")).val($("td:eq(1)", $sel).text()); } // if has filter, call search to refresh table if(typeof(search) == "function") search(); $("#userModal").dialog("close"); } // init show struture users $("#u_showStructure").iCheck({checkboxClass: "icheckbox_square-blue"}).on("ifChecked", function() { loadUserData($_u_src); }).on("ifUnchecked", function() { loadUserData($_u_src); }); </script>
CREATE TABLE ad_async_request ( id String, created_time Nullable(DateTime), scope_object_id Nullable(String), status Nullable(String), type Nullable(String), updated_time DateTime ) ENGINE = Log
@article{Kim2013-jy, abstract = {We describe a new method for simulating ionizing radiation and supernova feedback in the analogs of low-redshift galactic disks. In this method, which we call star-forming molecular cloud (SFMC) particles, we use a ray-tracing technique to solve the radiative transfer equation for ultraviolet photons emitted by thousands of distinct particles on the fly. Joined with high numerical resolution of 3.8 pc, the realistic description of stellar feedback helps to self-regulate star formation. This new feedback scheme also enables us to study the escape of ionizing photons from star-forming clumps and from a galaxy, and to examine the evolving environment of star-forming gas clumps. By simulating a galactic disk in a halo of 2.3 $\times$ 1011 M ☉, we find that the average escape fraction from all radiating sources on the spiral arms (excluding the central 2.5 kpc) fluctuates between 0.08% and 5.9% during a ∼20 Myr period with a mean value of 1.1%. The flux of escaped photons from these sources is not strongly beamed, but manifests a large opening angle of more than 60° from the galactic pole. Further, we investigate the escape fraction per SFMC particle, f esc(i), and how it evolves as the particle ages. We discover that the average escape fraction f esc is dominated by a small number of SFMC particles with high f esc(i). On average, the escape fraction from an SFMC particle rises from 0.27% at its birth to 2.1% at the end of a particle lifetime, 6 Myr. This is because SFMC particles drift away from the dense gas clumps in which they were born, and because the gas around the star-forming clumps is dispersed by ionizing radiation and supernova feedback. The framework established in this study brings deeper insight into the physics of photon escape fraction from an individual star-forming clump and from a galactic disk.}, author = {Kim, Ji-Hoon and Krumholz, Mark R and Wise, John H and Turk, Matthew J and Goldbaum, Nathan J and Abel, Tom}, journal = {ApJ}, keywords = {Authorship}, language = {en}, month = {September}, number = {2}, pages = {109}, publisher = {IOP Publishing}, title = {DWARF GALAXIES WITH IONIZING RADIATION FEEDBACK. I. ESCAPE OF IONIZING PHOTONS}, url = {https://iopscience.iop.org/article/10.1088/0004-637X/775/2/109/meta}, volume = {775}, year = {2013} }
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE xsl:stylesheet [ <!ENTITY nbsp "&#160;"> ]> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format"> <xsl:import href="PopulateTemplate.xsl"/> <xsl:include href="AddHeader.xsl"/> <xsl:include href="CommonPathRef.xsl"/> <xsl:include href="AddOnTable.xsl"/> <xsl:include href="IRS4626Style.xsl"/> <xsl:output method="html" indent="yes"/> <xsl:strip-space elements="*"/> <xsl:param name="FormData" select="$RtnDoc/IRS4626"/> <xsl:template match="/"> <html> <head> <title> <xsl:call-template name="FormTitle"> <xsl:with-param name="RootElement" select="local-name($FormData)"/> </xsl:call-template> </title> <!-- No Browser Caching --> <meta http-equiv="Pragma" content="no-cache"/> <meta http-equiv="Cache-Control" content="no-cache"/> <meta http-equiv="Expires" content="0"/> <!-- No Proxy Caching --> <meta http-equiv="Cache-Control" content="private"/> <!-- Define Character Set --> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/> <meta name="Description" content="IRS Form 4626"/> <!-- javascript include --> <script language="JavaScript" src="{$ScriptPath}/FormDisplay.js" type="text/javascript"/> <xsl:call-template name="InitJS"/> <style type="text/css"> <xsl:if test="not($Print) or $Print=''"> <xsl:call-template name="IRS4626Style"/> <xsl:call-template name="AddOnStyle"/> </xsl:if> </style> <xsl:call-template name="GlobalStylesForm"/> </head> <body class="styBodyClass"> <!-- Standard Warning Line --> <xsl:call-template name="DocumentHeader"/> <!-- BEGIN FORM HEADER --> <div class="styBB" style="width:187mm;"> <!-- Form Name --> <div class="styFNBox" style="font-size:7pt;width:28mm;height:16mm;"> Form <span class="styFormNumber">4626</span> <br/> <span class="styAgency">Department of the Treasury <!--General Dependency Push Pin --> <xsl:call-template name="SetFormLinkInline"> <xsl:with-param name="TargetNode" select="$FormData"/> </xsl:call-template> </span> <br/> <span class="styAgency">Internal Revenue Service</span> </div> <!-- Form Title Box --> <div class="styFTBox" style="padding-top:2mm;width:126mm;height:16mm;"> <!-- Form Title --> <span class="styMainTitle">Alternative Minimum Tax—Corporations</span> <!-- Form Subtitle --> <br/> <div style="font-weight:bold; padding-top: 2mm"> <img src="{$ImagePath}\4626_Bullet.gif" alt="Right arrow" border="0"/> See separate instructions. <br/> <img src="{$ImagePath}\4626_Bullet.gif" alt="Right arrow" border="0"/> Attach to the corporation's tax return. </div> </div> <!-- Tax Year Box --> <div class="styTYBox" style="height:16mm;width:32mm;"> <!-- OMB No. --> <div class="styOMB" style="font-size:7pt;width:32mm;">OMB No. 1545-0175</div> <!-- Tax Year --> <div class="styTY" style="text-align:center;"> <span>20<span class="styTYColor">12</span> </span> </div> </div> </div> <!-- Name and Address --> <div class="STyBB" style="width:187mm;"> <div class="styNameBox" style="height:8mm;width:140mm;font-size:7pt;"> Name<br/> <xsl:call-template name="PopulateReturnHeaderFiler"> <xsl:with-param name="TargetNode">BusinessNameLine1</xsl:with-param> </xsl:call-template> <br/> <xsl:call-template name="PopulateReturnHeaderFiler"> <xsl:with-param name="TargetNode">BusinessNameLine2</xsl:with-param> </xsl:call-template> </div> <div class="styEINBox" style="height:8mm;padding-left:2mm;text-align:left;font-size:7pt;width:46mm;"> <span style="font-weight:bold;">Employer identification number<br/> <br/> </span> <span style="text-align:left;font-weight:normal;"> <xsl:call-template name="PopulateReturnHeaderFiler"> <xsl:with-param name="TargetNode">EIN</xsl:with-param> </xsl:call-template> </span> </div> </div> <!-- Form body --> <!-- Part I - Header --> <div class="styBB" style="width:187mm;"> <span class="styPartName" style="width:16mm;">Part I</span> <span class="styPartDesc" style="width:150mm;"> Alternative Minimum Tax Computation </span> </div> <!-- notes line --> <div class="IRS4626_LineContainer"> <div class="styLNLeftNumBoxSD"/> <div class="styLNDesc" style="width:139mm;"> <span style="font-weight:bold;width:9mm;">Note:</span> <span style="font-style:italic;">See the instructions to find out if the corporation is a small corporation exempt from the </span> </div> <div class="styLNRightNumBoxNBB" style="background-color:lightgrey;"/> <div class="styLNAmountBoxNBB"/> </div> <div class="IRS4626_LineContainer"> <div class="styLNLeftNumBoxSD"/> <div class="styLNDesc" style="width:139mm;"> <!--span style="width:9mm;"></span--> <span style="font-style:italic;">alternative minimum tax (AMT) under section 55(e).</span> </div> <div class="styLNRightNumBoxNBB" style="background-color:lightgrey;"/> <div class="styLNAmountBoxNBB"/> </div> <!-- actual line --> <div class="IRS4626_LineContainer"> <div class="styLNLeftNumBoxSD">1</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;">Taxable income or (loss) before net operating loss deduction</span> <span class="styDotLn" style="float:right;padding-right:2mm;">..............</span> </div> <div class="styLNRightNumBox">1</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/TaxableIncomeLossBeforeNOLDed"/> </xsl:call-template> </div> </div> <!-- line 2 --> <!-- actual line --> <div class="IRS4626_LineContainer"> <div class="styLNLeftNumBoxSD">2</div> <div class="styLNDesc" style="font-weight:bold;width:139mm;">Adjustments and preferences:</div> <div class="styLNRightNumBoxNBB"/> <div class="styLNAmountBoxNBB"/> </div> <!-- line 2 sub a --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">a</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Depreciation of post-1986 property </span> <span class="styDotLn" style="float:right;padding-right:2mm;">.......................</span> </div> <div class="styLNRightNumBox">2a</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/DepreciationOfPost1986Property"/> </xsl:call-template> </div> </div> <!-- line 2 sub b --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">b</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Amortization of certified pollution control facilities </span> <span class="styDotLn" style="float:right;padding-right:2mm;">..................</span> </div> <div class="styLNRightNumBox">2b</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/AmortzCertPollutionCtrlFacilit"/> </xsl:call-template> </div> </div> <!-- line 2 sub c --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">c</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Amortization of mining exploration and development costs </span> <span class="styDotLn" style="float:right;padding-right:2mm;">...............</span> </div> <div class="styLNRightNumBox">2c</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/AmortzMiningExplortnDevCosts"/> </xsl:call-template> </div> </div> <!-- line 2 sub d --> <!-- double lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">d</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Amortization of circulation expenditures (personal holding companies only) </span> <span class="styDotLn" style="float:right;padding-right:2mm;">..........</span> </div> <div class="styLNRightNumBox">2d</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/AmortzCirculationExpenditures"/> </xsl:call-template> </div> </div> <!-- line 2 sub e --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">e</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Adjusted gain or loss </span> <span class="styDotLn" style="float:right;padding-right:2mm;">...........................</span> </div> <div class="styLNRightNumBox">2e</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/AdjustedGainOrLoss"/> </xsl:call-template> </div> </div> <!-- line 2 sub f --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">f</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Long-term contracts </span> <span class="styDotLn" style="float:right;padding-right:2mm;">...........................</span> </div> <div class="styLNRightNumBox">2f</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/LongTermContracts"/> </xsl:call-template> </div> </div> <!-- line 2 sub g --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">g</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Merchant marine capital construction funds </span> <span class="styDotLn" style="float:right;padding-right:2mm;">....................</span> </div> <div class="styLNRightNumBox">2g</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/MerchantMarineCapConstFunds"/> </xsl:call-template> </div> </div> <!-- line 2 sub h --> <!-- double lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">h</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Section 833(b) deduction (Blue Cross, Blue Shield, and similar type organizations only) </span> <span class="styDotLn" style="float:right;padding-right:2mm;">.....</span> </div> <div class="styLNRightNumBox">2h</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/Section833bDeduction"/> </xsl:call-template> </div> </div> <!-- line 2 sub i --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">i</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Tax shelter farm activities (personal service corporations only) </span> <span class="styDotLn" style="float:right;padding-right:2mm;">.............</span> </div> <div class="styLNRightNumBox">2i</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/TaxShelterFarmActivities"/> </xsl:call-template> </div> </div> <!-- line 2 sub j --> <!-- double lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">j</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Passive activities (closely held corporations and personal service corporations only) </span> <span class="styDotLn" style="float:right;padding-right:2mm;">......</span> </div> <div class="styLNRightNumBox">2j</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/PassiveActivities"/> </xsl:call-template> </div> </div> <!-- line 2 sub k --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">k</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Loss limitations </span> <span class="styDotLn" style="float:right;padding-right:2mm;">............................</span> </div> <div class="styLNRightNumBox">2k</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/LossLimitations"/> </xsl:call-template> </div> </div> <!-- line 2 sub l --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">l</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Depletion </span> <span class="styDotLn" style="float:right;padding-right:2mm;">..............................</span> </div> <div class="styLNRightNumBox">2l</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/Depletion"/> </xsl:call-template> </div> </div> <!-- line 2 sub m --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">m</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Tax-exempt interest income from specified private activity bonds </span> <span class="styDotLn" style="float:right;padding-right:2mm;">.............</span> </div> <div class="styLNRightNumBox">2m</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/TxExemptIntIncmFrSpcfdActyBond"/> </xsl:call-template> </div> </div> <!-- line 2 sub n --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">n</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Intangible drilling costs </span> <span class="styDotLn" style="float:right;padding-right:2mm;">..........................</span> </div> <div class="styLNRightNumBox">2n</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/IntangibleDrillingCosts"/> </xsl:call-template> </div> </div> <!-- line 2 sub o --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">o</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Other adjustments and preferences </span> <span class="styDotLn" style="float:right;padding-right:2mm;">......................</span> </div> <div class="styLNRightNumBox">2o</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/OtherAdjustmentsAndPreferences"/> </xsl:call-template> </div> </div> <!-- line 3 --> <!-- actual line --> <div class="IRS4626_LineContainer"> <div class="styLNLeftNumBoxSD">3</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Pre-adjustment alternative minimum taxable income (AMTI). Combine lines 1 through 2o </span> <span class="styDotLn" style="float:right;padding-right:2mm;">.....</span> </div> <div class="styLNRightNumBox">3</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/PreadjustmentAMTI"/> </xsl:call-template> </div> </div> <!-- line 4 --> <!-- actual line --> <div class="IRS4626_LineContainer"> <div class="styLNLeftNumBoxSD">4</div> <div class="styLNDesc" style="width:139mm;font-weight:bold"> <span style="float:left;"/> Adjusted current earnings (ACE) adjustment:</div> <div class="styLNRightNumBoxNBB" style="background-color:lightgrey;height:4.5mm;"/> <div class="styLNAmountBoxNBB" style="height:4.5mm;"/> </div> <!-- line 4 sub a --> <!-- double lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">a</div> <div class="styLNDesc" style="width:99mm;"> <span style="float:left;"> ACE from line 10 of the ACE worksheet in the instructions </span> <span class="styDotLn" style="float:right;padding-right:2mm;">.....</span> </div> <div class="styLNRightNumBox">4a</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/AdjustedCurrentEarnings"/> </xsl:call-template> </div> <div class="styLNRightNumBoxNBB" style="background-color:lightgrey;height:4.5mm;"/> <div class="styLNAmountBoxNBB" style="height:4.5mm;"/> </div> <!-- line 4 sub b --> <!-- triple lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">b</div> <div class="styLNDesc" style="width:99mm;">Subtract line 3 from line 4a. If line 3 exceeds line 4a, enter the difference </div> <div class="styLNRightNumBoxNBB"/> <div class="styLNAmountBoxNBB"/> <div class="styLNRightNumBoxNBB" style="background-color:lightgrey;"/> <div class="styLNAmountBoxNBB"/> </div> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox"/> <div class="styLNDesc" style="width:99mm;"> <span style="float:left;"> as a negative amount (see instructions) </span> <span class="styDotLn" style="float:right;padding-right:2mm;">...........</span> </div> <div class="styLNRightNumBox">4b</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/ACEMinusPreadjustmentAMTI"/> </xsl:call-template> </div> <div class="styLNRightNumBoxNBB" style="background-color:lightgrey;height:4.5mm;"/> <div class="styLNAmountBoxNBB" style="height:4.5mm;"/> </div> <!-- line 4 sub c --> <!-- double lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">c</div> <div class="styLNDesc" style="width:99mm;"> <span style="float:left;"> Multiply line 4b by 75% (.75). Enter the result as a positive amount </span> <span class="styDotLn" style="float:right;padding-right:2mm;">..</span> </div> <div class="styLNRightNumBox">4c</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/ACEMinusPreadjustmentAMTIRdcd"/> </xsl:call-template> </div> <div class="styLNRightNumBoxNBB" style="background-color:lightgrey;height:4.5mm;"/> <div class="styLNAmountBoxNBB" style="height:4.5mm;"/> </div> <!-- line 4 sub d --> <!-- five lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">d</div> <div class="styLNDesc" style="width:99mm;">Enter the excess, if any, of the corporation's total increases in AMTI from </div> <div class="styLNRightNumBoxNBB"/> <div class="styLNAmountBoxNBB"/> <div class="styLNRightNumBoxNBB" style="background-color:lightgrey;"/> <div class="styLNAmountBoxNBB"/> </div> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox"/> <div class="styLNDesc" style="width:99mm;">prior year ACE adjustments over its total reductions in AMTI from prior </div> <div class="styLNRightNumBoxNBB"/> <div class="styLNAmountBoxNBB"/> <div class="styLNRightNumBoxNBB" style="background-color:lightgrey;"/> <div class="styLNAmountBoxNBB"/> </div> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox"/> <div class="styLNDesc" style="width:99mm;">year ACE adjustments (see instructions). <span style="font-weight:bold"> Note:</span> <span style="font-style:italic"> You</span> <span style="font-weight:bold;font-style:italic"> must</span> <span style="font-style:italic"> enter an amount </span> </div> <div class="styLNRightNumBoxNBB"/> <div class="styLNAmountBoxNBB"/> <div class="styLNRightNumBoxNBB" style="background-color:lightgrey;"/> <div class="styLNAmountBoxNBB"/> </div> <div class="IRS4626_LineContainer" style="height:6mm;"> <div class="styLNLeftLtrBox"/> <div class="styLNDesc" style="width:99mm;"> <span style="font-style:italic; float:left;"> on line 4d (even if line 4b is positive)</span> <span class="styDotLn" style="float:right;padding-right:2mm;">............</span> </div> <div class="styLNRightNumBox">4d</div> <div class="styLNAmountBox" style="border-right-width:0px;"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/ExcessAMTI"/> </xsl:call-template> </div> <div class="styLNRightNumBoxNBB" style="height:6mm;border-left-width:1px;background-color:lightgrey;"/> <div class="styLNAmountBoxNBB" style="height:6mm;"/> </div> <!-- line 4 sub e --> <!-- five lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">e</div> <div class="styLNDesc" style="width:139mm;">ACE adjustment.</div> <div class="styLNRightNumBoxNBB" style="background-color:lightgrey;height:4.5mm;"/> <div class="styLNAmountBoxNBB" style="height:4.5mm;"/> </div> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox"/> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> <span style="float:left;width:118mm;"> <img src="{$ImagePath}\4626_Bullet_Round.gif" alt="Arrow to right" border="0"/> If line 4b is zero or more, enter the amount from line 4c <br/> <img src="{$ImagePath}\4626_Bullet_Round.gif" alt="Arrow to right" border="0"/> If line 4b is less than zero, enter the <b>smaller </b>of line 4c or line 4d as a negative amount </span> <span style="width:4mm;height:4mm;"> <img src="{$ImagePath}\4626_SMBracket.gif" alt="Bracket"/> </span> </span> <span class="styDotLn" style="float:right;padding-right:2mm;padding-top:3mm;">...</span> </div> <div class="styLNRightNumBox" style="height:10mm;padding-top:5.5mm;"> 4e </div> <div class="styLNAmountBox" style="height:10mm;padding-top:5.5mm;"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/ACEAdjustment"/> </xsl:call-template> </div> </div> <!-- line 5 --> <!-- single lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftNumBoxSD">5</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Combine lines 3 and 4e. If zero or less, stop here; the corporation does not owe any AMT </span> <span class="styDotLn" style="float:right;padding-right:2mm;">.....</span> </div> <div class="styLNRightNumBox">5</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/PreadjustmentAMTIPlusACEAdj"/> </xsl:call-template> </div> </div> <!-- line 6 --> <!-- double lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftNumBoxSD">6</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;">Alternative tax net operating loss deduction (see instructions)</span> <span class="styDotLn" style="float:right;padding-right:2mm;">..............</span> </div> <div class="styLNRightNumBox">6</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/AltTaxNetOperatingLossDed"/> </xsl:call-template> </div> </div> <!-- line 7 --> <!-- triple lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftNumBoxSD">7</div> <div class="styLNDesc" style="width:139mm;"> <span style="font-weight:bold"> Alternative minimum taxable income. </span> Subtract line 6 from line 5. If the corporation held a residual </div> <div class="styLNRightNumBoxNBB"/> <div class="styLNAmountBoxNBB"/> </div> <div class="IRS4626_LineContainer"> <div class="styLNLeftNumBoxSD"/> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> interest in a REMIC, see instructions <xsl:call-template name="LinkToLeftoverDataTableInline"> <xsl:with-param name="TargetNode" select="$FormData/ResidualInterest/@note"/> <xsl:with-param name="Desc"> Line 7 - Note on Residual Interests</xsl:with-param> </xsl:call-template> </span> <span class="styDotLn" style="float:right;padding-right:2mm;">.....................</span> </div> <div class="styLNRightNumBox">7</div> <div class="styLNAmountBox"> <xsl:if test="$FormData/ResidualInterest"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/ResidualInterest"/> </xsl:call-template> </xsl:if> <xsl:if test="$FormData/AlternativeMinTaxableIncome"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/AlternativeMinTaxableIncome"/> </xsl:call-template> </xsl:if> </div> </div> <!-- line 8 --> <!-- triple lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftNumBoxSD">8</div> <div class="styLNDesc" style="width:139mm;"> <span style="font-weight:bold">Exemption phase-out </span> (if line 7 is $310,000 or more, skip lines 8a and 8b and enter -0- on line 8c): </div> <div class="styLNRightNumBoxNBB" style="background-color:lightgrey;"/> <div class="styLNAmountBoxNBB"/> </div> <!-- line 8 sub a --> <!-- triple lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">a</div> <div class="styLNDesc" style="width:99mm;">Subtract $150,000 from line 7 (if completing this line for a member of a </div> <div class="styLNRightNumBoxNBB"/> <div class="styLNAmountBoxNBB"/> <div class="styLNRightNumBoxNBB" style="background-color:lightgrey;"/> <div class="styLNAmountBoxNBB"/> </div> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox"/> <div class="styLNDesc" style="width:99mm;"> <span style="float:left;">controlled group, see instructions). If zero or less, enter -0-</span> <span class="styDotLn" style="float:right;padding-right:2mm;">.....</span> </div> <div class="styLNRightNumBox">8a</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/QualifiedAMTIExemption"/> </xsl:call-template> </div> <div class="styLNRightNumBoxNBB" style="background-color:lightgrey;height:4.5mm;"/> <div class="styLNAmountBoxNBB" style="height:4.5mm;"/> </div> <!-- line 8 sub b --> <!-- double lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">b</div> <div class="styLNDesc" style="width:99mm;"> <span style="float:left;">Multiple line 8a by 25% (.25)</span> <span class="styDotLn" style="float:right;padding-right:2mm;">..............</span> </div> <div class="styLNRightNumBox">8b</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/ReducedAMTIExemption"/> </xsl:call-template> </div> <div class="styLNRightNumBoxNBB" style="background-color:lightgrey;height:4.5mm;"/> <div class="styLNAmountBoxNBB" style="height:4.5mm;"/> </div> <!-- line 8 sub c --> <!-- triple lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox" style="padding-left:4.3mm;">c</div> <div class="styLNDesc" style="width:139mm;"> Exemption. Subtract line 8b from $40,000 (if completing this line for a member of a controlled </div> <div class="styLNRightNumBoxNBB" style="background-color:lightgrey;"/> <div class="styLNAmountBoxNBB"/> </div> <div class="IRS4626_LineContainer"> <div class="styLNLeftLtrBox"/> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;">group, see instructions). If zero or less, enter -0-</span> <span class="styDotLn" style="float:right;padding-right:2mm;">..................</span> </div> <div class="styLNRightNumBox">8c</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/Exemption"/> </xsl:call-template> </div> </div> <!-- line 9 --> <!-- double lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftNumBoxSD">9</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;">Subtract line 8c from line 7. If zero or less, enter -0-</span> <span class="styDotLn" style="float:right;padding-right:2mm;">.................</span> </div> <div class="styLNRightNumBox">9</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/AMTIMinusExemption"/> </xsl:call-template> </div> </div> <!-- line 10 --> <!-- double lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftNumBox">10</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Multiply line 9 by 20% (.20) </span> <span class="styDotLn" style="float:right;padding-right:2mm;">.........................</span> </div> <div class="styLNRightNumBox">10</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/AdjustedAMTI"/> </xsl:call-template> </div> </div> <!-- line 11 --> <!-- double lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftNumBox">11</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Alternative minimum tax foreign tax credit (AMTFTC) (see instructions) </span> <span class="styDotLn" style="float:right;padding-right:2mm;">...........</span> </div> <div class="styLNRightNumBox">11</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/AltMinimumTaxForeignTaxCredit"/> </xsl:call-template> </div> </div> <!-- line 12 --> <!-- double lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftNumBox">12</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Tentative minimum tax. Subtract line 11 from line 10 </span> <span class="styDotLn" style="float:right;padding-right:2mm;">.................</span> </div> <div class="styLNRightNumBox">12</div> <div class="styLNAmountBox"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/TentativeMinimumTax"/> </xsl:call-template> </div> </div> <!-- line 13 --> <!-- double lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftNumBox">13</div> <div class="styLNDesc" style="width:139mm;"> <span style="float:left;"> Regular tax liability before applying all credits except the foreign tax credit </span> <span class="styDotLn" style="float:right;padding-right:2mm;">..........</span> </div> <div class="styLNRightNumBox" style="height:4mm;">13</div> <div class="styLNAmountBox" style="height:4mm;"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/RegularTaxLiability"/> </xsl:call-template> </div> </div> <!-- line 14 --> <!-- quadruple lines --> <div class="IRS4626_LineContainer"> <div class="styLNLeftNumBox">14</div> <div class="styLNDesc" style="width:139mm;"> <span style="font-weight:bold">Alternative minimum tax. </span> Subtract line 13 from line 12. If zero or less, enter -0-. Enter here and on </div> <div class="styLNRightNumBoxNBB"/> <div class="styLNAmountBoxNBB"/> </div> <div class="IRS4626_LineContainer"> <div class="styLNLeftNumBox" style="border-bottom-width:1px"/> <div class="styLNDesc" style="width:139mm;border-bottom-width:1px"> <span style="float:left;"> Form 1120, Schedule J, line 3, or the appropriate line of the corporation's income tax return </span> <span class="styDotLn" style="float:right;padding-right:2mm;">....</span> </div> <div class="styLNRightNumBoxNBB">14</div> <div class="styLNAmountBoxNBB"> <xsl:call-template name="PopulateAmount"> <xsl:with-param name="TargetNode" select="$FormData/AlternativeMinimumTax"/> </xsl:call-template> </div> </div> <!-- Page 1 Break and Footer--> <div class="pageEnd" style="width:187mm;padding-top:1mm;border-top:1 solid black;"> <div style="float:left;"> <span class="styBoldText">For Paperwork Reduction Act Notice, see the instructions. </span> <span style="width:30mm;"/> Cat. No. 12955I </div> <div style="float:right;"> <span style="width:70px;"/> Form <span class="styBoldText" style="font-size:8pt;">4626</span> (2012) </div> </div> <!-- END Page 1 Break and Footer--> <!--Begin ADDITIONAL DATA SECTION --> <div class="styLeftOverTitleLine" id="LeftoverData"> <div class="styLeftOverTitle"> Additional Data </div> <div class="styLeftOverButtonContainer"> <input class="styLeftoverTableBtn" TabIndex="1" type="button" value="Return to Form" onclick="javascript:returnToWriteInImage();"/> </div> </div> <table class="styLeftOverTbl"> <xsl:call-template name="PopulateCommonLeftover"> <xsl:with-param name="TargetNode" select="$FormData"/> <xsl:with-param name="DescWidth" select="100"/> </xsl:call-template> <xsl:call-template name="PopulateLeftoverRow"> <xsl:with-param name="Desc">Line 7 - Note on Residual Interests</xsl:with-param> <xsl:with-param name="TargetNode" select="$FormData/ResidualInterest/@note"/> <xsl:with-param name="DescWidth" select="100"/> </xsl:call-template> </table> </body> </html> </xsl:template> </xsl:stylesheet>
\ Copyright (c) 2020-2022 Travis Bemann \ \ Permission is hereby granted, free of charge, to any person obtaining a copy \ of this software and associated documentation files (the "Software"), to deal \ in the Software without restriction, including without limitation the rights \ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell \ copies of the Software, and to permit persons to whom the Software is \ furnished to do so, subject to the following conditions: \ \ The above copyright notice and this permission notice shall be included in \ all copies or substantial portions of the Software. \ \ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR \ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, \ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE \ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER \ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, \ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE \ SOFTWARE. \ This is not actual Forth code, but rather setup directives for e4thcom to be \ executed from the root of the zeptoforth directory to initialize zeptoforth \ on an nRF52840 device. #include src/common/forth/basic.fs #include src/common/forth/interrupt.fs #include src/stm32l476/forth/erase.fs #include src/common/forth/lambda.fs #include src/common/forth/fixed.fs #include src/common/forth/systick.fs #include src/stm32l476/forth/int_io.fs #include src/common/forth/task.fs #include src/common/forth/disassemble.fs \ Set a cornerstone to enable deleting everything compiled after this code cornerstone restore-state
-module(fprof_ex). -export([ ]). func() -> ok. % fprof:apply(foo, create_file_slow, [junk, 1024]). % fprof:start(). % fprof:trace(cpu_time). % fprof:profile(). % fprof:stop(). %fprof:start(). %fprof:trace([start, {procs, all}]). %timer:sleep(1000). %fprof:trace([stop]). %fprof:profile(). %fprof:analyse([totals, {dest, "fprof.analysis"}]). %fprof:stop(). % sudo apt install kcachegrind % git clone https://github.com/isacssouza/erlgrind
<%@ page language="java" pageEncoding="utf-8" %> <% String path = request.getContextPath(); String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/"; %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>资产管理</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <!-- 指定以IE8的方式来渲染 --> <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8"/> <link rel="shortcut icon" href="<%=path%>/images/favicon.ico" type="image/x-icon"/> <link type="text/css" rel="stylesheet" href="<%=path %>/css/css.css"/> </head> <body> <div id="foot">Copyright © 2015 季圣华 版权所有 版本号 V1.0</div> </body> </html>
@; -*- coding: utf-8 -*- @subsection[:tag "rfc.http-connections"]{ (rfc http-connections) - HTTP client utilities } @define[Library]{@name{(rfc http)}} @desc{This library provides common interfaces of @secref["rfc.http"]{@code{(rfc http)}} and @secref["rfc.http2"]{@code{(rfc http2)}} library. } @define[Function]{@name{http-connection?} @args{obj}} @desc{Returns #t if the given object is an HTTP connection.} @define[Function]{@name{http1-connection?} @args{obj}} @desc{Returns #t if the given object is an HTTP/1.1 connection.} @define[Function]{@name{make-http1-connection} @args{server secure?}} @desc{Creates an HTTP/1.1 connection with destination server @var{server}. If the @var{secure?} is true value, then it uses TLS socket. The HTTP/1.1 connection uses @code{http-request} defined in @code{(rfc http)} library to send an request. } @define[Function]{@name{http2-connection?} @args{obj}} @desc{Returns #t if the given object is an HTTP/2 connection.} @define[Function]{@name{make-http2-connection} @args{server secure?}} @desc{Creates an HTTP/2 connection with destination server @var{server}. If the @var{secure?} is true value, then it uses TLS socket. The HTTP/1.1 connection uses @code{http2-request} defined in @code{(rfc http2)} library to send an request. } @define[Function]{@name{http-connection-secure?} @args{http-connection}} @desc{Returns #t if the given @var{http-connection} uses TLS socket to connect target server.} @define[Function]{@name{http-connection-server} @args{http-connection}} @desc{Returns destination server of the @var{http-connection} as string.} @define[Function]{@name{http-connection-server&port} @args{http-connection}} @desc{Returns destination server and port of the @var{http-connection}.} @define[Function]{@name{open-http-connection!} @args{http-connection}} @desc{Opens given @var{http-connection} and returns it.} @define[Function]{@name{close-http-connection!} @args{http-connection}} @desc{Closes given @var{http-connection} and returns it.} @define[Function]{@name{http-request} @args{http-connection method path . opt}} @desc{Sends HTTP request to the path @var{path} of destination server of @var{http-connection} with HTTP method @var{methos}. The rest value of @var{opt} is passed to underling request sending procedure. The procedure returns 3 values, HTTP status, HTTP header and content as bytevector. } @define[Generic]{@name{http-null-receiver}} @define[Method]{@name{http-null-receiver} @args{(conn http1-connection)}} @define[Method]{@name{http-null-receiver} @args{(conn http2-connection)}} @desc{Generic method of null http receiver. The @code{http-null-receiver} forwards @code{http-null-receiver} defined in @code{(rfc http)} for @code{http1-connection} and @code{http2-null-receiver} defined in @code{(rfc http2)} for @code{http2-connection} } @define[Generic]{@name{http-oport-receiver}} @define[Method]{@name{http-oport-receiver} @args{(conn http1-connection) sink flusher}} @define[Method]{@name{http-oport-receiver} @args{(conn http2-connection) sink flusher}} @desc{Generic method of output port http receiver. The @code{http-oport-receiver} forwards @code{http-oport-receiver} defined in @code{(rfc http)} for @code{http1-connection} and @code{http2-data-receiver} defined in @code{(rfc http2)} for @code{http2-connection} } @define[Generic]{@name{http-blob-sender}} @define[Method]{@name{http-blob-sender} @args{(conn http1-connection) blob}} @define[Method]{@name{http-blob-sender} @args{(conn http2-connection) blob}} @desc{Generic method of http blob sender. The @code{http-blob-sender} forwards @code{http-blob-sender} defined in @code{(rfc http)} for @code{http1-connection} and @code{http2-data-sender} defined in @code{(rfc http2)} for @code{http2-connection} } @define[Generic]{@name{http-string-sender}} @define[Method]{@name{http-string-sender} @args{(conn http1-connection) string}} @define[Method]{@name{http-string-sender} @args{(conn http2-connection) string}} @desc{Generic method of http string sender. The @code{http-string-sender} forwards @code{http-string-sender} defined in @code{(rfc http)} for @code{http1-connection} and @code{http2-data-sender} defined in @code{(rfc http2)} with given @var{string} converted by @code{string->utf8} procedure defined for @code{http2-connection} } @define[Generic]{@name{http-null-sender}} @define[Method]{@name{http-null-sender} @args{(conn http1-connection)}} @define[Method]{@name{http-null-sender} @args{(conn http2-connection)}} @desc{Generic method of http null sender. The @code{http-null-sender} forwards @code{http-null-sender} defined in @code{(rfc http)} for @code{http1-connection} and does nothing for @code{http2-connection}. }
#!/usr/bin/env -S bash -euET -o pipefail -O inherit_errexit SCRIPT=$(readlink -f "$0") && cd $(dirname "$SCRIPT") # --- Script Init --- mkdir -p log rm -R -f log/* # --- Setup run dirs --- find output -type f -not -name '*summary-info*' -not -name '*.json' -exec rm -R -f {} + rm -R -f fifo/* rm -R -f work/* mkdir work/kat/ mkfifo fifo/il_P7 mkfifo fifo/il_S1_summary_P7 mkfifo fifo/il_S1_eltcalc_P7 # --- Do insured loss computes --- eltcalc -s < fifo/il_S1_eltcalc_P7 > work/kat/il_S1_eltcalc_P7 & pid1=$! tee < fifo/il_S1_summary_P7 fifo/il_S1_eltcalc_P7 > /dev/null & pid2=$! summarycalc -m -f -1 fifo/il_S1_summary_P7 < fifo/il_P7 & eve 7 20 | getmodel | gulcalc -S100 -L100 -r -i - | fmcalc -a2 > fifo/il_P7 & wait $pid1 $pid2 # --- Do insured loss kats --- kat -s work/kat/il_S1_eltcalc_P7 > output/il_S1_eltcalc.csv & kpid1=$! wait $kpid1
# Header-only library vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO beached/daw_json_link REF d8cb3a25a545b27b6ab5e68f4480b92ad0dc78fe SHA512 19f486c6782f6134db0f7c8a1a4031b69aeae7f64846f186bccfa37927c8a688545fe5825de841e5ec5408267922b0334db3727d00fcb96b1a36eee81a05eae9 HEAD_REF master ) vcpkg_cmake_configure( SOURCE_PATH ${SOURCE_PATH} OPTIONS -DDAW_USE_PACKAGE_MANAGEMENT=ON ) vcpkg_cmake_install() vcpkg_cmake_config_fixup(CONFIG_PATH share/${PORT}/cmake) # remove empty lib and debug/lib directories (and duplicate files from debug/include) file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug" "${CURRENT_PACKAGES_DIR}/lib") # Append the json-link and dragonbox license information into a single # copyright file (they are both Boost v1.0 but it is good to be clear). file(APPEND ${SOURCE_PATH}/copyright [=[+----------------------------------------------------------------------------+ | json-link copywrite | +----------------------------------------------------------------------------+ ]=]) file(READ ${SOURCE_PATH}/LICENSE json_link_copywrite) file(APPEND ${SOURCE_PATH}/copyright ${json_link_copywrite}) file(APPEND ${SOURCE_PATH}/copyright [=[ +----------------------------------------------------------------------------+ | dragonbox copywrite | +----------------------------------------------------------------------------+ ]=]) file(READ ${SOURCE_PATH}/LICENSE_Dragonbox dragonbox_copywrite) file(APPEND ${SOURCE_PATH}/copyright ${dragonbox_copywrite}) file(INSTALL ${SOURCE_PATH}/copyright DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT})
<!-- YAML added: v0.1.90 --> * `code` {number} 子进程自行退出时的退出码。 * `signal` {string} 子进程被终止的信号。 当子进程结束后时会触发 `'exit'` 事件。 如果进程退出,则 `code` 是进程的最终退出码,否则为 `null`。 如果进程是因为收到的信号而终止,则 `signal` 是信号的字符串名称,否则为 `null`。 这两个值至少有一个是非 `null` 的。 当 `'exit'` 事件被触发时,子进程的 stdio 流可能依然是打开的。 Node.js 为 `SIGINT` 和 `SIGTERM` 建立了信号处理程序,且 Node.js 进程收到这些信号不会立即终止。 相反,Node.js 将会执行一系列的清理操作,然后再重新提升处理后的信号。 参阅 waitpid(2)。
module Accumulate export accumulate : (Int -> Int) -> List Int -> List Int accumulate f xs = ?accumulate_rhs
SELECT( COUNT ( DISTINCT ?var1 ) AS ?var2 ) WHERE { { ?var1 <http://www.wikidata.org/prop/direct/P1971> ?var3 . { SELECT ?var1 ( COUNT ( ?var4 ) AS ?var5 ) WHERE { ?var1 <http://www.wikidata.org/prop/direct/P40> ?var4 . } GROUP BY ?var1 } FILTER ( ( ( ?var3 = ?var5 ) ) ) . } UNION { ?var1 <http://www.wikidata.org/prop/direct/P1971> "0"^^<http://www.w3.org/2001/XMLSchema#decimal> . FILTER ( ( NOT EXISTS { ?var1 <http://www.wikidata.org/prop/direct/P40> ?var4 . } ) ) . } }
Batman = require '../../../../lib/batman' Watson = require 'watson' TestStorageAdapter = require '../lib/test_storage_adapter' Clunk = require '../lib/clunk' clunks = [] observerA = -> observerB = -> clunks.push(new Clunk(foo: i)) for i in [0..2000] Watson.trackMemory 'observer attachement memory usage', 2000, (i) -> clunk = clunks[i] clunk.observe 'foo', observerA clunk.on 'explode', observerB
DIM EQU 8 .model small .stack .data opa db ? opb db ? ris db ? .code .startup mov ax,0 mov ah,01h mov bx,0 mov cx,DIM mov si,0 cicloa: int 21h sub al , '0' dec cx shl al,cl or bl,al cmp cx,0 jg cicloa int 21h mov opa,bl xor bx,bx mov cx,dim ciclob: int 21h sub al,'0' dec cx shl al,cl or bl,al cmp cx,0 jg ciclob int 21h mov opb,bl mov al,opa xor al,opb mov ah,opb not ah and ah,opa not ah or ah,al mov ris,ah fine: .exit end
{ "spriteId": { "name": "sprGameWin", "path": "sprites/sprGameWin/sprGameWin.yy", }, "solid": false, "visible": true, "spriteMaskId": null, "persistent": false, "parentObjectId": null, "physicsObject": false, "physicsSensor": false, "physicsShape": 1, "physicsGroup": 1, "physicsDensity": 0.5, "physicsRestitution": 0.1, "physicsLinearDamping": 0.1, "physicsAngularDamping": 0.1, "physicsFriction": 0.2, "physicsStartAwake": true, "physicsKinematic": false, "physicsShapePoints": [], "eventList": [ {"isDnD":false,"eventNum":0,"eventType":6,"collisionObjectId":null,"resourceVersion":"1.0","name":"","tags":[],"resourceType":"GMEvent",}, {"isDnD":false,"eventNum":0,"eventType":0,"collisionObjectId":null,"resourceVersion":"1.0","name":"","tags":[],"resourceType":"GMEvent",}, {"isDnD":false,"eventNum":4,"eventType":6,"collisionObjectId":null,"resourceVersion":"1.0","name":"","tags":[],"resourceType":"GMEvent",}, ], "properties": [], "overriddenProperties": [], "parent": { "name": "Screens_Buttons", "path": "folders/Objects/Screens_Buttons.yy", }, "resourceVersion": "1.0", "name": "objGameWin", "tags": [], "resourceType": "GMObject", }
# =============================== # Written by AAE # TU Delft, Winter 2014 # simulkade.com # =============================== """ fluxLimiter(flName::AbstractString) This function returns a function handle to a flux limiter of user's choice. available flux limiters are: 'CHARM', 'HCUS', 'HQUICK', 'VanLeer', 'VanAlbada1', 'VanAlbada2', 'MinMod', 'SUPERBEE', 'Sweby', 'Osher', 'Koren', 'smart', 'MUSCL', 'QUICK', 'MC', and 'UMIST'. Default limiter is 'SUPERBEE'. See: <http://en.wikipedia.org/wiki/Flux_limiter> """ function fluxLimiter(flName::AbstractString) # This function returns a function handle to a flux limiter of user's # choice. # available flux limiters are: 'CHARM', 'HCUS', 'HQUICK', 'VanLeer', # 'VanAlbada1', 'VanAlbada2', 'MinMod', 'SUPERBEE', 'Sweby', 'Osher', # 'Koren', 'smart', 'MUSCL', 'QUICK', 'MC', and 'UMIST'. # Default limiter is 'SUPERBEE'. See: # <http://en.wikipedia.org/wiki/Flux_limiter> # find the flux limiter function if flName=="CHARM" r->((r.>0.0).*r.*(3.0*r+1.0)./(((r+1.0).^2.0)+eps()*(r.==-1.0))) elseif flName=="HCUS" r->(1.5*(r+abs(r))./(r+2.0)) elseif flName=="HQUICK" r->(2.0*(r+abs(r))./((r+3.0)+eps()*(r.==-3.0))) elseif flName=="ospre" r->((1.5*r.*(r+1.0))./(r.*(r+1.0)+1.0+eps()*((r.*(r+1.0)+1.0).==0.0))) elseif flName=="VanLeer" r->((r+abs(r))./(1.0+abs(r))) elseif flName=="VanAlbada1" r->((r+r.*r)./(1.0+r.*r)) elseif flName=="VanAlbada2" r->(2.0*r./(1+r.*r)) elseif flName=="MinMod" r->((r>0.0).*min.(r,1.0)) elseif flName=="SUPERBEE" r->(max.(0.0, max.(min.(2.0*r,1.0), min.(r,2.0)))) elseif flName=="Osher" b=1.5 r->(max.(0.0, min.(r,b))) elseif flName=="Sweby" b=1.5 r->(max.(0.0, max.(min.(b*r,1.0), min.(r,b)))) elseif flName=="smart" r->(max.(0.0, min.(4.0,min.(0.25+0.75*r, 2.0*r)))) elseif flName=="Koren" r->(max.(0.0, min.(2.0*r, min.((1.0+2.0*r)/3.0, 2.0)))) elseif flName=="MUSCL" r->(max.(0.0, min.(2.0*r, min.(0.5*(1+r), 2.0)))) elseif flName=="QUICK" r->(max.(0.0, min.(2.0, min.(2.0*r, (3.0+r)/4.0)))) elseif flName=="UMIST" r->(max.(0.0, min.(2.0, min.(2.0*r, min.((1.0+3.0*r)/4.0, (3.0+r)/4.0))))) else println("The flux limiter of your choice is not available. The SUPERBEE flux limiter is used instead.") r->(max.(0.0, max.(min.(2.0*r,1.0), min.(r,2.0)))) end end """ update!(phi_old::CellValue, phi_new::CellValue) Copies the values of the new variable into the old cell variable: phi_old.value .= phi_new.value """ function update!(phi_old::CellValue, phi_new::CellValue) phi_old.value .= phi_new.value end """ update!(phi_old::FaceValue, phi_new::FaceValue) Copies the values of the new variable into the old variable: phi_old.xvalue .= phi_new.xvalue phi_old.yvalue .= phi_new.yvalue phi_old.zvalue .= phi_new.zvalue """ function update!(phi_old::FaceValue, phi_new::FaceValue) phi_old.xvalue .= phi_new.xvalue phi_old.yvalue .= phi_new.yvalue phi_old.zvalue .= phi_new.zvalue end function faceEval(f::Function, x::FaceValue) FaceValue(x.domain, f.(x.xvalue), f.(x.yvalue), f.(x.zvalue)) end function faceEval(f::Function, x1::FaceValue, x2::FaceValue) FaceValue(x1.domain, f.(x1.xvalue, x2.xvalue), f.(x1.yvalue, x2.yvalue), f.(x1.zvalue, x2.zvalue)) end function faceEval(f::Function, x1::FaceValue, x2::FaceValue, x3::FaceValue) FaceValue(x1.domain, f.(x1.xvalue, x2.xvalue, x3.xvalue), f.(x1.yvalue, x2.yvalue, x3.yvalue), f.(x1.zvalue, x2.zvalue, x3.zvalue)) end function faceEval(f::Function, x1::FaceValue, x2::FaceValue, x3::FaceValue, x4::FaceValue) FaceValue(x1.domain, f.(x1.xvalue, x2.xvalue, x3.xvalue, x4.xvalue), f.(x1.yvalue, x2.yvalue, x3.yvalue, x4.yvalue), f.(x1.zvalue, x2.zvalue, x3.zvalue, x4.zvalue)) end function faceEval(f::Function, x1::FaceValue, x2::FaceValue, x3::FaceValue, x4::FaceValue, x5::FaceValue) FaceValue(x1.domain, f.(x1.xvalue, x2.xvalue, x3.xvalue, x4.xvalue, x5.xvalue), f.(x1.yvalue, x2.yvalue, x3.yvalue, x4.yvalue, x5.yvalue), f.(x1.zvalue, x2.zvalue, x3.zvalue, x4.zvalue, x5.zvalue)) end function faceEval(f::Function, x1::FaceValue, x2::FaceValue, x3::FaceValue, x4::FaceValue, x5::FaceValue, x6::FaceValue) FaceValue(x1.domain, f.(x1.xvalue, x2.xvalue, x3.xvalue, x4.xvalue, x5.xvalue, x6.xvalue), f.(x1.yvalue, x2.yvalue, x3.yvalue, x4.yvalue, x5.yvalue, x6.yvalue), f.(x1.zvalue, x2.zvalue, x3.zvalue, x4.zvalue, x5.zvalue, x6.zvalue)) end function cellEval(f::Function, x::CellValue) CellValue(x.domain, f.(x.value)) end function cellEval(f::Function, x1::CellValue, x2::CellValue) CellValue(x1.domain, f.(x1.value, x2.value)) end function cellEval(f::Function, x1::CellValue, x2::CellValue, x3::CellValue) CellValue(x1.domain, f.(x1.value, x2.value, x3.value)) end function cellEval(f::Function, x1::CellValue, x2::CellValue, x3::CellValue, x4::CellValue) CellValue(x1.domain, f.(x1.value, x2.value, x3.value, x4.value)) end function cellEval(f::Function, x1::CellValue, x2::CellValue, x3::CellValue, x4::CellValue, x5::CellValue) CellValue(x1.domain, f.(x1.value, x2.value, x3.value, x4.value, x5.value)) end function cellEval(f::Function, x1::CellValue, x2::CellValue, x3::CellValue, x4::CellValue, x5::CellValue, x6::CellValue) CellValue(x1.domain, f.(x1.value, x2.value, x3.value, x4.value, x5.value, x6.value)) end # ========================= Generate random perm field ====================== function permfieldlogrndg(Nx,k_avrg,V_dp,cl) # 1D random field generator: # hdf: Gaussian # acf: Gaussian Lx=1.0 x = range(-Lx/2,Lx/2,length=Nx) s = -log(1-V_dp) mu = log(k_avrg)-s^2/2.0 Z = s*randn(Nx) # Gaussian filter F = exp.(-x.^2/(cl^2/2.0)) # correlation of surface using convolution (faltung), inverse # Fourier transform and normalizing prefactors f = sqrt(2.0/sqrt(pi))*sqrt(Lx/Nx/cl)*ifft(fft(Z).*fft(F)) perm = exp.(mu .+ real(f)) end function permfieldlogrnde(Nx,k_avrg,V_dp,cl) # 1D random field generator: # hdf: Gaussian # acf: Exponential Lx=1.0 x = range(-Lx/2,Lx/2,length=Nx) s = -log(1-V_dp) mu = log(k_avrg)-s^2/2.0 Z = s*randn(Nx) # Gaussian filter F = exp.(-abs.(x)/(cl/2.0)) # correlation of surface using convolution (faltung), inverse # Fourier transform and normalizing prefactors f = sqrt(2.0)*sqrt(Lx/Nx/cl)*ifft(fft(Z).*fft(F)) perm = exp.(mu .+ real(f)) end # ======================== 2D ==================================> function permfieldlogrndg(Nx,Ny,k_avrg,V_dp,clx,cly) # 2D random field generator: # hdf: Gaussian # acf: Gaussian # The surface has a Gaussian height distribution function # and Gaussian autocovariance functions Lx=1.0 X = range(-Lx/2,Lx/2,length=Nx) Y = range(-Lx/2,Lx/2,length=Ny)' s = -log(1-V_dp) mu = log(k_avrg)-s^2/2 Z = s*randn(Nx,Ny) # Gaussian filter F = exp.(-(X.^2/(clx^2/2.0).+Y.^2/(cly^2/2.0))) # correlated surface generation including convolution (faltning) and inverse # Fourier transform and normalizing prefactors f = 2.0/sqrt(pi)*Lx/sqrt(Nx*Ny)/sqrt(clx)/sqrt(cly)*ifft(fft(Z).*fft(F)) perm = exp.(mu .+ real(f)) end function permfieldlogrnde(Nx,Ny,k_avrg,V_dp,clx,cly) # 2D random field generator: # hdf: Gaussian # acf: Exponential # The surface has a Gaussian height distribution function # and Exponential autocovariance functions Lx=1.0 X = range(-Lx/2,Lx/2,length=Nx) Y = range(-Lx/2,Lx/2,length=Ny)' s = -log(1-V_dp) mu = log(k_avrg)-s^2/2 Z = s*randn(Nx,Ny) # Gaussian filter F = exp.(-(abs.(X)/(clx/2).+abs.(Y)/(cly/2))) # correlated surface generation including convolution (faltning) and inverse # Fourier transform and normalizing prefactors f = 2.0*Lx/sqrt(Nx*Ny)/sqrt(clx*cly)*ifft(fft(Z).*fft(F)) perm = exp.(mu .+ real.(f)) end # <========================= 2D ================================ # ======================== 3D ==================================> function permfieldlogrndg(Nx,Ny,Nz,k_avrg,V_dp,clx,cly,clz) # 2D random field generator: # hdf: Gaussian # acf: Gaussian # The surface has a Gaussian height distribution function # and Gaussian autocovariance functions Lx=1.0 X = range(-Lx/2,Lx/2,length=Nx) Y = range(-Lx/2,Lx/2,length=Ny)' Z = zeros(1,1,Nz) Z[:]=range(-Lx/2,Lx/2,length=Nz) s = -log(1-V_dp) mu = log(k_avrg)-s^2/2 z = s*randn(Nx,Ny,Nz) # Gaussian filter F = exp.(-(X.^2/(clx^2/2.0).+Y.^2/(cly^2/2.0).+Z.^2/(clz^2/2.0))) # correlated surface generation including convolution (faltning) and inverse # Fourier transform and normalizing prefactors f = 2.0/sqrt(pi)*Lx/(Nx*Ny*Nz)^(1/3)/(clx*cly*clz)^(1/3)*ifft(fft(z).*fft(F)) perm = exp.(mu .+ real(f)) end function permfieldlogrnde(Nx,Ny,Nz,k_avrg,V_dp,clx,cly,clz) # 2D random field generator: # hdf: Gaussian # acf: Exponential # The surface has a Gaussian height distribution function # and Exponential autocovariance functions Lx=1.0 X = range(-Lx/2,Lx/2,length=Nx) Y = range(-Lx/2,Lx/2,length=Ny)' Z = zeros(1,1,Nz) Z[:]=range(-Lx/2,Lx/2,length=Nz) s = -log(1-V_dp) mu = log(k_avrg)-s^2/2 z = s*randn(Nx,Ny,Nz) # Gaussian filter F = exp.(-(abs.(X)/(clx/2.0).+abs.(Y)/(cly/2.0).+abs.(Z)/(clz/2.0))) # correlated surface generation including convolution (faltning) and inverse # Fourier transform and normalizing prefactors f = 2.0*Lx/(Nx*Ny*Nz)^(1/3)/(clx*cly*clz)^(1/3)*ifft(fft(z).*fft(F)) perm = exp.(mu .+ real(f)) end # <============================== 3D ============================== """ function cellvol = cellVolume(m::MeshStructure) returns the volume of each cell in the form of a cell variable """ function cellVolume(m::MeshStructure) dim = m.dimension BC = createBC(m) if dim==1 c=m.cellsize.x[2:end-1] elseif dim==1.5 c=2.0*pi()*m.cellsize.x[2:end-1].*m.cellcenters.x elseif dim==2 c=m.cellsize.x[2:end-1]*m.cellsize.y[2:end-1]' elseif dim== 2.5 # cylindrical c=2.0*pi*m.cellcenters.x.*m.cellsize.x[2:end-1]*m.cellsize.y[2:end-1]' elseif dim==2.8 # radial c=m.cellcenters.x.*m.cellsize.x[2:end-1]*m.cellsize.y[2:end-1]' elseif dim==3 z = zeros(1,1,m.dims[3]) z[1,1,:] = m.cellsize.z[2:end-1] c=m.cellsize.x[2:end-1]*m.cellsize.y[2:end-1]'.*z elseif dim==3.2 z = zeros(1,1,m.dims[3]) z[1,1,:] = m.cellsize.z[2:end-1] c=m.cellcenters.x.*m.cellsize.x[2:end-1]*m.cellsize.y[2:end-1]'.*z end cellvol= createCellVariable(m, c, BC) end """ this function reshapes a vetorized cell variable to its domain shape matrix based on the mesh structure data; it is assumed that the phi includes the ghost cell data as well. """ function reshapeCell(m, phi) reshape(Matrix(phi), tuple(m.dims+2...)) end """ this function reshapes a vetorized cell variable to its domain shape matrix based on the mesh structure data; it is assumed that the phi does NOT include the ghost cell data. """ function reshapeInternalCell(m, phi) reshape(Matrix(phi), tuple(m.dims...)) end """ returns the internal cells of a cell variable as an array of the same shape """ function internalCells(phi::CellValue) d = phi.domain.dimension N = phi.domain.dims if (d==1) || (d==1.5) cellvar= phi.value[2:N[1]+1] elseif (d==2) || (d==2.5) || (d==2.8) cellvar= phi.value[2:N[1]+1, 2:N[2]+1] elseif (d==3) || (d==3.2) cellvar= phi.value[2:N[1]+1, 2:N[2]+1, 2:N[3]+1] end return cellvar end """ Integrate variable phi over the domain it is defined """ function domainInt(phi::CellValue) return sum(internalCells(phi).*internalCells(cellVolume(phi.domain))) end
--- title: 'L’interface de ligne de commande Azure CLI : Créer une base de données unique' description: Utilisez cet exemple de script Azure CLI pour créer une base de données unique. services: sql-database ms.service: sql-database ms.subservice: deployment-configuration ms.custom: sqldbrb=1, devx-track-azurecli ms.devlang: azurecli ms.topic: sample author: MashaMSFT ms.author: mathoma ms.reviewer: '' ms.date: 06/25/2019 ms.openlocfilehash: 76f7d0314e382508c6290e80db4960addbc15c24 ms.sourcegitcommit: 20acb9ad4700559ca0d98c7c622770a0499dd7ba ms.translationtype: HT ms.contentlocale: fr-FR ms.lasthandoff: 05/29/2021 ms.locfileid: "110688961" --- # <a name="use-the-azure-cli-to-create-a-single-database-and-configure-a-firewall-rule"></a>Utiliser Azure CLI pour créer une base de données unique et configurer une règle de pare-feu [!INCLUDE[appliesto-sqldb](../../includes/appliesto-sqldb.md)] Cet exemple de script Azure CLI crée une base de données unique dans Azure SQL Database et configure une règle de pare-feu au niveau du serveur. Une fois que le script a été exécuté avec succès, la base de données est accessible à partir de tous les services Azure et de l’adresse IP configurée. Si vous choisissez d’installer et d’utiliser l’interface de ligne de commande localement, vous devez exécuter Azure CLI version 2.0 ou une version ultérieure pour poursuivre la procédure décrite dans cet article. Exécutez `az --version` pour trouver la version. Si vous devez effectuer une installation ou une mise à niveau, consultez [Installer Azure CLI]( /cli/azure/install-azure-cli). ## <a name="sample-script"></a>Exemple de script ### <a name="sign-in-to-azure"></a>Connexion à Azure [!INCLUDE [quickstarts-free-trial-note](../../../../includes/quickstarts-free-trial-note.md)] ### <a name="run-the-script"></a>Exécuter le script [!code-azurecli-interactive[main](../../../../cli_scripts/sql-database/create-and-configure-database/create-and-configure-database.sh "Create SQL Database")] ### <a name="clean-up-deployment"></a>Nettoyer le déploiement Utilisez la commande suivante pour supprimer le groupe de ressources et toutes les ressources associées. ```azurecli-interactive az group delete --name $resource ``` ## <a name="sample-reference"></a>Informations de référence sur l’exemple Ce script utilise les commandes suivantes. Chaque commande du tableau renvoie à une documentation spécifique. | Commande | Description | |---|---| | [az sql server](/cli/azure/sql/server#az_sql_server_create) | Commandes de serveur | | [az sql server firewall](/cli/azure/sql/server/firewall-rule#az_sql_server_firewall_rule_create) | Commandes de pare-feu de serveur. | | [az sql db](/cli/azure/sql/db#az_sql_db_create) | Commandes de base de données. | ## <a name="next-steps"></a>Étapes suivantes Pour plus d’informations sur l’interface Azure CLI, consultez la [documentation relative à l’interface Azure CLI](/cli/azure). Vous trouverez des exemples supplémentaires de scripts CLI SQL Database dans [Documentation Azure SQL Database](../az-cli-script-samples-content-guide.md).
/** * * RenderPipeline * * Copyright (c) 2014-2016 tobspr <tobias.springer1@gmail.com> * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * */ #version 430 // Shader used for Voxelization, required for GI %DEFINES% #define IS_VOXELIZE_SHADER 1 #define USE_TIME_OF_DAY #pragma include "render_pipeline_base.inc.glsl" #pragma include "includes/shadows.inc.glsl" #pragma include "includes/material.struct.glsl" #pragma include "includes/poisson_disk.inc.glsl" #pragma include "includes/vertex_output.struct.glsl" // Voxel data uniform vec3 voxelGridPosition; uniform writeonly image3D RESTRICT VoxelGridDest; %INCLUDES% %INOUT% uniform sampler2D p3d_Texture0; uniform Panda3DMaterial p3d_Material; layout(location=0) in VertexOutput vOutput; #pragma include "includes/forward_shading.inc.glsl" void main() { MaterialBaseInput mInput = get_input_from_p3d(p3d_Material); vec3 basecolor = texture(p3d_Texture0, vOutput.texcoord).rgb * mInput.color; vec3 ambient = get_forward_ambient(mInput, basecolor); vec3 sun_lighting = get_sun_shading(mInput, basecolor); vec3 lights = get_forward_light_shading(basecolor); vec3 shading_result = vec3(ambient * 0.0 + lights + sun_lighting); // Tonemapping to pack color shading_result = shading_result / (1 + shading_result); // shading_result = pow(shading_result, vec3(1.0 / 2.2)); // shading_result = saturate(shading_result); // Get destination voxel const int resolution = GET_SETTING(vxgi, grid_resolution); const float ws_size = GET_SETTING(vxgi, grid_ws_size); vec3 vs_coord = (vOutput.position + vOutput.normal * 0.0 - voxelGridPosition + ws_size) / (2.0 * ws_size); ivec3 vs_icoord = ivec3(vs_coord * resolution + 1e-5); // Write voxel imageStore(VoxelGridDest, vs_icoord, vec4(shading_result, 1.0)); }
syntax = "proto3"; package grpc.domain; service RpcTest{ rpc SayHello(HelloRequest) returns (HelloReponse); rpc SayHelloEvent(HelloRequest) returns(HelloReponse); } message HelloReponse{ string Result = 1; int32 Code = 2; string Msg = 3; } message HelloRequest { string name = 1; int32 Age = 2; }
tell application "Terminal" set newTab to do script "cd /Users/liqun/Desktop/【李群】赋能起航二期审核工具/programs/" do script "python3 ./window_report_checker.py" in front window end tell
--- description: Advertencia del compilador (nivel 1) CS0809 title: Advertencia del compilador (nivel 1) CS0809 ms.date: 07/20/2015 f1_keywords: - CS0809 helpviewer_keywords: - CS0809 ms.assetid: 2c2f0248-ab3a-4cdc-a1b0-2f0e05eac4c9 ms.openlocfilehash: 6ee672becce9eab11339339bbbfed9168155f0cd ms.sourcegitcommit: d579fb5e4b46745fd0f1f8874c94c6469ce58604 ms.translationtype: MT ms.contentlocale: es-ES ms.lasthandoff: 08/30/2020 ms.locfileid: "89130446" --- # <a name="compiler-warning-level-1-cs0809"></a>Advertencia del compilador (nivel 1) CS0809 El miembro obsoleto 'miembroA' reemplaza al miembro no obsoleto 'miembroB'. Normalmente, un miembro marcado como obsoleto no debe reemplazar a un miembro que no está marcado como obsoleto. Esta advertencia se genera en Visual Studio 2008, pero no en Visual Studio 2005. ## <a name="to-correct-this-error"></a>Para corregir este error Quite el atributo `Obsolete` del miembro de reemplazo o agréguelo al miembro de clase base. ## <a name="example"></a>Ejemplo ```csharp // CS0809.cs public class Base { public virtual void Test1() { } } public class C : Base { [System.Obsolete()] public override void Test1() // CS0809 { } } ```
Import-Module PSFreshService -Force $Domain = 'yourdomain' # just part of it $APIKey = '' $Connection = New-FreshServiceConnection -Domain $Domain -APIKey $APIKey $Users = Get-FreshServiceUser -Connection $Connection $Tickets = Get-FreshServiceTicket -Connection $Connection $Users | Format-Table -AutoSize $Tickets | Format-Table -AutoSize
package com.nitor.multimodalcoreweekdemo import androidx.test.platform.app.InstrumentationRegistry import androidx.test.ext.junit.runners.AndroidJUnit4 import org.junit.Test import org.junit.runner.RunWith import org.junit.Assert.* /** * Instrumented test, which will execute on an Android device. * * See [testing documentation](http://d.android.com/tools/testing). */ @RunWith(AndroidJUnit4::class) class ExampleInstrumentedTest { @Test fun useAppContext() { // Context of the app under test. val appContext = InstrumentationRegistry.getInstrumentation().targetContext assertEquals("com.nitor.multimodalcoreweekdemo", appContext.packageName) } }
#Requires -Modules Pester, PSScriptAnalyzer <# .SYNOPSIS Tests module for consistency, expected structures, settings, components & files. .EXAMPLE Invoke-Pester .NOTES A generic set of tests to apply to a module #> #Get Current Directory $Here = Split-Path -Parent $MyInvocation.MyCommand.Path #Assume ModuleName from Test File Name $ModuleName = (Split-Path -Leaf $MyInvocation.MyCommand.Path) -Replace ".Tests.ps1" #Resolve Path to Module Directory $ModulePath = Resolve-Path "$Here\..\$ModuleName" #Define Path to Module Manifest $ManifestPath = Join-Path "$ModulePath" "$ModuleName.psd1" Get-Module -Name $ModuleName -All | Remove-Module -Force -ErrorAction Ignore $Module = Import-Module -Name "$ManifestPath" -ArgumentList $true -Force -ErrorAction Stop -PassThru Describe "Module" { Context "Module Consistency Tests" { It "has a valid manifest" { {$null = Test-ModuleManifest -Path $ManifestPath -ErrorAction Stop -WarningAction SilentlyContinue} | Should Not Throw } It "specifies valid root module" { $Module.RootModule | Should Be "$ModuleName.psm1" } It "has a valid description" { $Module.Description | Should Not BeNullOrEmpty } It "has a valid guid" { $Module.Guid | Should Be 'fba9035e-5d32-4a7f-ab91-5658c84e0668' } It "has a valid copyright" { $Module.Copyright | Should Not BeNullOrEmpty } Context "Files To Process" { #validate formats ($Module.FormatsToProcess).foreach{ $FormatFilePath = (Join-Path $ModulePath $_) #File Exists It "$_ exists" { $FormatFilePath | Should Exist } #file contains valid format data It "$_ is valid" { {Update-FormatData -AppendPath $FormatFilePath -ErrorAction Stop -WarningAction SilentlyContinue} | Should Not Throw } } #validate types ($Module.TypesToProcess).foreach{ $TypesFilePath = (Join-Path $ModulePath $_) #file exists It "$_ exists" { $TypesFilePath | Should Exist } #file contains valid type data It "$_ is valid" { {Update-TypeData -AppendPath $TypesFilePath -ErrorAction Stop -WarningAction SilentlyContinue} | Should Not Throw } } } #Get Public Function Names $PublicFunctions = Get-ChildItem "$ModulePath\Functions" -Filter *.ps1 -Recurse | Select-Object -ExpandProperty BaseName Context "Exported Function Analysis" { #Get Exported Function Names $ExportedFunctions = $Module.ExportedFunctions.Values.name It 'exports the expected number of functions' { ($PublicFunctions | Measure-Object | Select-Object -ExpandProperty Count) | Should be ($ExportedFunctions | Measure-Object | Select-Object -ExpandProperty Count) } $ExportedFunctions.foreach{ Context "$_" { It 'is a public function' { $PublicFunctions -contains $_ | Should Be $true } It 'has a related pester tests file' { Test-Path (Join-Path $here "$_.Tests.ps1") | Should Be $true } Context "Help" { $help = Get-Help $_ -Full It 'has synopsis' { $help.synopsis | Should Not BeNullOrEmpty } It 'has description' { $help.description | Should Not BeNullOrEmpty } It 'has example code' { $help.examples.example.code | Should Not BeNullOrEmpty } $HelpParameters = $help.parameters.parameter | Where-Object name -NotIn @("WhatIf", "Confirm") $HelpParameters.foreach{ It "has description of parameter $($_.name)" { $_.description | Should Not BeNullOrEmpty } } } } } } Context "Exported Alias Analysis" { $ExportedAliases = $Module.ExportedAliases.Values.name $ExportedAliases.foreach{ Context "$_" { It "Resolves to Public Function" { $PublicFunctions -contains $((Get-Alias $_).ResolvedCommand) | Should Be $true } } } } } Describe 'PSScriptAnalyzer' { $Scripts = Get-ChildItem "$ModulePath" -Filter '*.ps1' -Exclude '*.ps1xml' -Recurse $Rules = Get-ScriptAnalyzerRule foreach ($Script in $scripts) { Context "Checking: $($script.BaseName)" { foreach ($rule in $rules) { It "passes rule $rule" { (Invoke-ScriptAnalyzer -Path $script.FullName -IncludeRule $rule.RuleName ).Count | Should Be 0 } } } } } }
IF $(OneTimeLoad) = 1 BEGIN DECLARE @SectionWeaponMap TABLE ( SectionWeaponMapKey INT NOT NULL PRIMARY KEY, SectionKey INT NOT NULL, PrimaryWeaponKey INT NOT NULL, SecondaryWeaponKey INT NULL ); INSERT INTO @SectionWeaponMap ( SectionWeaponMapKey, SectionKey, PrimaryWeaponKey, SecondaryWeaponKey ) VALUES (2, 1002, 4, NULL), (3, 1018, 4, NULL), (4, 1037, 4, NULL), (5, 1067, 4, NULL), (6, 1069, 4, NULL), (7, 1072, 4, NULL), (8, 1087, 4, NULL), (9, 1869, 4, NULL), (10, 1870, 4, NULL), (11, 1871, 4, NULL), (12, 1872, 4, NULL), (13, 1875, 4, NULL), (14, 1149, 4, NULL), (15, 1151, 4, NULL), (16, 1154, 4, NULL), (17, 1157, 4, NULL), (18, 1159, 4, NULL), (19, 1161, 4, NULL), (20, 1166, 4, NULL), (21, 1169, 4, NULL), (22, 1172, 4, NULL), (23, 1175, 4, NULL), (24, 1177, 4, NULL), (25, 1181, 4, NULL), (26, 1184, 4, NULL), (27, 1187, 4, NULL), (28, 1189, 4, NULL), (29, 1192, 4, NULL), (30, 1198, 4, NULL), (31, 1201, 4, NULL), (32, 1206, 4, NULL), (33, 1212, 4, NULL), (34, 1215, 4, NULL), (35, 1217, 4, NULL), (36, 1221, 4, NULL), (37, 1224, 4, NULL), (38, 1226, 4, NULL), (39, 1229, 4, NULL), (40, 1231, 4, NULL), (41, 1237, 4, NULL), (42, 1239, 4, NULL), (43, 1245, 4, NULL), (44, 1251, 4, NULL), (45, 1252, 4, NULL), (46, 1246, 4, NULL), (47, 1247, 4, NULL), (48, 1248, 4, NULL), (49, 1249, 4, NULL), (50, 1250, 4, NULL), (51, 1240, 4, NULL), (52, 1241, 4, NULL), (53, 1242, 4, NULL), (54, 1243, 4, NULL), (55, 1244, 4, NULL), (56, 1238, 4, NULL), (57, 1232, 4, NULL), (58, 1233, 4, NULL), (59, 1234, 4, NULL), (60, 1235, 4, NULL), (61, 1236, 4, NULL), (62, 1874, 4, NULL), (63, 1230, 4, NULL), (64, 1227, 4, NULL), (65, 1228, 4, NULL), (66, 1225, 4, NULL), (67, 1222, 4, NULL), (68, 1223, 4, NULL), (69, 1873, 4, NULL), (70, 1218, 4, NULL), (71, 1219, 4, NULL), (72, 1220, 4, NULL), (73, 1216, 4, NULL), (74, 1213, 4, NULL), (75, 1214, 4, NULL), (76, 1207, 4, NULL), (77, 1208, 4, NULL), (78, 1209, 4, NULL), (79, 1210, 4, NULL), (80, 1211, 4, NULL), (81, 1202, 4, NULL), (82, 1203, 4, NULL), (83, 1204, 4, NULL), (84, 1205, 4, NULL), (85, 1199, 4, NULL), (86, 1200, 4, NULL), (87, 1193, 4, NULL), (88, 1194, 4, NULL), (89, 1195, 4, NULL), (90, 1196, 4, NULL), (91, 1197, 4, NULL), (92, 1190, 4, NULL), (93, 1191, 4, NULL), (94, 1188, 4, NULL), (95, 1185, 4, NULL), (96, 1186, 4, NULL), (97, 1182, 4, NULL), (98, 1183, 4, NULL), (99, 1178, 4, NULL), (100, 1179, 4, NULL), (101, 1176, 4, NULL), (102, 1173, 4, NULL), (103, 1174, 4, NULL), (104, 1170, 4, NULL), (105, 1171, 4, NULL), (106, 1167, 4, NULL), (107, 1168, 4, NULL), (108, 1162, 4, NULL), (109, 1163, 4, NULL), (110, 1164, 4, NULL), (111, 1165, 4, NULL), (112, 1160, 4, NULL), (113, 1158, 4, NULL), (114, 1155, 4, NULL), (115, 1156, 4, NULL), (116, 1152, 4, NULL), (117, 1153, 4, NULL), (118, 1150, 4, NULL), (119, 1088, 4, NULL), (120, 1097, 4, NULL), (121, 1104, 4, NULL), (122, 1107, 4, NULL), (123, 1112, 4, NULL), (124, 1115, 4, NULL), (125, 1119, 4, NULL), (126, 1124, 4, NULL), (127, 1126, 4, NULL), (128, 1130, 4, NULL), (129, 1139, 4, NULL), (130, 1142, 4, NULL), (131, 1143, 4, NULL), (132, 1144, 4, NULL), (133, 1145, 4, NULL), (134, 1146, 4, NULL), (135, 1147, 4, NULL), (136, 1148, 4, NULL), (137, 1140, 4, NULL), (138, 1141, 4, NULL), (139, 1131, 4, NULL), (140, 1132, 4, NULL), (141, 1133, 4, NULL), (142, 1134, 4, NULL), (143, 1135, 4, NULL), (144, 1136, 4, NULL), (145, 1137, 4, NULL), (146, 1138, 4, NULL), (147, 1127, 4, NULL), (148, 1128, 4, NULL), (149, 1129, 4, NULL), (150, 1125, 4, NULL), (151, 1120, 4, NULL), (152, 1121, 4, NULL), (153, 1122, 4, NULL), (154, 1123, 4, NULL), (155, 1116, 4, NULL), (156, 1117, 4, NULL), (157, 1118, 4, NULL), (158, 1113, 4, NULL), (159, 1114, 4, NULL), (160, 1108, 4, NULL), (161, 1109, 4, NULL), (162, 1110, 4, NULL), (163, 1111, 4, NULL), (164, 1105, 4, NULL), (165, 1106, 4, NULL), (166, 1098, 4, NULL), (167, 1099, 4, NULL), (168, 1100, 4, NULL), (169, 1101, 4, NULL), (170, 1102, 4, NULL), (171, 1103, 4, NULL), (172, 1868, 4, NULL), (173, 1089, 4, NULL), (174, 1090, 4, NULL), (175, 1091, 4, NULL), (176, 1092, 4, NULL), (177, 1093, 4, NULL), (178, 1094, 4, NULL), (179, 1095, 4, NULL), (180, 1096, 4, NULL), (181, 1073, 4, NULL), (184, 1076, 4, NULL), (185, 1077, 4, NULL), (186, 1078, 4, NULL), (187, 1079, 4, NULL), (188, 1080, 4, NULL), (189, 1081, 4, NULL), (190, 1082, 4, NULL), (191, 1083, 4, NULL), (192, 1084, 4, NULL), (193, 1085, 4, NULL), (194, 1086, 4, NULL), (195, 1070, 4, NULL), (196, 1071, 4, NULL), (197, 1068, 4, NULL), (198, 1038, 4, NULL), (199, 1039, 4, NULL), (200, 1040, 4, NULL), (201, 1041, 4, NULL), (202, 1042, 4, NULL), (203, 1043, 4, NULL), (204, 1044, 4, NULL), (205, 1045, 4, NULL), (206, 1046, 4, NULL), (207, 1047, 4, NULL), (208, 1048, 4, NULL), (209, 1049, 4, NULL), (210, 1050, 4, NULL), (211, 1051, 4, NULL), (212, 1052, 4, NULL), (213, 1053, 4, NULL), (214, 1054, 4, NULL), (215, 1055, 4, NULL), (216, 1056, 4, NULL), (217, 1057, 4, NULL), (218, 1058, 4, NULL), (219, 1059, 4, NULL), (220, 1060, 4, NULL), (221, 1061, 4, NULL), (222, 1062, 4, NULL), (223, 1063, 4, NULL), (224, 1064, 4, NULL), (225, 1065, 4, NULL), (226, 1066, 4, NULL), (227, 1866, 4, NULL), (228, 1867, 4, NULL), (229, 1019, 4, NULL), (230, 1020, 4, NULL), (231, 1021, 4, NULL), (232, 1022, 4, NULL), (233, 1023, 4, NULL), (234, 1024, 4, NULL), (235, 1025, 4, NULL), (236, 1026, 4, NULL), (237, 1027, 4, NULL), (238, 1028, 4, NULL), (239, 1029, 4, NULL), (240, 1030, 4, NULL), (241, 1031, 4, NULL), (242, 1032, 4, NULL), (243, 1033, 4, NULL), (244, 1034, 4, NULL), (245, 1035, 4, NULL), (246, 1036, 4, NULL), (247, 1003, 4, NULL), (248, 1004, 4, NULL), (249, 1005, 4, NULL), (250, 1006, 4, NULL), (251, 1007, 4, NULL), (252, 1008, 4, NULL), (253, 1009, 4, NULL), (254, 1010, 4, NULL), (255, 1011, 4, NULL), (256, 1012, 4, NULL), (257, 1013, 4, NULL), (258, 1014, 4, NULL), (259, 1015, 4, NULL), (260, 1016, 4, NULL), (261, 1017, 4, NULL), (263, 1254, 16, NULL), (264, 1255, 16, NULL), (265, 1256, 16, NULL), (266, 1257, 16, NULL), (267, 1258, 16, NULL), (268, 1259, 16, NULL), (269, 1260, 16, NULL), (270, 1261, 16, NULL), (271, 1262, 16, NULL), (272, 1263, 16, NULL), (273, 1264, 16, NULL), (274, 1265, 16, NULL), (275, 1266, 16, NULL), (276, 1267, 16, NULL), (277, 1268, 16, NULL), (278, 1269, 16, NULL), (279, 1270, 16, NULL), (280, 1271, 16, NULL), (281, 1272, 16, NULL), (282, 1273, 16, NULL), (283, 1274, 16, NULL), (284, 1275, 16, NULL), (285, 1276, 16, NULL), (286, 1277, 16, NULL), (287, 1278, 16, NULL), (288, 1279, 16, NULL), (289, 1280, 16, NULL), (290, 1281, 16, NULL), (291, 1282, 16, NULL), (292, 1283, 16, NULL), (293, 1284, 16, NULL), (294, 1285, 16, NULL), (295, 1286, 16, NULL), (296, 1287, 16, NULL), (297, 1288, 16, NULL), (298, 1289, 16, NULL), (299, 1290, 16, NULL), (300, 1291, 16, NULL), (301, 1292, 16, NULL), (302, 1293, 16, NULL), (303, 1294, 16, NULL), (304, 1295, 16, NULL), (305, 1296, 16, NULL), (306, 1297, 16, NULL), (307, 1298, 16, NULL), (308, 1299, 16, NULL), (309, 1300, 16, NULL), (310, 1301, 16, NULL), (311, 1302, 16, NULL), (312, 1303, 16, NULL), (313, 1304, 16, NULL), (314, 1305, 16, NULL), (315, 1306, 16, NULL), (316, 1307, 16, NULL), (317, 1308, 16, NULL), (318, 1309, 16, NULL), (319, 1310, 16, NULL), (320, 1311, 16, NULL), (321, 1312, 16, NULL), (322, 1313, 16, NULL), (323, 1314, 16, NULL), (324, 1315, 16, NULL), (325, 1316, 16, NULL), (326, 1317, 16, NULL), (327, 1318, 16, NULL), (328, 1319, 16, NULL), (329, 1320, 16, NULL), (330, 1321, 16, NULL), (331, 1322, 16, NULL), (332, 1323, 16, NULL), (333, 1324, 16, NULL), (334, 1325, 16, NULL), (335, 1326, 16, NULL), (336, 1327, 16, NULL), (337, 1328, 16, NULL), (338, 1329, 16, NULL), (339, 1330, 16, NULL), (340, 1331, 16, NULL), (341, 1332, 16, NULL), (342, 1333, 16, NULL), (343, 1334, 16, NULL), (344, 1335, 16, NULL), (345, 1336, 16, NULL), (346, 1337, 16, NULL), (347, 1338, 16, NULL), (348, 1339, 16, NULL), (349, 1340, 16, NULL), (350, 1341, 16, NULL), (351, 1342, 16, NULL), (352, 1343, 16, NULL), (353, 1344, 16, NULL), (354, 1345, 16, NULL), (355, 1346, 16, NULL), (356, 1347, 16, NULL), (357, 1348, 16, NULL), (358, 1349, 16, NULL), (359, 1350, 16, NULL), (360, 1351, 16, NULL), (361, 1352, 16, NULL), (362, 1353, 16, NULL), (363, 1354, 16, NULL), (364, 1355, 16, NULL), (365, 1356, 16, NULL), (366, 1357, 16, NULL), (367, 1358, 16, NULL), (368, 1359, 16, NULL), (369, 1360, 16, NULL), (370, 1361, 16, NULL), (371, 1362, 16, NULL), (372, 1363, 16, NULL), (373, 1364, 16, NULL), (374, 1365, 16, NULL), (375, 1366, 16, NULL), (376, 1367, 16, NULL), (377, 1368, 16, NULL), (378, 1369, 16, NULL), (379, 1370, 16, NULL), (380, 1371, 16, NULL), (381, 1372, 16, NULL), (382, 1373, 16, NULL), (383, 1374, 16, NULL), (384, 1375, 16, NULL), (385, 1376, 16, NULL), (386, 1377, 16, NULL), (387, 1378, 16, NULL), (388, 1379, 16, NULL), (389, 1380, 16, NULL), (390, 1381, 16, NULL), (391, 1382, 16, NULL), (392, 1383, 16, NULL), (393, 1384, 16, NULL), (394, 1385, 16, NULL), (395, 1386, 16, NULL), (396, 1387, 16, NULL), (397, 1388, 16, NULL), (398, 1389, 16, NULL), (399, 1390, 16, NULL), (400, 1391, 16, NULL), (401, 1392, 16, NULL), (402, 1393, 16, NULL), (403, 1394, 16, NULL), (404, 1395, 16, NULL), (405, 1396, 16, NULL), (406, 1397, 16, NULL), (407, 1398, 16, NULL), (408, 1399, 16, NULL), (409, 1400, 16, NULL), (410, 1401, 16, NULL), (411, 1402, 16, NULL), (412, 1403, 16, NULL), (413, 1404, 16, NULL), (414, 1405, 16, NULL), (415, 1406, 16, NULL), (416, 1407, 16, NULL), (417, 1408, 16, NULL), (418, 1409, 16, NULL), (419, 1410, 16, NULL), (420, 1411, 16, NULL), (421, 1412, 16, NULL), (422, 1413, 16, NULL), (423, 1414, 16, NULL), (424, 1415, 16, NULL), (425, 1416, 16, NULL), (426, 1417, 16, NULL), (427, 1418, 16, NULL), (428, 1419, 16, NULL), (429, 1420, 16, NULL), (430, 1421, 16, NULL), (431, 1422, 16, NULL), (432, 1423, 16, NULL), (433, 1876, 16, NULL), (434, 1877, 16, NULL), (435, 1878, 16, NULL), (436, 1879, 16, NULL), (437, 1880, 16, NULL), (464, 1425, 2, NULL), (465, 1426, 2, NULL), (466, 1427, 2, NULL), (467, 1428, 2, NULL), (468, 1429, 2, NULL), (469, 1430, 2, NULL), (470, 1431, 2, NULL), (471, 1432, 2, NULL), (472, 1433, 2, NULL), (473, 1434, 2, NULL), (474, 1435, 2, NULL), (475, 1436, 2, NULL), (476, 1437, 2, NULL), (477, 1438, 2, NULL), (478, 1439, 2, NULL), (479, 1440, 2, NULL), (480, 1441, 2, NULL), (481, 1442, 2, NULL), (482, 1443, 2, NULL), (483, 1444, 2, NULL), (484, 1445, 2, NULL), (485, 1446, 2, NULL), (486, 1447, 2, NULL), (487, 1448, 2, NULL), (488, 1449, 2, NULL), (489, 1450, 2, NULL), (490, 1451, 2, NULL), (491, 1452, 2, NULL), (492, 1453, 2, NULL), (493, 1454, 2, NULL), (494, 1455, 2, NULL), (495, 1456, 2, NULL), (496, 1457, 2, NULL), (497, 1458, 2, NULL), (498, 1459, 2, NULL), (499, 1460, 2, NULL), (500, 1461, 2, NULL), (501, 1462, 2, NULL), (502, 1463, 2, NULL), (503, 1464, 2, NULL), (504, 1465, 2, NULL), (505, 1466, 2, NULL), (506, 1467, 2, NULL), (507, 1468, 2, NULL), (508, 1469, 2, NULL), (509, 1470, 2, NULL), (510, 1471, 2, NULL), (511, 1472, 2, NULL), (512, 1473, 2, NULL), (513, 1474, 2, NULL), (514, 1475, 2, NULL), (515, 1476, 2, NULL), (516, 1477, 2, NULL), (517, 1478, 2, NULL), (518, 1479, 2, NULL), (519, 1480, 2, NULL), (520, 1481, 2, NULL), (521, 1482, 2, NULL), (522, 1483, 2, NULL), (523, 1484, 2, NULL), (524, 1485, 2, NULL), (525, 1486, 2, NULL), (526, 1487, 2, NULL), (527, 1488, 2, NULL), (528, 1489, 2, NULL), (529, 1490, 2, NULL), (530, 1491, 2, NULL), (531, 1492, 2, NULL), (532, 1493, 2, NULL), (533, 1494, 2, NULL), (534, 1495, 2, NULL), (535, 1496, 2, NULL), (536, 1497, 2, NULL), (537, 1498, 2, NULL), (538, 1499, 2, NULL), (539, 1500, 2, NULL), (540, 1501, 2, NULL), (541, 1502, 2, NULL), (542, 1503, 2, NULL), (543, 1504, 2, NULL), (544, 1505, 2, NULL), (545, 1506, 2, NULL), (546, 1507, 2, NULL), (547, 1508, 2, NULL), (548, 1509, 2, NULL), (549, 1510, 2, NULL), (550, 1511, 2, NULL), (551, 1512, 2, NULL), (552, 1513, 2, NULL), (553, 1514, 2, NULL), (554, 1515, 2, NULL), (555, 1516, 2, NULL), (556, 1517, 2, NULL), (557, 1518, 2, NULL), (558, 1519, 2, NULL), (559, 1520, 2, NULL), (560, 1521, 2, NULL), (561, 1522, 2, NULL), (562, 1523, 2, NULL), (563, 1524, 2, NULL), (564, 1525, 2, NULL), (565, 1526, 2, NULL), (566, 1527, 2, NULL), (567, 1528, 2, NULL), (568, 1529, 2, NULL), (569, 1530, 2, NULL), (570, 1531, 2, NULL), (571, 1532, 2, NULL), (572, 1533, 2, NULL), (573, 1534, 2, NULL), (574, 1535, 2, NULL), (575, 1536, 2, NULL), (576, 1537, 2, NULL), (577, 1538, 2, NULL), (578, 1539, 2, NULL), (579, 1540, 2, NULL), (580, 1541, 2, NULL), (581, 1542, 2, NULL), (582, 1543, 2, NULL), (583, 1544, 2, NULL), (584, 1545, 2, NULL), (585, 1546, 2, NULL), (586, 1547, 2, NULL), (587, 1548, 2, NULL), (588, 1549, 2, NULL), (589, 1550, 2, NULL), (590, 1551, 2, NULL), (591, 1552, 2, NULL), (592, 1553, 2, NULL), (593, 1554, 2, NULL), (594, 1555, 2, NULL), (595, 1556, 2, NULL), (596, 1557, 2, NULL), (597, 1558, 2, NULL), (598, 1559, 2, NULL), (599, 1560, 2, NULL), (600, 1561, 2, NULL), (601, 1562, 2, NULL), (602, 1563, 2, NULL), (603, 1564, 2, NULL), (604, 1565, 2, NULL), (605, 1566, 2, NULL), (606, 1567, 2, NULL), (607, 1568, 2, NULL), (608, 1569, 2, NULL), (609, 1570, 2, NULL), (610, 1571, 2, NULL), (611, 1572, 2, NULL), (612, 1573, 2, NULL), (613, 1574, 2, NULL), (614, 1575, 2, NULL), (615, 1576, 2, NULL), (616, 1577, 2, NULL), (617, 1578, 2, NULL), (618, 1579, 2, NULL), (619, 1580, 2, NULL), (620, 1581, 2, NULL), (621, 1582, 2, NULL), (622, 1583, 2, NULL), (623, 1584, 2, NULL), (624, 1585, 2, NULL), (625, 1586, 2, NULL), (626, 1587, 2, NULL), (627, 1588, 2, NULL), (628, 1589, 2, NULL), (629, 1590, 2, NULL), (630, 1591, 2, NULL), (631, 1592, 2, NULL), (632, 1593, 2, NULL), (633, 1594, 2, NULL), (634, 1595, 2, NULL), (635, 1596, 2, NULL), (636, 1597, 2, NULL), (637, 1598, 2, NULL), (638, 1599, 2, NULL), (639, 1600, 2, NULL), (640, 1601, 2, NULL), (641, 1602, 2, NULL), (642, 1603, 2, NULL), (643, 1604, 2, NULL), (644, 1605, 2, NULL), (645, 1606, 2, NULL), (646, 1607, 2, NULL), (647, 1608, 2, NULL), (648, 1609, 2, NULL), (649, 1610, 2, NULL), (650, 1611, 2, NULL), (651, 1612, 2, NULL), (652, 1613, 2, NULL), (653, 1614, 2, NULL), (654, 1615, 2, NULL), (655, 1616, 2, NULL), (656, 1617, 2, NULL), (657, 1881, 2, NULL), (658, 1882, 2, NULL), (659, 1883, 2, NULL), (660, 1884, 2, NULL), (661, 1885, 2, NULL), (687, 1590, 12, NULL), (688, 1591, 12, NULL), (689, 1592, 12, NULL), (690, 1593, 12, NULL), (691, 1594, 12, NULL), (692, 1595, 12, NULL), (693, 1596, 12, NULL), (694, 1597, 12, NULL), (695, 1598, 12, NULL), (696, 1599, 12, NULL), (697, 1600, 12, NULL), (698, 1601, 12, NULL), (699, 1602, 12, NULL), (700, 1603, 12, NULL), (701, 1604, 12, NULL), (702, 1605, 12, NULL), (703, 1606, 12, NULL), (704, 1607, 12, NULL), (705, 1608, 12, NULL), (706, 1609, 12, NULL), (707, 1881, 12, NULL), (708, 1610, 18, NULL), (709, 1611, 18, NULL), (710, 1882, 18, NULL), (711, 1612, 2, 19), (712, 1613, 2, 19), (713, 1614, 2, 19), (714, 1615, 2, 19), (715, 1616, 2, 19), (716, 1883, 2, 19), (718, 1620, 8, NULL), (719, 1621, 8, NULL), (720, 1622, 8, NULL), (721, 1623, 8, NULL), (722, 1624, 8, NULL), (723, 1625, 8, NULL), (724, 1626, 8, NULL), (725, 1627, 8, NULL), (726, 1628, 8, NULL), (727, 1629, 8, NULL), (728, 1630, 8, NULL), (729, 1631, 8, NULL), (730, 1632, 8, NULL), (731, 1633, 8, NULL), (732, 1634, 8, NULL), (733, 1635, 8, NULL), (734, 1636, 8, NULL), (735, 1637, 8, NULL), (736, 1638, 8, NULL), (737, 1639, 8, NULL), (738, 1640, 8, NULL), (739, 1641, 8, NULL), (740, 1642, 8, NULL), (741, 1643, 8, NULL), (742, 1644, 8, NULL), (743, 1645, 8, NULL), (744, 1646, 8, NULL), (745, 1647, 8, NULL), (746, 1648, 8, NULL), (747, 1649, 8, NULL), (748, 1650, 8, NULL), (749, 1651, 8, NULL), (750, 1652, 8, NULL), (751, 1653, 8, NULL), (752, 1654, 8, NULL), (753, 1655, 8, NULL), (754, 1656, 8, NULL), (755, 1657, 8, NULL), (756, 1658, 8, NULL), (757, 1659, 8, NULL), (758, 1660, 8, NULL), (759, 1661, 8, NULL), (760, 1662, 8, NULL), (761, 1663, 8, NULL), (762, 1664, 8, NULL), (763, 1665, 8, NULL), (764, 1666, 8, NULL), (765, 1667, 8, NULL), (766, 1668, 8, NULL), (767, 1669, 8, NULL), (768, 1670, 8, NULL), (769, 1671, 8, NULL), (770, 1672, 8, NULL), (771, 1673, 8, NULL), (772, 1674, 8, NULL), (773, 1675, 8, NULL), (774, 1676, 8, NULL), (775, 1677, 8, NULL), (776, 1678, 8, NULL), (777, 1679, 8, NULL), (778, 1680, 8, NULL), (779, 1681, 8, NULL), (780, 1682, 8, NULL), (781, 1683, 8, NULL), (782, 1684, 8, NULL), (783, 1685, 8, NULL), (784, 1686, 8, NULL), (785, 1687, 8, NULL), (786, 1688, 8, NULL), (787, 1689, 8, NULL), (788, 1690, 8, NULL), (789, 1691, 8, NULL), (790, 1692, 8, NULL), (791, 1693, 8, NULL), (792, 1694, 8, NULL), (793, 1695, 8, NULL), (794, 1696, 8, NULL), (795, 1697, 8, NULL), (796, 1698, 8, NULL), (797, 1699, 8, NULL), (798, 1700, 8, NULL), (799, 1701, 8, NULL), (800, 1702, 8, NULL), (801, 1703, 8, NULL), (802, 1886, 8, NULL), (803, 1887, 8, NULL), (804, 1888, 8, NULL), (805, 1889, 8, NULL), (806, 1890, 8, NULL), (807, 1891, 8, NULL), (841, 1894, 9, NULL), (847, 1706, 15, NULL), (848, 1713, 15, NULL), (849, 1718, 15, NULL), (850, 1726, 15, NULL), (851, 1730, 15, NULL), (852, 1742, 15, NULL), (853, 1743, 15, NULL), (854, 1744, 15, NULL), (855, 1745, 15, NULL), (856, 1746, 15, NULL), (857, 1747, 15, NULL), (858, 1748, 15, NULL), (859, 1749, 15, NULL), (860, 1750, 15, NULL), (861, 1751, 15, NULL), (862, 1752, 15, NULL), (863, 1753, 15, NULL), (864, 1754, 15, NULL), (865, 1755, 15, NULL), (866, 1756, 15, NULL), (867, 1757, 15, NULL), (868, 1758, 15, NULL), (869, 1759, 15, NULL), (870, 1760, 15, NULL), (871, 1761, 15, NULL), (872, 1762, 15, NULL), (873, 1731, 15, NULL), (874, 1732, 15, NULL), (875, 1733, 15, NULL), (876, 1734, 15, NULL), (877, 1735, 15, NULL), (878, 1736, 15, NULL), (879, 1737, 15, NULL), (880, 1738, 15, NULL), (881, 1739, 15, NULL), (882, 1740, 15, NULL), (883, 1741, 15, NULL), (884, 1727, 15, NULL), (885, 1728, 15, NULL), (886, 1729, 15, NULL), (887, 1719, 15, NULL), (888, 1720, 15, NULL), (889, 1721, 15, NULL), (890, 1722, 15, NULL), (891, 1723, 15, NULL), (892, 1724, 15, NULL), (893, 1725, 15, NULL), (894, 1714, 15, NULL), (895, 1715, 15, NULL), (896, 1716, 15, NULL), (897, 1717, 15, NULL), (898, 1707, 15, NULL), (899, 1708, 15, NULL), (900, 1709, 15, NULL), (901, 1710, 15, NULL), (902, 1711, 15, NULL), (903, 1712, 15, NULL), (905, 1763, 14, NULL), (906, 1764, 14, NULL), (907, 1765, 14, NULL), (908, 1766, 14, NULL), (909, 1767, 14, NULL), (910, 1771, 14, NULL), (911, 1775, 14, NULL), (912, 1782, 14, NULL), (913, 1791, 14, NULL), (914, 1800, 14, NULL), (915, 1801, 14, NULL), (916, 1802, 14, NULL), (917, 1803, 14, NULL), (918, 1792, 14, NULL), (919, 1793, 14, NULL), (920, 1794, 14, NULL), (921, 1795, 14, NULL), (922, 1796, 14, NULL), (923, 1797, 14, NULL), (924, 1798, 14, NULL), (925, 1799, 14, NULL), (926, 1783, 14, NULL), (927, 1784, 14, NULL), (928, 1785, 14, NULL), (929, 1786, 14, NULL), (930, 1787, 14, NULL), (931, 1788, 14, NULL), (932, 1789, 14, NULL), (933, 1790, 14, NULL), (934, 1776, 14, NULL), (935, 1777, 14, NULL), (936, 1778, 14, NULL), (937, 1779, 14, NULL), (938, 1780, 14, NULL), (939, 1781, 14, NULL), (940, 1772, 14, NULL), (941, 1773, 14, NULL), (942, 1774, 14, NULL), (943, 1768, 14, NULL), (944, 1769, 14, NULL), (945, 1770, 14, NULL), (947, 1804, 13, NULL), (948, 1813, 13, NULL), (949, 1816, 13, NULL), (950, 1819, 13, NULL), (951, 1821, 13, NULL), (952, 1825, 13, NULL), (953, 1829, 13, NULL), (954, 1833, 13, NULL), (955, 1838, 13, NULL), (956, 1845, 13, NULL), (957, 1852, 13, NULL), (958, 1858, 13, NULL), (959, 1861, 13, NULL), (960, 1862, 13, NULL), (961, 1863, 13, NULL), (962, 1864, 13, NULL), (963, 1865, 13, NULL), (964, 1859, 13, NULL), (965, 1860, 13, NULL), (966, 1853, 13, NULL), (967, 1854, 13, NULL), (968, 1855, 13, NULL), (969, 1856, 13, NULL), (970, 1857, 13, NULL), (971, 1846, 13, NULL), (972, 1847, 13, NULL), (973, 1848, 13, NULL), (974, 1849, 13, NULL), (975, 1850, 13, NULL), (976, 1851, 13, NULL), (977, 1839, 13, NULL), (978, 1840, 13, NULL), (979, 1841, 13, NULL), (980, 1842, 13, NULL), (981, 1843, 13, NULL), (982, 1844, 13, NULL), (983, 1834, 13, NULL), (984, 1835, 13, NULL), (985, 1836, 13, NULL), (986, 1837, 13, NULL), (987, 1830, 13, NULL), (988, 1831, 13, NULL), (989, 1832, 13, NULL), (990, 1826, 13, NULL), (991, 1827, 13, NULL), (992, 1828, 13, NULL), (993, 1822, 13, NULL), (994, 1823, 13, NULL), (995, 1824, 13, NULL), (996, 1820, 13, NULL), (997, 1817, 13, NULL), (998, 1818, 13, NULL), (999, 1814, 13, NULL), (1000, 1815, 13, NULL), (1001, 1805, 13, NULL), (1002, 1806, 13, NULL), (1003, 1807, 13, NULL), (1004, 1808, 13, NULL), (1005, 1809, 13, NULL), (1006, 1810, 13, NULL), (1007, 1811, 13, NULL), (1008, 1812, 13, NULL), (1286, 1687, 9, NULL), (1287, 1688, 9, NULL), (1288, 1689, 9, NULL), (1289, 1690, 9, NULL), (1290, 1691, 9, NULL), (1291, 1692, 9, NULL), (1292, 1693, 9, NULL), (1293, 1694, 9, NULL), (1294, 1695, 9, NULL), (1295, 1696, 9, NULL), (1296, 1697, 9, NULL), (1297, 1698, 9, NULL), (1298, 1699, 9, NULL), (1299, 1700, 9, NULL), (1300, 1701, 9, NULL), (1301, 1702, 9, NULL), (1302, 1703, 9, NULL); SET IDENTITY_INSERT Sources.SectionWeaponMap ON; MERGE INTO Sources.SectionWeaponMap t USING @SectionWeaponMap s ON t.SectionWeaponMapKey = s.SectionWeaponMapKey WHEN NOT MATCHED THEN INSERT ( SectionWeaponMapKey, SectionKey, PrimaryWeaponKey, SecondaryWeaponKey ) VALUES (s.SectionWeaponMapKey, s.SectionKey, s.PrimaryWeaponKey, s.SecondaryWeaponKey) WHEN MATCHED THEN UPDATE SET t.SectionKey = s.SectionKey, t.PrimaryWeaponKey = s.PrimaryWeaponKey, t.SecondaryWeaponKey = s.SecondaryWeaponKey; SET IDENTITY_INSERT Sources.SectionWeaponMap OFF; END; GO
name: pair version: 1.30 description: Product types author: Joe Leslie-Hurd <joe@gilith.com> license: MIT requires: bool requires: function show: "Data.Bool" show: "Data.Pair" def { package: pair-def-1.24 } thm { import: def package: pair-thm-1.31 } main { import: def import: thm }
// Copyright 2022 The gVisor Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. syntax = "proto3"; package gvisor.common; message Credentials { uint32 real_uid = 1; uint32 effective_uid = 2; uint32 saved_uid = 3; uint32 real_gid = 4; uint32 effective_gid = 5; uint32 saved_gid = 6; } message ContextData { int64 time_ns = 1; int32 thread_id = 2; int64 thread_start_time_ns = 3; int32 thread_group_id = 4; int64 thread_group_start_time_ns = 5; string container_id = 6; Credentials credentials = 7; string cwd = 8; string process_name = 9; } enum MessageType { MESSAGE_UNKNOWN = 0; MESSAGE_CONTAINER_START = 1; MESSAGE_SENTRY_CLONE = 2; MESSAGE_SENTRY_EXEC = 3; MESSAGE_SENTRY_EXIT_NOTIFY_PARENT = 4; MESSAGE_SENTRY_TASK_EXIT = 5; MESSAGE_SYSCALL_RAW = 6; MESSAGE_SYSCALL_OPEN = 7; MESSAGE_SYSCALL_CLOSE = 8; MESSAGE_SYSCALL_READ = 9; MESSAGE_SYSCALL_CONNECT = 10; MESSAGE_SYSCALL_EXECVE = 11; MESSAGE_SYSCALL_SOCKET = 12; }
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <title>Head</title> <style media="screen" type="text/css"> body { color: #000000; background-color: #FFFFFF; } /* Link formats: use maroon w/underlines */ a:link { color: navy; text-decoration: underline; } a:visited { color: maroon; text-decoration: underline; } a:active { color: navy; text-decoration: underline; } /*** TD formats ***/ td { font-family: sans-serif; } td.title { text-align: center; padding-bottom: 10px; font-size: 20pt; font-weight: bold; } /* TD Header Information */ td.headerName { text-align: right; color: black; padding-right: 6px; font-weight: bold; vertical-align: top; white-space: nowrap; } td.headerValue { text-align: left; color: blue; font-weight: bold; white-space: nowrap; } td.headerTableEntry { text-align: right; color: black; font-weight: bold; white-space: nowrap; padding-left: 12px; padding-right: 4px; background-color: LightBlue; } td.headerValueLeg { text-align: left; color: black; font-size: 80%; white-space: nowrap; padding-left: 10px; padding-right: 10px; padding-top: 2px; } /* Color of horizontal ruler */ td.hr { background-color: navy; height:3px; } /* Footer format */ td.footer { text-align: center; padding-top: 3px; font-family: sans-serif; } /* Coverage Table */ td.coverTableHead { text-align: center; color: white; background-color: SteelBlue; font-family: sans-serif; font-size: 120%; white-space: nowrap; padding-left: 4px; padding-right: 4px; } td.coverFile { text-align: left; padding-left: 10px; padding-right: 20px; color: black; background-color: LightBlue; font-family: monospace; font-weight: bold; font-size: 110%; } td.coverBar { padding-left: 10px; padding-right: 10px; background-color: LightBlue; } td.coverBarOutline { background-color: white; } td.coverValue { padding-top: 2px; text-align: right; padding-left: 10px; padding-right: 10px; font-family: sans-serif; white-space: nowrap; font-weight: bold; } /* Link Details */ a.detail:link { color: #B8D0FF; font-size:80%; } a.detail:visited { color: #B8D0FF; font-size:80%; } a.detail:active { color: #FFFFFF; font-size:80%; } .graphcont{ color:#000; font-weight:700; float:left } .graph{ float:left; background-color: white; position:relative; width:280px; padding:0 } .graph .bar{ display:block; position:relative; border:black 1px solid; text-align:center; color:#fff; height:10px; font-family:Arial,Helvetica,sans-serif; font-size:12px; line-height:1.9em } .graph .bar span{ position:absolute; left:1em } td.coveredLine, span.coveredLine { background-color: LightGreen!important; } td.uncoveredLine, span.uncoveredLine { background-color: LightPink!important; } .linebranch, .linecount { border-right: 1px gray solid; background-color: lightgray; } span.takenBranch { color: Green!important; cursor: help; } span.notTakenBranch { color: Red!important; cursor: help; } .src { padding-left: 12px; } .srcHeader, span.takenBranch, span.notTakenBranch { font-family: monospace; font-weight: bold; } pre { height : 15px; margin-top: 0; margin-bottom: 0; } .lineno { background-color: #EFE383; border-right: 1px solid #BBB15F; } </style> </head> <body> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr><td class="title">GCC Code Coverage Report</td></tr> <tr><td class="hr"></td></tr> <tr> <td width="100%"> <table cellpadding="1" border="0" width="100%"> <tr> <td width="10%" class="headerName">Directory:</td> <td width="35%" class="headerValue">./</td> <td width="5%"></td> <td width="15%"></td> <td width="10%" class="headerValue" style="text-align:right;">Exec</td> <td width="10%" class="headerValue" style="text-align:right;">Total</td> <td width="15%" class="headerValue" style="text-align:right;">Coverage</td> </tr> <tr> <td class="headerName">File:</td> <td class="headerValue">src/catkin/dg_control/dg_tools/src/data/previous_value.cpp</td> <td></td> <td class="headerName">Lines:</td> <td class="headerTableEntry">24</td> <td class="headerTableEntry">27</td> <td class="headerTableEntry" style="background-color:#FFFF55">88.9 %</td> </tr> <tr> <td class="headerName">Date:</td> <td class="headerValue">2020-04-15 11:50:02</td> <td></td> <td class="headerName">Branches:</td> <td class="headerTableEntry">33</td> <td class="headerTableEntry">66</td> <td class="headerTableEntry" style="background-color:LightPink">50.0 %</td> </tr> </table> </td> </tr> <tr><td class="hr"></td></tr> </table> <br> <table cellspacing="0" cellpadding="1"> <tr> <td width="5%" align="right" class="srcHeader">Line</td> <td width="5%" align="right" class="srcHeader">Branch</td> <td width="5%" align="right" class="srcHeader">Exec</td> <td width="75%" align="left" class="srcHeader src">Source</td> </tr> <tr> <td align="right" class="lineno"><pre>1</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>/**</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>2</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre> * Copyright 2019 Max Planck Society. All rights reserved.</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>3</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre> * Julian Viereck</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>4</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre> */</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>5</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre></pre></td> </tr> <tr> <td align="right" class="lineno"><pre>6</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>#include "dg_tools/data/previous_value.hpp"</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>7</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre></pre></td> </tr> <tr> <td align="right" class="lineno"><pre>8</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>/* --------------------------------------------------------------------- */</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>9</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>/* --------------------------------------------------------------------- */</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>10</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>/* --------------------------------------------------------------------- */</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>11</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>#include &lt;sot/core/debug.hh></pre></td> </tr> <tr> <td align="right" class="lineno"><pre>12</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>#include &lt;dynamic-graph/factory.h></pre></td> </tr> <tr> <td align="right" class="lineno"><pre>13</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>#include &lt;dynamic-graph/all-commands.h></pre></td> </tr> <tr> <td align="right" class="lineno"><pre>14</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre></pre></td> </tr> <tr> <td align="right" class="lineno"><pre>15</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>using namespace dg_tools;</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>16</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre></pre></td> </tr> <tr> <td align="right" class="lineno"><pre>17</pre></td> <td align="right" class="linebranch"><span class="takenBranch" title="Branch 2 taken 2 times">&check;</span><span class="notTakenBranch" title="Branch 3 not taken">&cross;</span><span class="takenBranch" title="Branch 8 taken 2 times">&check;</span><span class="notTakenBranch" title="Branch 9 not taken">&cross;</span><br/><span class="takenBranch" title="Branch 11 taken 2 times">&check;</span><span class="notTakenBranch" title="Branch 12 not taken">&cross;</span><span class="takenBranch" title="Branch 22 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 23 not taken">&cross;</span><br/></td> <td align="right" class="linecount coveredLine"><pre>3</pre></td> <td align="left" class="src coveredLine"><pre>DYNAMICGRAPH_FACTORY_ENTITY_PLUGIN(PreviousValue, "PreviousValue");</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>18</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre></pre></td> </tr> <tr> <td align="right" class="lineno"><pre>19</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>/* --------------------------------------------------------------------- */</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>20</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>/* --------------------------------------------------------------------- */</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>21</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>/* --------------------------------------------------------------------- */</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>22</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre></pre></td> </tr> <tr> <td align="right" class="lineno"><pre>23</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount coveredLine"><pre>1</pre></td> <td align="left" class="src coveredLine"><pre>PreviousValue::PreviousValue( const std::string &amp; name )</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>24</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre> :Entity(name)</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>25</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre> ,size_(0)</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>26</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre> ,is_initialized_(false)</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>27</pre></td> <td align="right" class="linebranch"><span class="takenBranch" title="Branch 1 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 2 not taken">&cross;</span><span class="takenBranch" title="Branch 4 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 5 not taken">&cross;</span><br/></td> <td align="right" class="linecount coveredLine"><pre>2</pre></td> <td align="left" class="src coveredLine"><pre> ,dataSIN(NULL,"PreviousValue("+name+")::input(vector)::sin")</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>28</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre> ,dataSOUT( boost::bind(&amp;PreviousValue::getInput,this,_1,_2),</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>29</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre> dataSIN,</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>30</pre></td> <td align="right" class="linebranch"><span class="takenBranch" title="Branch 1 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 2 not taken">&cross;</span><span class="takenBranch" title="Branch 4 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 5 not taken">&cross;</span><br/></td> <td align="right" class="linecount coveredLine"><pre>2</pre></td> <td align="left" class="src coveredLine"><pre> "PreviousValue("+name+")::output(vector)::sout" )</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>31</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre> ,previousSOUT( boost::bind(&amp;PreviousValue::getPrevious,this,_1,_2),</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>32</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre> dataSIN,</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>33</pre></td> <td align="right" class="linebranch"><span class="takenBranch" title="Branch 2 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 3 not taken">&cross;</span><span class="takenBranch" title="Branch 5 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 6 not taken">&cross;</span><br/><span class="takenBranch" title="Branch 8 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 9 not taken">&cross;</span><span class="takenBranch" title="Branch 11 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 12 not taken">&cross;</span><br/><span class="takenBranch" title="Branch 14 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 15 not taken">&cross;</span><span class="takenBranch" title="Branch 19 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 20 not taken">&cross;</span><br/><span class="takenBranch" title="Branch 22 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 23 not taken">&cross;</span><span class="takenBranch" title="Branch 25 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 26 not taken">&cross;</span><br/><span class="takenBranch" title="Branch 28 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 29 not taken">&cross;</span><span class="takenBranch" title="Branch 31 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 32 not taken">&cross;</span><br/><span class="takenBranch" title="Branch 34 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 35 not taken">&cross;</span><span class="takenBranch" title="Branch 41 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 42 not taken">&cross;</span><br/></td> <td align="right" class="linecount coveredLine"><pre>4</pre></td> <td align="left" class="src coveredLine"><pre> "PreviousValue("+name+")::output(vector)::sprev" )</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>34</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>{</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>35</pre></td> <td align="right" class="linebranch"><span class="takenBranch" title="Branch 1 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 2 not taken">&cross;</span><span class="takenBranch" title="Branch 4 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 5 not taken">&cross;</span><br/><span class="takenBranch" title="Branch 7 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 8 not taken">&cross;</span></td> <td align="right" class="linecount coveredLine"><pre>1</pre></td> <td align="left" class="src coveredLine"><pre> Entity::signalRegistration(dataSIN &lt;&lt; dataSOUT &lt;&lt; previousSOUT);</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>36</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre></pre></td> </tr> <tr> <td align="right" class="lineno"><pre>37</pre></td> <td align="right" class="linebranch"><span class="takenBranch" title="Branch 2 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 3 not taken">&cross;</span></td> <td align="right" class="linecount coveredLine"><pre>3</pre></td> <td align="left" class="src coveredLine"><pre> addCommand (</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>38</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre> "init",</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>39</pre></td> <td align="right" class="linebranch"><span class="takenBranch" title="Branch 1 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 2 not taken">&cross;</span></td> <td align="right" class="linecount coveredLine"><pre>1</pre></td> <td align="left" class="src coveredLine"><pre> dynamicgraph::command::makeCommandVoid1(</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>40</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre> *this,</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>41</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre> &amp;PreviousValue::init,</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>42</pre></td> <td align="right" class="linebranch"><span class="takenBranch" title="Branch 2 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 3 not taken">&cross;</span><span class="takenBranch" title="Branch 6 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 7 not taken">&cross;</span><br/><span class="takenBranch" title="Branch 9 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 10 not taken">&cross;</span></td> <td align="right" class="linecount coveredLine"><pre>2</pre></td> <td align="left" class="src coveredLine"><pre> dynamicgraph::command::docCommandVoid1(</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>43</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre> "Init the entity",</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>44</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre> "int: Dimension of the stored value.")</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>45</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre> )</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>46</pre></td> <td align="right" class="linebranch"><span class="takenBranch" title="Branch 1 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 2 not taken">&cross;</span></td> <td align="right" class="linecount coveredLine"><pre>1</pre></td> <td align="left" class="src coveredLine"><pre> );</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>47</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount coveredLine"><pre>1</pre></td> <td align="left" class="src coveredLine"><pre>}</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>48</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre></pre></td> </tr> <tr> <td align="right" class="lineno"><pre>49</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount coveredLine"><pre>1</pre></td> <td align="left" class="src coveredLine"><pre>void PreviousValue::init(const int&amp; size)</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>50</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>{</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>51</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount coveredLine"><pre>1</pre></td> <td align="left" class="src coveredLine"><pre> internal_history_.resize(size);</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>52</pre></td> <td align="right" class="linebranch"><span class="takenBranch" title="Branch 1 taken 1 times">&check;</span><span class="notTakenBranch" title="Branch 2 not taken">&cross;</span></td> <td align="right" class="linecount coveredLine"><pre>1</pre></td> <td align="left" class="src coveredLine"><pre> internal_history_.fill(0.);</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>53</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount coveredLine"><pre>1</pre></td> <td align="left" class="src coveredLine"><pre>}</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>54</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre></pre></td> </tr> <tr> <td align="right" class="lineno"><pre>55</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre></pre></td> </tr> <tr> <td align="right" class="lineno"><pre>56</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>/* --------------------------------------------------------------------- */</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>57</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>/* --------------------------------------------------------------------- */</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>58</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>/* --------------------------------------------------------------------- */</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>59</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre></pre></td> </tr> <tr> <td align="right" class="lineno"><pre>60</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount uncoveredLine"><pre></pre></td> <td align="left" class="src uncoveredLine"><pre>void PreviousValue::display( std::ostream&amp; os ) const</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>61</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>{</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>62</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount uncoveredLine"><pre></pre></td> <td align="left" class="src uncoveredLine"><pre> os &lt;&lt; "PreviousValue " &lt;&lt; getName();</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>63</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount uncoveredLine"><pre></pre></td> <td align="left" class="src uncoveredLine"><pre> os &lt;&lt;" (" &lt;&lt; internal_history_.size() &lt;&lt; ") ";</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>64</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>}</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>65</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre></pre></td> </tr> <tr> <td align="right" class="lineno"><pre>66</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount coveredLine"><pre>1</pre></td> <td align="left" class="src coveredLine"><pre>dg::Vector&amp; PreviousValue::getInput(dg::Vector&amp; output, int time)</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>67</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>{</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>68</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount coveredLine"><pre>1</pre></td> <td align="left" class="src coveredLine"><pre> output = dataSIN(time);</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>69</pre></td> <td align="right" class="linebranch"><span class="notTakenBranch" title="Branch 2 not taken">&cross;</span><span class="takenBranch" title="Branch 3 taken 1 times">&check;</span></td> <td align="right" class="linecount coveredLine"><pre>1</pre></td> <td align="left" class="src coveredLine"><pre> assert(output.size() == internal_history_.size());</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>70</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount coveredLine"><pre>1</pre></td> <td align="left" class="src coveredLine"><pre> internal_history_ = output;</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>71</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount coveredLine"><pre>1</pre></td> <td align="left" class="src coveredLine"><pre> return output;</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>72</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>}</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>73</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre></pre></td> </tr> <tr> <td align="right" class="lineno"><pre>74</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount coveredLine"><pre>2</pre></td> <td align="left" class="src coveredLine"><pre>dg::Vector&amp; PreviousValue::getPrevious(dg::Vector&amp; previous, int time)</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>75</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount "><pre></pre></td> <td align="left" class="src "><pre>{</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>76</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount coveredLine"><pre>2</pre></td> <td align="left" class="src coveredLine"><pre> previous = internal_history_;</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>77</pre></td> <td align="right" class="linebranch"></td> <td align="right" class="linecount coveredLine"><pre>2</pre></td> <td align="left" class="src coveredLine"><pre> return internal_history_;</pre></td> </tr> <tr> <td align="right" class="lineno"><pre>78</pre></td> <td align="right" class="linebranch"><span class="takenBranch" title="Branch 1 taken 2 times">&check;</span><span class="notTakenBranch" title="Branch 2 not taken">&cross;</span><span class="takenBranch" title="Branch 3 taken 2 times">&check;</span><span class="notTakenBranch" title="Branch 4 not taken">&cross;</span><br/></td> <td align="right" class="linecount coveredLine"><pre>6</pre></td> <td align="left" class="src coveredLine"><pre>}</pre></td> </tr> </table> <br> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr><td class="hr"><td></tr> <tr><td class="footer">Generated by: <a href="http://gcovr.com">GCOVR (Version 4.2)</a></td></tr> </table> <br> </body> </html>
PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX vCard: <http://www.w3.org/2001/vcard-rdf/3.0#> SELECT ?name1 ?name2 WHERE { { [] foaf:name ?name1 } UNION { [] vCard:FN ?name2 } }
package gui import ( "context" "github.com/rivo/tview" "github.com/wallentx/docui/common" ) type panels struct { currentPanel int panel []panel } // docker resources type resources struct { images []*image containers []*container networks []*network volumes []*volume tasks []*task } type state struct { panels panels navigate *navigate resources resources stopChans map[string]chan int } func newState() *state { return &state{ stopChans: make(map[string]chan int), } } // Gui have all panels type Gui struct { app *tview.Application pages *tview.Pages state *state } // New create new gui func New() *Gui { return &Gui{ app: tview.NewApplication(), state: newState(), } } func (g *Gui) imagePanel() *images { for _, panel := range g.state.panels.panel { if panel.name() == "images" { return panel.(*images) } } return nil } func (g *Gui) containerPanel() *containers { for _, panel := range g.state.panels.panel { if panel.name() == "containers" { return panel.(*containers) } } return nil } func (g *Gui) volumePanel() *volumes { for _, panel := range g.state.panels.panel { if panel.name() == "volumes" { return panel.(*volumes) } } return nil } func (g *Gui) networkPanel() *networks { for _, panel := range g.state.panels.panel { if panel.name() == "networks" { return panel.(*networks) } } return nil } func (g *Gui) taskPanel() *tasks { for _, panel := range g.state.panels.panel { if panel.name() == "tasks" { return panel.(*tasks) } } return nil } func (g *Gui) monitoringTask() { common.Logger.Info("start monitoring task") LOOP: for { select { case task := <-g.taskPanel().tasks: go func() { if err := task.Func(task.Ctx); err != nil { task.Status = err.Error() } else { task.Status = success } g.updateTask() }() case <-g.state.stopChans["task"]: common.Logger.Info("stop monitoring task") break LOOP } } } func (g *Gui) startTask(taskName string, f func(ctx context.Context) error) { ctx, cancel := context.WithCancel(context.Background()) task := &task{ Name: taskName, Status: executing, Created: common.DateNow(), Func: f, Ctx: ctx, Cancel: cancel, } g.state.resources.tasks = append(g.state.resources.tasks, task) g.updateTask() g.taskPanel().tasks <- task } func (g *Gui) cancelTask() { taskPanel := g.taskPanel() row, _ := taskPanel.GetSelection() task := g.state.resources.tasks[row-1] if task.Status == executing { task.Cancel() task.Status = cancel g.updateTask() } } func (g *Gui) updateTask() { go g.app.QueueUpdateDraw(func() { g.taskPanel().setEntries(g) }) } func (g *Gui) initPanels() { tasks := newTasks(g) images := newImages(g) containers := newContainers(g) volumes := newVolumes(g) networks := newNetworks(g) info := newInfo() navi := newNavigate() g.state.panels.panel = append(g.state.panels.panel, tasks) g.state.panels.panel = append(g.state.panels.panel, images) g.state.panels.panel = append(g.state.panels.panel, containers) g.state.panels.panel = append(g.state.panels.panel, volumes) g.state.panels.panel = append(g.state.panels.panel, networks) g.state.navigate = navi grid := tview.NewGrid().SetRows(2, 0, 0, 0, 0, 0, 2). AddItem(info, 0, 0, 1, 1, 0, 0, true). AddItem(tasks, 1, 0, 1, 1, 0, 0, true). AddItem(images, 2, 0, 1, 1, 0, 0, true). AddItem(containers, 3, 0, 1, 1, 0, 0, true). AddItem(volumes, 4, 0, 1, 1, 0, 0, true). AddItem(networks, 5, 0, 1, 1, 0, 0, true). AddItem(navi, 6, 0, 1, 1, 0, 0, true) g.pages = tview.NewPages(). AddAndSwitchToPage("main", grid, true) g.app.SetRoot(g.pages, true) g.switchPanel("images") } func (g *Gui) startMonitoring() { stop := make(chan int, 1) g.state.stopChans["task"] = stop g.state.stopChans["image"] = stop g.state.stopChans["volume"] = stop g.state.stopChans["network"] = stop g.state.stopChans["container"] = stop go g.monitoringTask() go g.imagePanel().monitoringImages(g) go g.networkPanel().monitoringNetworks(g) go g.volumePanel().monitoringVolumes(g) go g.containerPanel().monitoringContainers(g) } func (g *Gui) stopMonitoring() { g.state.stopChans["task"] <- 1 g.state.stopChans["image"] <- 1 g.state.stopChans["volume"] <- 1 g.state.stopChans["network"] <- 1 g.state.stopChans["container"] <- 1 } // Start start application func (g *Gui) Start() error { g.initPanels() g.startMonitoring() if err := g.app.Run(); err != nil { g.app.Stop() return err } return nil } // Stop stop application func (g *Gui) Stop() error { g.stopMonitoring() g.app.Stop() return nil } func (g *Gui) selectedImage() *image { row, _ := g.imagePanel().GetSelection() if len(g.state.resources.images) == 0 { return nil } if row-1 < 0 { return nil } return g.state.resources.images[row-1] } func (g *Gui) selectedContainer() *container { row, _ := g.containerPanel().GetSelection() if len(g.state.resources.containers) == 0 { return nil } if row-1 < 0 { return nil } return g.state.resources.containers[row-1] } func (g *Gui) selectedVolume() *volume { row, _ := g.volumePanel().GetSelection() if len(g.state.resources.volumes) == 0 { return nil } if row-1 < 0 { return nil } return g.state.resources.volumes[row-1] } func (g *Gui) selectedNetwork() *network { row, _ := g.networkPanel().GetSelection() if len(g.state.resources.networks) == 0 { return nil } if row-1 < 0 { return nil } return g.state.resources.networks[row-1] } func (g *Gui) message(message, doneLabel, page string, doneFunc func()) { modal := tview.NewModal(). SetText(message). AddButtons([]string{doneLabel}). SetDoneFunc(func(buttonIndex int, buttonLabel string) { g.closeAndSwitchPanel("modal", page) if buttonLabel == doneLabel { doneFunc() } }) g.pages.AddAndSwitchToPage("modal", g.modal(modal, 80, 29), true).ShowPage("main") } func (g *Gui) confirm(message, doneLabel, page string, doneFunc func()) { modal := tview.NewModal(). SetText(message). AddButtons([]string{doneLabel, "Cancel"}). SetDoneFunc(func(buttonIndex int, buttonLabel string) { g.closeAndSwitchPanel("modal", page) if buttonLabel == doneLabel { doneFunc() } }) g.pages.AddAndSwitchToPage("modal", g.modal(modal, 80, 29), true).ShowPage("main") } func (g *Gui) switchPanel(panelName string) { for i, panel := range g.state.panels.panel { if panel.name() == panelName { g.state.navigate.update(panelName) panel.focus(g) g.state.panels.currentPanel = i } else { panel.unfocus() } } } func (g *Gui) closeAndSwitchPanel(removePanel, switchPanel string) { g.pages.RemovePage(removePanel).ShowPage("main") g.switchPanel(switchPanel) } func (g *Gui) modal(p tview.Primitive, width, height int) tview.Primitive { return tview.NewGrid(). SetColumns(0, width, 0). SetRows(0, height, 0). AddItem(p, 1, 1, 1, 1, 0, 0, true) } func (g *Gui) currentPanel() panel { return g.state.panels.panel[g.state.panels.currentPanel] }
module Tactic.Nat.Less.Lemmas where open import Prelude open import Tactic.Nat.Exp open import Tactic.Nat.NF open import Tactic.Nat.Subtract.Exp open import Tactic.Nat.Auto.Lemmas open import Tactic.Nat.Simpl.Lemmas open import Tactic.Nat.Subtract.Lemmas liftNFSubLess : ∀ e₁ e₂ ρ → ⟦ normSub e₁ ⟧sn ρ < ⟦ normSub e₂ ⟧sn ρ → ⟦ e₁ ⟧se ρ < ⟦ e₂ ⟧se ρ liftNFSubLess e₁ e₂ ρ (diff k eq) = diff k (eraseEquality $ sound-sub e₂ ρ ⟨≡⟩ eq ⟨≡⟩ʳ (suc k +_) $≡ sound-sub e₁ ρ) SubExpLess : SubExp → SubExp → Env Var → Set SubExpLess e₁ e₂ ρ = ⟦ e₁ ⟧se ρ < ⟦ e₂ ⟧se ρ NFLessS : SubNF × SubNF → Env SubAtom → Set NFLessS (nf₁ , nf₂) ρ = ⟦ nf₁ ⟧ns ρ < ⟦ nf₂ ⟧ns ρ CancelSubLess : SubExp → SubExp → Env Var → Set CancelSubLess e₁ e₂ ρ = NFLessS (cancel (normSub e₁) (normSub e₂)) (atomEnvS ρ) c⟦_⟧eqn : Eqn → Env Var → Set c⟦ a :≡ b ⟧eqn = CancelSubEq a b c⟦ a :< b ⟧eqn = CancelSubLess a b simplifySubLess : ∀ e₁ e₂ (ρ : Env Var) → CancelSubLess e₁ e₂ ρ → SubExpLess e₁ e₂ ρ simplifySubLess e₁ e₂ ρ H with cancel (normSub e₁) (normSub e₂) | λ a b → cancel-sound′ a b (normSub e₁) (normSub e₂) (atomEnvS ρ) simplifySubLess e₁ e₂ ρ (diff k H) | v₁ , v₂ | sound = liftNFSubLess e₁ e₂ ρ $ diff k $ lem-eval-sn-nS (normSub e₂) ρ ⟨≡⟩ sound (suc k) 0 ((suc k +_) $≡ ns-sound v₁ (atomEnvS ρ) ʳ⟨≡⟩ H ʳ⟨≡⟩ ns-sound v₂ (atomEnvS ρ)) ʳ⟨≡⟩ʳ (suc k +_) $≡ lem-eval-sn-nS (normSub e₁) ρ complicateSubLess : ∀ e₁ e₂ ρ → SubExpLess e₁ e₂ ρ → CancelSubLess e₁ e₂ ρ complicateSubLess e₁ e₂ ρ H with cancel (normSub e₁) (normSub e₂) | λ a b → cancel-complete′ a b (normSub e₁) (normSub e₂) (atomEnvS ρ) complicateSubLess e₁ e₂ ρ (diff k H) | v₁ , v₂ | complete = diff k (eraseEquality $ ns-sound v₂ (atomEnvS ρ) ⟨≡⟩ complete (suc k) 0 ((suc k +_) $≡ lem-eval-sn-nS (normSub e₁) ρ ʳ⟨≡⟩ (suc k +_) $≡ sound-sub e₁ ρ ʳ⟨≡⟩ H ʳ⟨≡⟩ sound-sub e₂ ρ ⟨≡⟩ lem-eval-sn-nS (normSub e₂) ρ) ʳ⟨≡⟩ʳ (suc k +_) $≡ ns-sound v₁ (atomEnvS ρ))
*! version 2.0.1 07/23/91 merged on 08/09/94 13feb2013 program define emdef version 3.0 capture parse "%_*", parse(" :") if ( _rc | ("%_2"!=":")) { error 198 } _cr1%_3 %_1 %_4 %_5 end program define _cr1form version 2.1 /* might be important */ * convert numbers / old-style labels to strings mac def _tp : type %_2 mac def _val = %_2[%_3] mac def _dp = index("%_val",".") if ("%_tp"!="string" & length("%_val")>=7 & %_dp) { * attempt to round it mac def _ival = index("%_val","999") + index("%_val","000") if (%_ival>%_dp) { mac def _val = bsubstr("%_val",1,%_ival-1) } } mac def _vl : value label %_2 if ("%_vl"!="") { tempvar CRCVAL qui decode %_2, gen(%_CRCVAL) mac def _val = %_CRCVAL[%_3] } mac def %_1 "%_val" end program define _cr1invt version 3.0 if (%_2 >= 1 | %_2 <= 0 | %_3 <= 0 | %_3==.) { mac def %_1 = . exit 198 } mac def _x = invnorm(%_2/2+0.5) mac def _x0 = . while (abs(%_x-%_x0)>1e-5) { mac def _x0 = %_x mac def _p = tprob(%_3,%_x) mac def _pp = (tprob(%_3,%_x+.01) - %_p) / .01 mac def _x = %_x + (1-%_2-%_p)/%_pp } mac def %_1 "%_x" end program define _cr1se version 3.0 mac def _macname %_1 cap test %_2 if (_rc) { mac def %_macname = . exit } mac def %_macname = abs(_b[%_2]) / sqrt(_result(6)) end program define _cr1t version 3.0 mac def _macname %_1 cap test %_2 if (_rc) { mac def %_macname = . exit } mac def %_macname = sqrt(_result(6))*cond(_b[%_2]>0,1,-1) end
/************************************************************ * Normally, it is not allowed to import a cobined grammar, * * even in a combined grammar. * ************************************************************/ grammar ImportedCombinedGrammar; // line comment rule1: T; T : 'a';
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Insert title here</title> </head> <body> <a href="getList">获取Json数据</a> </body> </html>
export sysEvenMoreDisplay; module sysEvenMoreDisplay(Empty); Reg#(UInt#(4)) counter <- mkReg(0); Reg#(Int#(16)) r1 <- mkReg(-9238); Reg#(Int#(78)) r2 <- mkReg(48446744073709551677); rule display (counter <= 10); $display("r1 = ", r1); $displayb("in binary = ", r1); $displayo("in octal = ", r1); $displayh("in hex = ", r1); $display("r2 = ", r2); $displayb("in binary = ", r2); $displayo("in octal = ", r2); $displayh("in hex = ", r2); r1 <= r1 + signExtend(unpack(pack(r2)[11:0])); r2 <= r2 * signExtend(r1); counter <= counter + 1; endrule: display rule done (counter > 10); $finish(0); endrule: done endmodule: sysEvenMoreDisplay
module Data.QuadTree.Implementation.Definition where open import Haskell.Prelude renaming (zero to Z; suc to S) open import Data.Lens.Lens open import Data.Logic {-# FOREIGN AGDA2HS {-# LANGUAGE Safe #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE Rank2Types #-} import Data.Nat import Data.Lens.Lens import Data.Logic #-} ---- Quadrants -- A quadrant is either a leaf or a node with 4 sub-quadrants data Quadrant (t : Set) : Set where Leaf : t -> Quadrant t Node : Quadrant t -> Quadrant t -> Quadrant t -> Quadrant t -> Quadrant t {-# COMPILE AGDA2HS Quadrant deriving (Show, Eq) #-} ---- QuadTree -- A quadtree is the width/height + the root quadrant data QuadTree (t : Set) : Set where Wrapper : (Nat × Nat) -> Quadrant t -> QuadTree t {-# COMPILE AGDA2HS QuadTree deriving (Show, Eq) #-}
# build directory set(EIGEN_PREFIX ${CMAKE_BINARY_DIR}/external/eigen-prefix) # install directory set(EIGEN_INSTALL ${CMAKE_BINARY_DIR}/external/eigen-install) set( Eigen3_VERSION "3.3.3" ) add_definitions(-DEIGEN_USE_BLAS -DEIGEN_USE_LAPACKE) find_package(BLAS REQUIRED) ExternalProject_Add(eigen PREFIX ${EIGEN_PREFIX} URL "http://bitbucket.org/eigen/eigen/get/${Eigen3_VERSION}.tar.bz2" CONFIGURE_COMMAND "" BUILD_COMMAND "" BUILD_IN_SOURCE 1 INSTALL_COMMAND cp -r Eigen unsupported <INSTALL_DIR>/ INSTALL_DIR ${EIGEN_INSTALL}) add_definitions(-DHAS_EIGEN) set(EIGEN_INCLUDE_DIRS ${EIGEN_INSTALL}) macro(requires_eigen NAME) include_directories(${NAME} ${EIGEN_INCLUDE_DIRS}) target_link_libraries(${NAME} ${BLAS_LIBRARIES}) add_dependencies(${NAME} eigen) endmacro(requires_eigen)
BEGIN { str = "abc"; gsub("b+", "FOO", str); print str str = "abc"; gsub("x*", "X", str); print str str = "abc"; gsub("b*", "X", str); print str str = "abc"; gsub("c", "X", str); print str str = "abc"; gsub("c+", "X", str); print str str = "abc"; gsub("x*$", "X", str); print str }
# Autogenerated wrapper script for Pangomm_jll for aarch64-linux-musl-cxx03 export libpangomm using Cairomm_jll using Glibmm_jll using Pango_jll JLLWrappers.@generate_wrapper_header("Pangomm") JLLWrappers.@declare_library_product(libpangomm, "libpangomm-2.48.so.1") function __init__() JLLWrappers.@generate_init_header(Cairomm_jll, Glibmm_jll, Pango_jll) JLLWrappers.@init_library_product( libpangomm, "lib/libpangomm-2.48.so", RTLD_LAZY | RTLD_DEEPBIND, ) JLLWrappers.@generate_init_footer() end # __init__()
--- description: Метод setFetchSize (SQLServerResultSet) title: Метод setFetchSize (SQLServerResultSet) | Документация Майкрософт ms.custom: '' ms.date: 01/19/2017 ms.prod: sql ms.prod_service: connectivity ms.reviewer: '' ms.technology: connectivity ms.topic: reference apiname: - SQLServerResultSet.setFetchSize apilocation: - sqljdbc.jar apitype: Assembly ms.assetid: 233bf4f8-4758-42d0-a80b-33e34fa78027 author: David-Engel ms.author: v-daenge ms.openlocfilehash: 830949a046b70e11930e58d12882814c208c41ba ms.sourcegitcommit: 33f0f190f962059826e002be165a2bef4f9e350c ms.translationtype: HT ms.contentlocale: ru-RU ms.lasthandoff: 01/30/2021 ms.locfileid: "99173442" --- # <a name="setfetchsize-method-sqlserverresultset"></a>Метод setFetchSize (SQLServerResultSet) [!INCLUDE[Driver_JDBC_Download](../../../includes/driver_jdbc_download.md)] Дает драйверу JDBC подсказку относительно числа строк, которые должны быть извлечены из базы данных, когда этому объекту [SQLServerResultSet](../../../connect/jdbc/reference/sqlserverresultset-class.md) нужны дополнительные строки. ## <a name="syntax"></a>Синтаксис ``` public void setFetchSize(int rows) ``` #### <a name="parameters"></a>Параметры *rows* Значение **int**, которое указывает число строк, которые нужно перенести. ## <a name="exceptions"></a>Исключения [SQLServerException](../../../connect/jdbc/reference/sqlserverexception-class.md) ## <a name="remarks"></a>Remarks Этот метод setFetchSize задается с помощью метода setFetchSize в интерфейсе java.sql.ResultSet. Если указан нулевой размер выборки, то драйвер JDBC не учитывает это значение и оценивает предполагаемый размер выборки. Значение по умолчанию задается объектом [SQLServerStatement](../../../connect/jdbc/reference/sqlserverstatement-class.md), который создал результирующий набор. Размер выборки можно изменить в любой момент. Этот метод изменяет размер выборки блока для серверных курсоров. Изменение вступает в силу при следующем вызове процедуры sp_cursorfetch драйвером JDBC. Если задать нулевой размер выборки, будет восстановлен тип выборки по умолчанию для используемого в данный момент типа курсора. ## <a name="see-also"></a>См. также: [Элементы SQLServerResultSet](../../../connect/jdbc/reference/sqlserverresultset-members.md) [Класс SQLServerResultSet](../../../connect/jdbc/reference/sqlserverresultset-class.md)
<?xml version="1.0" encoding="utf-8" ?> <dataset Transactions="1"><dataset_header DisableRI="yes" DatasetObj="1004928896.09" DateFormat="mdy" FullHeader="no" SCMManaged="yes" YearOffset="1950" DatasetCode="RYCSO" NumericFormat="AMERICAN" NumericDecimal="." OriginatingSite="91" NumericSeparator=","/> <dataset_records><dataset_transaction TransactionNo="1" TransactionType="DATA"><contained_record DB="icfdb" Table="ryc_smartobject" version_date="05/25/2004" version_time="54043" version_user="admin" deletion_flag="no" entity_mnemonic="RYCSO" key_field_value="10337.5498" record_version_obj="10338.5498" version_number_seq="35.5498" secondary_key_value="ryttDataField.tSchemaInitial#CHR(1)#0" import_version_number_seq="35.5498"><smartobject_obj>10337.5498</smartobject_obj> <object_filename>ryttDataField.tSchemaInitial</object_filename> <customization_result_obj>0</customization_result_obj> <object_type_obj>1005091923.09</object_type_obj> <product_module_obj>3000005456.09</product_module_obj> <layout_obj>0</layout_obj> <object_description>DataField for tSchemaInitial</object_description> <object_path>ry/dfo</object_path> <object_extension></object_extension> <static_object>yes</static_object> <generic_object>no</generic_object> <template_smartobject>no</template_smartobject> <system_owned>no</system_owned> <deployment_type></deployment_type> <design_only>no</design_only> <runnable_from_menu>no</runnable_from_menu> <container_object>no</container_object> <disabled>no</disabled> <run_persistent>no</run_persistent> <run_when>ANY</run_when> <shutdown_message_text></shutdown_message_text> <required_db_list></required_db_list> <sdo_smartobject_obj>0</sdo_smartobject_obj> <extends_smartobject_obj>0</extends_smartobject_obj> <security_smartobject_obj>10337.5498</security_smartobject_obj> <object_is_runnable>yes</object_is_runnable> <contained_record DB="icfdb" Table="ryc_attribute_value"><attribute_value_obj>14422.5498</attribute_value_obj> <object_type_obj>1005091923.09</object_type_obj> <container_smartobject_obj>0</container_smartobject_obj> <smartobject_obj>10337.5498</smartobject_obj> <object_instance_obj>0</object_instance_obj> <constant_value>no</constant_value> <attribute_label>ColumnLabel</attribute_label> <character_value>Initial value</character_value> <integer_value>0</integer_value> <date_value>?</date_value> <decimal_value>0</decimal_value> <logical_value>no</logical_value> <primary_smartobject_obj>10337.5498</primary_smartobject_obj> <render_type_obj>0</render_type_obj> <applies_at_runtime>no</applies_at_runtime> </contained_record> <contained_record DB="icfdb" Table="ryc_attribute_value"><attribute_value_obj>10352.5498</attribute_value_obj> <object_type_obj>1005091923.09</object_type_obj> <container_smartobject_obj>0</container_smartobject_obj> <smartobject_obj>10337.5498</smartobject_obj> <object_instance_obj>0</object_instance_obj> <constant_value>no</constant_value> <attribute_label>DATA-TYPE</attribute_label> <character_value>character</character_value> <integer_value>0</integer_value> <date_value>?</date_value> <decimal_value>0</decimal_value> <logical_value>no</logical_value> <primary_smartobject_obj>10337.5498</primary_smartobject_obj> <render_type_obj>0</render_type_obj> <applies_at_runtime>no</applies_at_runtime> </contained_record> <contained_record DB="icfdb" Table="ryc_attribute_value"><attribute_value_obj>10341.5498</attribute_value_obj> <object_type_obj>1005091923.09</object_type_obj> <container_smartobject_obj>0</container_smartobject_obj> <smartobject_obj>10337.5498</smartobject_obj> <object_instance_obj>0</object_instance_obj> <constant_value>no</constant_value> <attribute_label>FORMAT</attribute_label> <character_value>x(50)</character_value> <integer_value>0</integer_value> <date_value>?</date_value> <decimal_value>0</decimal_value> <logical_value>no</logical_value> <primary_smartobject_obj>10337.5498</primary_smartobject_obj> <render_type_obj>0</render_type_obj> <applies_at_runtime>no</applies_at_runtime> </contained_record> <contained_record DB="icfdb" Table="ryc_attribute_value"><attribute_value_obj>10343.5498</attribute_value_obj> <object_type_obj>1005091923.09</object_type_obj> <container_smartobject_obj>0</container_smartobject_obj> <smartobject_obj>10337.5498</smartobject_obj> <object_instance_obj>0</object_instance_obj> <constant_value>no</constant_value> <attribute_label>LABEL</attribute_label> <character_value>Initial value</character_value> <integer_value>0</integer_value> <date_value>?</date_value> <decimal_value>0</decimal_value> <logical_value>no</logical_value> <primary_smartobject_obj>10337.5498</primary_smartobject_obj> <render_type_obj>0</render_type_obj> <applies_at_runtime>no</applies_at_runtime> </contained_record> <contained_record DB="icfdb" Table="ryc_attribute_value"><attribute_value_obj>10344.5498</attribute_value_obj> <object_type_obj>1005091923.09</object_type_obj> <container_smartobject_obj>0</container_smartobject_obj> <smartobject_obj>10337.5498</smartobject_obj> <object_instance_obj>0</object_instance_obj> <constant_value>yes</constant_value> <attribute_label>SCHEMA-COLUMN-LABEL</attribute_label> <character_value>Initial value</character_value> <integer_value>0</integer_value> <date_value>?</date_value> <decimal_value>0</decimal_value> <logical_value>no</logical_value> <primary_smartobject_obj>10337.5498</primary_smartobject_obj> <render_type_obj>0</render_type_obj> <applies_at_runtime>no</applies_at_runtime> </contained_record> <contained_record DB="icfdb" Table="ryc_attribute_value"><attribute_value_obj>10348.5498</attribute_value_obj> <object_type_obj>1005091923.09</object_type_obj> <container_smartobject_obj>0</container_smartobject_obj> <smartobject_obj>10337.5498</smartobject_obj> <object_instance_obj>0</object_instance_obj> <constant_value>yes</constant_value> <attribute_label>SCHEMA-DECIMALS</attribute_label> <character_value></character_value> <integer_value>?</integer_value> <date_value>?</date_value> <decimal_value>0</decimal_value> <logical_value>no</logical_value> <primary_smartobject_obj>10337.5498</primary_smartobject_obj> <render_type_obj>0</render_type_obj> <applies_at_runtime>no</applies_at_runtime> </contained_record> <contained_record DB="icfdb" Table="ryc_attribute_value"><attribute_value_obj>10340.5498</attribute_value_obj> <object_type_obj>1005091923.09</object_type_obj> <container_smartobject_obj>0</container_smartobject_obj> <smartobject_obj>10337.5498</smartobject_obj> <object_instance_obj>0</object_instance_obj> <constant_value>yes</constant_value> <attribute_label>SCHEMA-FORMAT</attribute_label> <character_value>x(50)</character_value> <integer_value>0</integer_value> <date_value>?</date_value> <decimal_value>0</decimal_value> <logical_value>no</logical_value> <primary_smartobject_obj>10337.5498</primary_smartobject_obj> <render_type_obj>0</render_type_obj> <applies_at_runtime>no</applies_at_runtime> </contained_record> <contained_record DB="icfdb" Table="ryc_attribute_value"><attribute_value_obj>10342.5498</attribute_value_obj> <object_type_obj>1005091923.09</object_type_obj> <container_smartobject_obj>0</container_smartobject_obj> <smartobject_obj>10337.5498</smartobject_obj> <object_instance_obj>0</object_instance_obj> <constant_value>yes</constant_value> <attribute_label>SCHEMA-LABEL</attribute_label> <character_value>Initial value</character_value> <integer_value>0</integer_value> <date_value>?</date_value> <decimal_value>0</decimal_value> <logical_value>no</logical_value> <primary_smartobject_obj>10337.5498</primary_smartobject_obj> <render_type_obj>0</render_type_obj> <applies_at_runtime>no</applies_at_runtime> </contained_record> <contained_record DB="icfdb" Table="ryc_attribute_value"><attribute_value_obj>10349.5498</attribute_value_obj> <object_type_obj>1005091923.09</object_type_obj> <container_smartobject_obj>0</container_smartobject_obj> <smartobject_obj>10337.5498</smartobject_obj> <object_instance_obj>0</object_instance_obj> <constant_value>yes</constant_value> <attribute_label>SCHEMA-ORDER</attribute_label> <character_value></character_value> <integer_value>150</integer_value> <date_value>?</date_value> <decimal_value>0</decimal_value> <logical_value>no</logical_value> <primary_smartobject_obj>10337.5498</primary_smartobject_obj> <render_type_obj>0</render_type_obj> <applies_at_runtime>no</applies_at_runtime> </contained_record> <contained_record DB="icfdb" Table="ryc_attribute_value"><attribute_value_obj>10347.5498</attribute_value_obj> <object_type_obj>1005091923.09</object_type_obj> <container_smartobject_obj>0</container_smartobject_obj> <smartobject_obj>10337.5498</smartobject_obj> <object_instance_obj>0</object_instance_obj> <constant_value>yes</constant_value> <attribute_label>SCHEMA-VALIDATE-EXPRESSION</attribute_label> <character_value>?</character_value> <integer_value>0</integer_value> <date_value>?</date_value> <decimal_value>0</decimal_value> <logical_value>no</logical_value> <primary_smartobject_obj>10337.5498</primary_smartobject_obj> <render_type_obj>0</render_type_obj> <applies_at_runtime>no</applies_at_runtime> </contained_record> <contained_record DB="icfdb" Table="ryc_attribute_value"><attribute_value_obj>10345.5498</attribute_value_obj> <object_type_obj>1005091923.09</object_type_obj> <container_smartobject_obj>0</container_smartobject_obj> <smartobject_obj>10337.5498</smartobject_obj> <object_instance_obj>0</object_instance_obj> <constant_value>yes</constant_value> <attribute_label>SCHEMA-VIEW-AS</attribute_label> <character_value>?</character_value> <integer_value>0</integer_value> <date_value>?</date_value> <decimal_value>0</decimal_value> <logical_value>no</logical_value> <primary_smartobject_obj>10337.5498</primary_smartobject_obj> <render_type_obj>0</render_type_obj> <applies_at_runtime>no</applies_at_runtime> </contained_record> <contained_record DB="icfdb" Table="ryc_attribute_value"><attribute_value_obj>10351.5498</attribute_value_obj> <object_type_obj>1005091923.09</object_type_obj> <container_smartobject_obj>0</container_smartobject_obj> <smartobject_obj>10337.5498</smartobject_obj> <object_instance_obj>0</object_instance_obj> <constant_value>no</constant_value> <attribute_label>ShowPopup</attribute_label> <character_value></character_value> <integer_value>0</integer_value> <date_value>?</date_value> <decimal_value>0</decimal_value> <logical_value>no</logical_value> <primary_smartobject_obj>10337.5498</primary_smartobject_obj> <render_type_obj>0</render_type_obj> <applies_at_runtime>yes</applies_at_runtime> </contained_record> <contained_record DB="icfdb" Table="ryc_attribute_value"><attribute_value_obj>10339.5498</attribute_value_obj> <object_type_obj>1005091923.09</object_type_obj> <container_smartobject_obj>0</container_smartobject_obj> <smartobject_obj>10337.5498</smartobject_obj> <object_instance_obj>0</object_instance_obj> <constant_value>yes</constant_value> <attribute_label>TableName</attribute_label> <character_value>ryttDataField</character_value> <integer_value>0</integer_value> <date_value>?</date_value> <decimal_value>0</decimal_value> <logical_value>no</logical_value> <primary_smartobject_obj>10337.5498</primary_smartobject_obj> <render_type_obj>0</render_type_obj> <applies_at_runtime>yes</applies_at_runtime> </contained_record> <contained_record DB="icfdb" Table="ryc_attribute_value"><attribute_value_obj>10346.5498</attribute_value_obj> <object_type_obj>1005091923.09</object_type_obj> <container_smartobject_obj>0</container_smartobject_obj> <smartobject_obj>10337.5498</smartobject_obj> <object_instance_obj>0</object_instance_obj> <constant_value>no</constant_value> <attribute_label>ViewAs</attribute_label> <character_value>?</character_value> <integer_value>0</integer_value> <date_value>?</date_value> <decimal_value>0</decimal_value> <logical_value>no</logical_value> <primary_smartobject_obj>10337.5498</primary_smartobject_obj> <render_type_obj>0</render_type_obj> <applies_at_runtime>yes</applies_at_runtime> </contained_record> <contained_record DB="icfdb" Table="ryc_attribute_value"><attribute_value_obj>10350.5498</attribute_value_obj> <object_type_obj>1005091923.09</object_type_obj> <container_smartobject_obj>0</container_smartobject_obj> <smartobject_obj>10337.5498</smartobject_obj> <object_instance_obj>0</object_instance_obj> <constant_value>no</constant_value> <attribute_label>WIDTH-CHARS</attribute_label> <character_value></character_value> <integer_value>0</integer_value> <date_value>?</date_value> <decimal_value>50</decimal_value> <logical_value>no</logical_value> <primary_smartobject_obj>10337.5498</primary_smartobject_obj> <render_type_obj>0</render_type_obj> <applies_at_runtime>yes</applies_at_runtime> </contained_record> </contained_record> </dataset_transaction> </dataset_records> </dataset>
/*- * #%L * wcm.io * %% * Copyright (C) 2017 - 2018 wcm.io DevOps * %% * 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. * #L% */ package vars.gitTools.mirrorSsh.jobs import io.wcm.devops.jenkins.pipeline.shell.CommandBuilder import io.wcm.devops.jenkins.pipeline.shell.CommandBuilderImpl def execute() { gitTools.mirrorRepository("git@github.com:wcm-io-devops/jenkins-pipeline-library.git","https://github.com/wcm-io-devops/jenkins-pipeline-library.git") } return this
// SPDX-License-Identifier: MIT pragma solidity ^0.7.1; import "../../openzeppelin/Ownable.sol"; import "../../facades/LachesisLike.sol"; import "../../facades/BehodlerLike.sol"; abstract contract FactoryFacade { mapping(address => mapping(address => address)) public getPair; } contract LachesisLite is Ownable, LachesisLike { struct tokenConfig { bool valid; bool burnable; } address public behodler; mapping(address => tokenConfig) private config; constructor(address _behodler) public { behodler = _behodler; } function cut(address token) public view returns (bool, bool) { tokenConfig memory parameters = config[token]; return (parameters.valid, parameters.burnable); } function setBehodler(address b) public override { behodler = b; } function measure( address token, bool valid, bool burnable ) public override onlyOwner { _measure(token, valid, burnable); } function _measure( address token, bool valid, bool burnable ) internal { config[token] = tokenConfig({valid: valid, burnable: burnable}); } function updateBehodler(address token) public override onlyOwner { (bool valid, bool burnable) = cut(token); BehodlerLike(behodler).setValidToken(token, valid, burnable); } }
// THIS FILE IS COPIED FROM FBTHRIFT, DO NOT MODIFY ITS CONTENTS DIRECTLY // generated-by : fbcode/common/hs/thrift/exactprint/tests/sync-fbthrift-tests.sh // source: thrift/compiler/test/fixtures/* // @generated /* * Copyright (c) Meta Platforms, Inc. and affiliates. * * 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. */ struct MyAnnot {} const i64 fortyTwo = 42; typedef map<i64, string> MyMapTypedef struct MyStruct { 1: i64 MyIntField; @MyAnnot 2: string MyStringField (annotation); } enum MyEnum { VALUE1 = 1, @MyAnnot VALUE2 = 2 (annotation), } service MyService { void ping(); @MyAnnot void pong() (annotation); }
/* * Copyright 2011 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.gradle.internal.os import org.gradle.internal.reflect.JavaReflectionUtil import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider import org.gradle.util.SetSystemProperties import org.junit.Rule import spock.lang.Specification import java.lang.reflect.Field import java.lang.reflect.Modifier class OperatingSystemTest extends Specification { @Rule SetSystemProperties systemProperties = new SetSystemProperties() @Rule TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider() def setup() { OperatingSystem.resetCurrent() } def cleanup() { OperatingSystem.resetCurrent() } def cleanupSpec() { resetOperatingSystemClassStaticFields() } def "uses os.name property to determine OS name"() { given: System.properties['os.name'] = 'GradleOS 1.0' boolean resetStateSuccess = resetOperatingSystemClassStaticFields() expect: OperatingSystem.current().name == 'GradleOS 1.0' || !resetStateSuccess } def "uses os.version property to determine OS version"() { given: System.properties['os.version'] = '42' boolean resetStateSuccess = resetOperatingSystemClassStaticFields() expect: OperatingSystem.current().version == '42' || !resetStateSuccess } def "uses os.name property to determine if windows"() { System.properties['os.name'] = 'Windows 7' expect: OperatingSystem.current() instanceof OperatingSystem.Windows } def "windows identifies itself correctly"() { def os = new OperatingSystem.Windows() expect: os.windows !os.unix !os.macOsX } def "windows transforms script names"() { def os = new OperatingSystem.Windows() expect: os.getScriptName("a.bat") == "a.bat" os.getScriptName("a.BAT") == "a.BAT" os.getScriptName("a") == "a.bat" os.getScriptName("a.exe") == "a.bat" os.getScriptName("a.b/c") == "a.b/c.bat" os.getScriptName("a.b\\c") == "a.b\\c.bat" } def "windows transforms executable names"() { def os = new OperatingSystem.Windows() expect: os.executableSuffix == ".exe" os.getExecutableName("a.exe") == "a.exe" os.getExecutableName("a.EXE") == "a.EXE" os.getExecutableName("a") == "a.exe" os.getExecutableName("a.bat") == "a.exe" os.getExecutableName("a.b/c") == "a.b/c.exe" os.getExecutableName("a.b\\c") == "a.b\\c.exe" } def "windows transforms shared library names"() { def os = new OperatingSystem.Windows() expect: os.sharedLibrarySuffix == ".dll" os.linkLibrarySuffix == ".lib" os.getSharedLibraryName("a.dll") == "a.dll" os.getSharedLibraryName("a.DLL") == "a.DLL" os.getSharedLibraryName("a") == "a.dll" os.getSharedLibraryName("a.lib") == "a.dll" os.getSharedLibraryName("a.b/c") == "a.b/c.dll" os.getSharedLibraryName("a.b\\c") == "a.b\\c.dll" os.getLinkLibraryName("a") == "a.lib" os.getLinkLibraryName("a.lib") == "a.lib" } def "windows transforms static library names"() { def os = new OperatingSystem.Windows() expect: os.staticLibrarySuffix == ".lib" os.getStaticLibraryName("a.lib") == "a.lib" os.getStaticLibraryName("a.LIB") == "a.LIB" os.getStaticLibraryName("a") == "a.lib" os.getStaticLibraryName("a.dll") == "a.lib" os.getStaticLibraryName("a.b/c") == "a.b/c.lib" os.getStaticLibraryName("a.b\\c") == "a.b\\c.lib" } def "windows searches for executable in path"() { def exe = tmpDir.createFile("bin/a.exe") tmpDir.createFile("bin2/a.exe") def os = new OperatingSystem.Windows() { @Override List<File> getPath() { return [tmpDir.file("bin"), tmpDir.file("bin2")] } } expect: os.findInPath("a.exe") == exe os.findInPath("a") == exe os.findInPath("unknown") == null } def "uses os.name property to determine if macOS"() { when: System.properties['os.name'] = 'Mac OS X' then: OperatingSystem.current() instanceof OperatingSystem.MacOs when: System.properties['os.name'] = 'Darwin' then: OperatingSystem.current() instanceof OperatingSystem.MacOs when: System.properties['os.name'] = 'osx' then: OperatingSystem.current() instanceof OperatingSystem.MacOs } def "macOS identifies itself correctly"() { def os = new OperatingSystem.MacOs() expect: !os.windows os.unix os.macOsX } def "uses os.name property to determine if sunos"() { when: System.properties['os.name'] = 'SunOS' then: OperatingSystem.current() instanceof OperatingSystem.Solaris when: System.properties['os.name'] = 'solaris' then: OperatingSystem.current() instanceof OperatingSystem.Solaris } def "uses os.name property to determine if linux"() { System.properties['os.name'] = 'Linux' expect: OperatingSystem.current() instanceof OperatingSystem.Linux } def "uses os.name property to determine if freebsd"() { System.properties['os.name'] = 'FreeBSD' expect: OperatingSystem.current() instanceof OperatingSystem.FreeBSD } def "uses default implementation for other os"() { System.properties['os.name'] = 'unknown' expect: OperatingSystem.current() instanceof OperatingSystem.Unix } def "UNIX identifies itself correctly"() { def os = new OperatingSystem.Unix() expect: !os.windows os.unix !os.macOsX } def "UNIX does not transform script names"() { def os = new OperatingSystem.Unix() expect: os.getScriptName("a.sh") == "a.sh" os.getScriptName("a") == "a" } def "UNIX does not transforms executable names"() { def os = new OperatingSystem.Unix() expect: os.executableSuffix == "" os.getExecutableName("a.sh") == "a.sh" os.getExecutableName("a") == "a" } def "UNIX transforms shared library names"() { def os = new OperatingSystem.Unix() expect: os.sharedLibrarySuffix == ".so" os.linkLibrarySuffix == ".so" os.getSharedLibraryName("a.so") == "a.so" os.getSharedLibraryName("liba.so") == "liba.so" os.getSharedLibraryName("a") == "liba.so" os.getSharedLibraryName("lib1") == "liblib1.so" os.getSharedLibraryName("path/liba.so") == "path/liba.so" os.getSharedLibraryName("path/a") == "path/liba.so" os.getLinkLibraryName("a") == "liba.so" } def "UNIX transforms static library names"() { def os = new OperatingSystem.Unix() expect: os.staticLibrarySuffix == ".a" os.getStaticLibraryName("a.a") == "a.a" os.getStaticLibraryName("liba.a") == "liba.a" os.getStaticLibraryName("a") == "liba.a" os.getStaticLibraryName("lib1") == "liblib1.a" os.getStaticLibraryName("path/liba.a") == "path/liba.a" os.getStaticLibraryName("path/a") == "path/liba.a" } def "UNIX searches for executable in path"() { def exe = tmpDir.createFile("bin/a") tmpDir.createFile("bin2/a") def os = new OperatingSystem.Unix() { @Override List<File> getPath() { return [tmpDir.file("bin"), tmpDir.file("bin2")] } } expect: os.findInPath("a") == exe os.findInPath("unknown") == null } def "solaris uses prefix of x86 for 32bit intel"() { given: System.properties['os.arch'] = arch def solaris = new OperatingSystem.Solaris() expect: solaris.nativePrefix == prefix where: [arch, prefix] << [['i386', 'sunos-x86'], ['x86', 'sunos-x86']] } def "unix uses prefix of i386 for 32bit intel"() { given: System.properties['os.name'] = 'unknown' System.properties['os.arch'] = arch def unix = new OperatingSystem.Unix() expect: unix.nativePrefix == prefix where: [arch, prefix] << [['i386', 'unknown-i386'], ['x86', 'unknown-i386']] } def "macOS uses same prefix for all architectures"() { def osx = new OperatingSystem.MacOs() expect: osx.nativePrefix == 'darwin' } def "macOS transforms shared library names"() { def os = new OperatingSystem.MacOs() expect: os.sharedLibrarySuffix == ".dylib" os.linkLibrarySuffix == ".dylib" os.getSharedLibraryName("a.dylib") == "a.dylib" os.getSharedLibraryName("liba.dylib") == "liba.dylib" os.getSharedLibraryName("a") == "liba.dylib" os.getSharedLibraryName("lib1") == "liblib1.dylib" os.getSharedLibraryName("path/liba.dylib") == "path/liba.dylib" os.getSharedLibraryName("path/a") == "path/liba.dylib" os.getLinkLibraryName("a") == "liba.dylib" } private static boolean resetOperatingSystemClassStaticFields() { try { OperatingSystem.getDeclaredFields() .findAll { Modifier.isStatic(it.modifiers) && Modifier.isFinal(it.modifiers) } .each { Field field -> if (OperatingSystem.isAssignableFrom(field.getType())) { makeFinalFieldAccessibleForTesting(field) field.set(null, JavaReflectionUtil.newInstance(field.getType())) } } return true } catch (Exception e) { System.err.println "Unable to make fields accessible on this JVM, error was:\n${e.message}" return false } } private static void makeFinalFieldAccessibleForTesting(Field field) { field.setAccessible(true) Field modifiersField = Field.class.getDeclaredField("modifiers") modifiersField.setAccessible(true) modifiersField.setInt(field, field.getModifiers() & ~Modifier.FINAL) } }
_ = require 'lodash' module.exports = _.assign( require './base' require './log' require './persistence' require './models' require './amazon' require './services' require './models' require './repositories' )
package com.codegans.moodmeter.model import java.util.UUID /** * JavaDoc here * * @author Victor Polischuk * @since 15.03.2015 9:55 */ case class Key[T <: Product](value: UUID = UUID.randomUUID()) extends AnyVal
<?php /* * This file is part of the highcharts-bundle package. * * (c) 2017 WEBEWEB * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace WBW\Bundle\HighchartsBundle\API\Chart\Series\Line; use JsonSerializable; use WBW\Library\Core\Utility\Argument\ArrayUtility; /** * Highcharts point. * * @author webeweb <https://github.com/webeweb> * @package WBW\Bundle\HighchartsBundle\API\Chart\Series\Line * @version 5.0.14 * @final */ final class HighchartsPoint implements JsonSerializable { /** * Events. * * @var \WBW\Bundle\HighchartsBundle\API\Chart\Series\Line\Point\HighchartsEvents */ private $events; /** * Constructor. * * @param boolean $ignoreDefaultValues Ignore the default values. */ public function __construct($ignoreDefaultValues = true) { if (true === $ignoreDefaultValues) { $this->clear(); } } /** * Clear. * * @return void */ public function clear() { // Clear the events. if (null !== $this->events) { $this->events->clear(); } } /** * Get the events. * * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Line\Point\HighchartsEvents Returns the events. */ public function getEvents() { return $this->events; } /** * Serialize this instance. * * @return array Returns an array representing this instance. */ public function jsonSerialize() { return $this->toArray(); } /** * Create a new events. * * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Line\Point\HighchartsEvents Returns the events. */ public function newEvents() { $this->events = new \WBW\Bundle\HighchartsBundle\API\Chart\Series\Line\Point\HighchartsEvents(); return $this->events; } /** * Set the events. * * @param \WBW\Bundle\HighchartsBundle\API\Chart\Series\Line\Point\HighchartsEvents $events The events. * @return \WBW\Bundle\HighchartsBundle\API\Chart\Series\Line\HighchartsPoint Returns the highcharts point. */ public function setEvents(\WBW\Bundle\HighchartsBundle\API\Chart\Series\Line\Point\HighchartsEvents $events = null) { $this->events = $events; return $this; } /** * Convert into an array representing this instance. * * @return array Returns an array representing this instance. */ public function toArray() { // Initialize the output. $output = []; // Set the events. if (null !== $this->events) { ArrayUtility::set($output, "events", $this->events->toArray(), []); } // Return the output. return $output; } }
defmodule EarmarkParser.Options do use EarmarkParser.Types # What we use to render defstruct renderer: EarmarkParser.HtmlRenderer, # Inline style options gfm: true, gfm_tables: false, breaks: false, pedantic: false, smartypants: true, footnotes: false, footnote_offset: 1, wikilinks: false, # additional prefies for class of code blocks code_class_prefix: nil, # Add possibility to specify a timeout for Task.await timeout: nil, # Internal—only override if you're brave do_smartypants: nil, # Very internal—the callback used to perform # parallel rendering. Set to &Enum.map/2 # to keep processing in process and # serial mapper: &EarmarkParser.pmap/2, mapper_with_timeout: &EarmarkParser.pmap/3, # Filename and initial line number of the markdown block passed in # for meaningfull error messages file: "<no file>", line: 1, # [{:error|:warning, lnb, text},...] messages: [], pure_links: true @type t :: %__MODULE__{ breaks: boolean, code_class_prefix: maybe(String.t), footnotes: boolean, footnote_offset: number, gfm: boolean, pedantic: boolean, pure_links: boolean, smartypants: boolean, wikilinks: boolean, timeout: maybe(number) } @doc false # Only here we are aware of which mapper function to use! def get_mapper(options) do if options.timeout do &options.mapper_with_timeout.(&1, &2, options.timeout) else options.mapper end end @doc false def plugin_for_prefix(options, plugin_name) do Map.get(options.plugins, plugin_name, false) end end # SPDX-License-Identifier: Apache-2.0
// Copyright 2019 Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package _default import ( "fmt" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "github.com/gardener/test-infra/pkg/apis/testmachinery/v1beta1" "github.com/gardener/test-infra/pkg/common" "github.com/gardener/test-infra/pkg/testrun_renderer" "github.com/gardener/test-infra/pkg/testrun_renderer/templates" "github.com/gardener/test-infra/pkg/util" ) type shoot struct { Type common.CloudProvider Suffix string Config *templates.CreateShootConfig TestsFunc testrun_renderer.TestsFunc } func testrun(cfg *Config, shoots []*shoot) (*v1beta1.Testrun, error) { gsLocationName := "gs" prepareHostCluster := templates.GetStepLockHost(cfg.HostProvider, cfg.BaseClusterCloudprovider) createGardener, err := templates.GetStepCreateGardener(gsLocationName, []string{prepareHostCluster.Name}, cfg.BaseClusterCloudprovider, cfg.Shoots.Flavors.GetUsedKubernetesVersions(), cfg.Shoots.Flavors.GetUsedMachineImages(), cfg.Gardener, cfg.GardenerExtensions) if err != nil { return nil, err } tr := &v1beta1.Testrun{ ObjectMeta: metav1.ObjectMeta{ Namespace: cfg.Namespace, Annotations: cfg.Annotations, }, Spec: v1beta1.TestrunSpec{ LocationSets: []v1beta1.LocationSet{ templates.GetDefaultLocationsSet(cfg.Gardener, cfg.GardenerExtensions), templates.TestInfraLocation, templates.GetGardenSetupLocation(gsLocationName, cfg.GardenSetupRevision), }, Config: []v1beta1.ConfigElement{ templates.GetConfigGardenerPrefix(), { Type: v1beta1.ConfigTypeEnv, Name: "FENCED", Value: "false", // todo: schrodit - currently only public cloudproviders are supported. }, }, TestFlow: v1beta1.TestFlow{ &prepareHostCluster, &createGardener, }, }, } deps := make([]string, len(shoots)) for i, shootConfig := range shoots { steps, deleteShootStep, err := GetShootTest(cfg.Gardener, shootConfig, []string{createGardener.Name}) if err != nil { return nil, err } tr.Spec.TestFlow = append(tr.Spec.TestFlow, steps...) deps[i] = deleteShootStep.Name } // add gardener tests if cfg.Tests != nil { var gardenerIntegrationTests []*v1beta1.DAGStep gardenerIntegrationTests, deps, err = cfg.Tests(fmt.Sprintf("gardener-it-%s-", util.RandomString(3)), deps) if err != nil { return nil, err } tr.Spec.TestFlow = append(tr.Spec.TestFlow, gardenerIntegrationTests...) } deleteGardener := templates.GetStepDeleteGardener(&createGardener, gsLocationName, deps, cfg.Pause) releaseHostCluster := templates.GetStepReleaseHost(cfg.HostProvider, []string{deleteGardener.Name}, false) tr.Spec.TestFlow = append(tr.Spec.TestFlow, &deleteGardener, &releaseHostCluster) tr.Spec.OnExit = templates.GetExitTestFlow(cfg.HostProvider, gsLocationName, &createGardener) return tr, nil } // GetShootTest creates one shoot test for a config. // This test consists of these test steps: // - create-shoot // - tests // - delete-shoot func GetShootTest(gardenerConfig templates.GardenerConfig, shootConfig *shoot, dependencies []string) ([]*v1beta1.DAGStep, *v1beta1.DAGStep, error) { createShootStep, createShootStepName, err := templates.GetStepCreateShoot(gardenerConfig, shootConfig.Type, fmt.Sprintf("create-%s", shootConfig.Suffix), dependencies, shootConfig.Config) if err != nil { return nil, nil, err } //defaultTestStep := templates.GetTestStepWithLabels(fmt.Sprintf("tests-%s", shootConfig.Suffix), []string{createShootStep.Name}, shootConfig.TestLabel, string(testmachinery.TestLabelShoot)) tests, testDep, err := shootConfig.TestsFunc(fmt.Sprintf("tests-%s", shootConfig.Suffix), []string{createShootStepName}) if err != nil { return nil, nil, err } deleteShootStep := templates.GetStepDeleteShoot(fmt.Sprintf("delete-%s", shootConfig.Suffix), createShootStepName, shootConfig.Config.ShootName, testDep) return append(append(createShootStep, &deleteShootStep), tests...), &deleteShootStep, nil }
package Graph::Nauty::EdgeVertex; use strict; use warnings; # VERSION use Data::Dumper; $Data::Dumper::Sortkeys = 1; sub new { my( $class, $attributes ) = @_; return bless { attributes => $attributes }, $class; }; sub color { return Dumper $_[0]->{attributes}; } 1;
{smcl} {* *! version 1.2.2 19oct2017}{...} {vieweralsosee "[FN] Programming functions" "mansection FN Programmingfunctions"}{...} {vieweralsosee "" "--"}{...} {vieweralsosee "help functions" "help functions"}{...} {vieweralsosee "help programming functions" "help programming_functions"}{...} {p2colset 1 31 33 2}{...} {p2col:{bf:[FN] Programming functions}} {p_end} {p2col:({mansection FN Programmingfunctions:View complete PDF manual entry})}{p_end} {p2colreset}{...} {title:Function} INCLUDE help f_chop
begin_version 3.FOND end_version begin_metric 0 end_metric 239 begin_variable var0 -1 2 Atom not-flattire() NegatedAtom not-flattire() end_variable begin_variable var1 -1 2 Atom spare-in(l_10_1) NegatedAtom spare-in(l_10_1) end_variable begin_variable var2 -1 2 Atom spare-in(l_10_10) NegatedAtom spare-in(l_10_10) end_variable begin_variable var3 -1 2 Atom spare-in(l_10_11) NegatedAtom spare-in(l_10_11) end_variable begin_variable var4 -1 2 Atom spare-in(l_10_12) NegatedAtom spare-in(l_10_12) end_variable begin_variable var5 -1 2 Atom spare-in(l_10_13) NegatedAtom spare-in(l_10_13) end_variable begin_variable var6 -1 2 Atom spare-in(l_10_14) NegatedAtom spare-in(l_10_14) end_variable begin_variable var7 -1 2 Atom spare-in(l_10_15) NegatedAtom spare-in(l_10_15) end_variable begin_variable var8 -1 2 Atom spare-in(l_10_16) NegatedAtom spare-in(l_10_16) end_variable begin_variable var9 -1 2 Atom spare-in(l_10_17) NegatedAtom spare-in(l_10_17) end_variable begin_variable var10 -1 2 Atom spare-in(l_10_18) NegatedAtom spare-in(l_10_18) end_variable begin_variable var11 -1 2 Atom spare-in(l_10_19) NegatedAtom spare-in(l_10_19) end_variable begin_variable var12 -1 2 Atom spare-in(l_10_2) NegatedAtom spare-in(l_10_2) end_variable begin_variable var13 -1 2 Atom spare-in(l_10_20) NegatedAtom spare-in(l_10_20) end_variable begin_variable var14 -1 2 Atom spare-in(l_10_3) NegatedAtom spare-in(l_10_3) end_variable begin_variable var15 -1 2 Atom spare-in(l_10_4) NegatedAtom spare-in(l_10_4) end_variable begin_variable var16 -1 2 Atom spare-in(l_10_5) NegatedAtom spare-in(l_10_5) end_variable begin_variable var17 -1 2 Atom spare-in(l_10_6) NegatedAtom spare-in(l_10_6) end_variable begin_variable var18 -1 2 Atom spare-in(l_10_7) NegatedAtom spare-in(l_10_7) end_variable begin_variable var19 -1 2 Atom spare-in(l_10_8) NegatedAtom spare-in(l_10_8) end_variable begin_variable var20 -1 2 Atom spare-in(l_10_9) NegatedAtom spare-in(l_10_9) end_variable begin_variable var21 -1 2 Atom spare-in(l_11_1) NegatedAtom spare-in(l_11_1) end_variable begin_variable var22 -1 2 Atom spare-in(l_11_19) NegatedAtom spare-in(l_11_19) end_variable begin_variable var23 -1 2 Atom spare-in(l_12_1) NegatedAtom spare-in(l_12_1) end_variable begin_variable var24 -1 2 Atom spare-in(l_12_10) NegatedAtom spare-in(l_12_10) end_variable begin_variable var25 -1 2 Atom spare-in(l_12_11) NegatedAtom spare-in(l_12_11) end_variable begin_variable var26 -1 2 Atom spare-in(l_12_12) NegatedAtom spare-in(l_12_12) end_variable begin_variable var27 -1 2 Atom spare-in(l_12_13) NegatedAtom spare-in(l_12_13) end_variable begin_variable var28 -1 2 Atom spare-in(l_12_14) NegatedAtom spare-in(l_12_14) end_variable begin_variable var29 -1 2 Atom spare-in(l_12_15) NegatedAtom spare-in(l_12_15) end_variable begin_variable var30 -1 2 Atom spare-in(l_12_16) NegatedAtom spare-in(l_12_16) end_variable begin_variable var31 -1 2 Atom spare-in(l_12_17) NegatedAtom spare-in(l_12_17) end_variable begin_variable var32 -1 2 Atom spare-in(l_12_18) NegatedAtom spare-in(l_12_18) end_variable begin_variable var33 -1 2 Atom spare-in(l_12_2) NegatedAtom spare-in(l_12_2) end_variable begin_variable var34 -1 2 Atom spare-in(l_12_3) NegatedAtom spare-in(l_12_3) end_variable begin_variable var35 -1 2 Atom spare-in(l_12_4) NegatedAtom spare-in(l_12_4) end_variable begin_variable var36 -1 2 Atom spare-in(l_12_5) NegatedAtom spare-in(l_12_5) end_variable begin_variable var37 -1 2 Atom spare-in(l_12_6) NegatedAtom spare-in(l_12_6) end_variable begin_variable var38 -1 2 Atom spare-in(l_12_7) NegatedAtom spare-in(l_12_7) end_variable begin_variable var39 -1 2 Atom spare-in(l_12_8) NegatedAtom spare-in(l_12_8) end_variable begin_variable var40 -1 2 Atom spare-in(l_12_9) NegatedAtom spare-in(l_12_9) end_variable begin_variable var41 -1 2 Atom spare-in(l_13_1) NegatedAtom spare-in(l_13_1) end_variable begin_variable var42 -1 2 Atom spare-in(l_13_17) NegatedAtom spare-in(l_13_17) end_variable begin_variable var43 -1 2 Atom spare-in(l_14_1) NegatedAtom spare-in(l_14_1) end_variable begin_variable var44 -1 2 Atom spare-in(l_14_10) NegatedAtom spare-in(l_14_10) end_variable begin_variable var45 -1 2 Atom spare-in(l_14_11) NegatedAtom spare-in(l_14_11) end_variable begin_variable var46 -1 2 Atom spare-in(l_14_12) NegatedAtom spare-in(l_14_12) end_variable begin_variable var47 -1 2 Atom spare-in(l_14_13) NegatedAtom spare-in(l_14_13) end_variable begin_variable var48 -1 2 Atom spare-in(l_14_14) NegatedAtom spare-in(l_14_14) end_variable begin_variable var49 -1 2 Atom spare-in(l_14_15) NegatedAtom spare-in(l_14_15) end_variable begin_variable var50 -1 2 Atom spare-in(l_14_16) NegatedAtom spare-in(l_14_16) end_variable begin_variable var51 -1 2 Atom spare-in(l_14_2) NegatedAtom spare-in(l_14_2) end_variable begin_variable var52 -1 2 Atom spare-in(l_14_3) NegatedAtom spare-in(l_14_3) end_variable begin_variable var53 -1 2 Atom spare-in(l_14_4) NegatedAtom spare-in(l_14_4) end_variable begin_variable var54 -1 2 Atom spare-in(l_14_5) NegatedAtom spare-in(l_14_5) end_variable begin_variable var55 -1 2 Atom spare-in(l_14_6) NegatedAtom spare-in(l_14_6) end_variable begin_variable var56 -1 2 Atom spare-in(l_14_7) NegatedAtom spare-in(l_14_7) end_variable begin_variable var57 -1 2 Atom spare-in(l_14_8) NegatedAtom spare-in(l_14_8) end_variable begin_variable var58 -1 2 Atom spare-in(l_14_9) NegatedAtom spare-in(l_14_9) end_variable begin_variable var59 -1 2 Atom spare-in(l_15_1) NegatedAtom spare-in(l_15_1) end_variable begin_variable var60 -1 2 Atom spare-in(l_15_15) NegatedAtom spare-in(l_15_15) end_variable begin_variable var61 -1 2 Atom spare-in(l_16_1) NegatedAtom spare-in(l_16_1) end_variable begin_variable var62 -1 2 Atom spare-in(l_16_10) NegatedAtom spare-in(l_16_10) end_variable begin_variable var63 -1 2 Atom spare-in(l_16_11) NegatedAtom spare-in(l_16_11) end_variable begin_variable var64 -1 2 Atom spare-in(l_16_12) NegatedAtom spare-in(l_16_12) end_variable begin_variable var65 -1 2 Atom spare-in(l_16_13) NegatedAtom spare-in(l_16_13) end_variable begin_variable var66 -1 2 Atom spare-in(l_16_14) NegatedAtom spare-in(l_16_14) end_variable begin_variable var67 -1 2 Atom spare-in(l_16_2) NegatedAtom spare-in(l_16_2) end_variable begin_variable var68 -1 2 Atom spare-in(l_16_3) NegatedAtom spare-in(l_16_3) end_variable begin_variable var69 -1 2 Atom spare-in(l_16_4) NegatedAtom spare-in(l_16_4) end_variable begin_variable var70 -1 2 Atom spare-in(l_16_5) NegatedAtom spare-in(l_16_5) end_variable begin_variable var71 -1 2 Atom spare-in(l_16_6) NegatedAtom spare-in(l_16_6) end_variable begin_variable var72 -1 2 Atom spare-in(l_16_7) NegatedAtom spare-in(l_16_7) end_variable begin_variable var73 -1 2 Atom spare-in(l_16_8) NegatedAtom spare-in(l_16_8) end_variable begin_variable var74 -1 2 Atom spare-in(l_16_9) NegatedAtom spare-in(l_16_9) end_variable begin_variable var75 -1 2 Atom spare-in(l_17_1) NegatedAtom spare-in(l_17_1) end_variable begin_variable var76 -1 2 Atom spare-in(l_17_13) NegatedAtom spare-in(l_17_13) end_variable begin_variable var77 -1 2 Atom spare-in(l_18_1) NegatedAtom spare-in(l_18_1) end_variable begin_variable var78 -1 2 Atom spare-in(l_18_10) NegatedAtom spare-in(l_18_10) end_variable begin_variable var79 -1 2 Atom spare-in(l_18_11) NegatedAtom spare-in(l_18_11) end_variable begin_variable var80 -1 2 Atom spare-in(l_18_12) NegatedAtom spare-in(l_18_12) end_variable begin_variable var81 -1 2 Atom spare-in(l_18_2) NegatedAtom spare-in(l_18_2) end_variable begin_variable var82 -1 2 Atom spare-in(l_18_3) NegatedAtom spare-in(l_18_3) end_variable begin_variable var83 -1 2 Atom spare-in(l_18_4) NegatedAtom spare-in(l_18_4) end_variable begin_variable var84 -1 2 Atom spare-in(l_18_5) NegatedAtom spare-in(l_18_5) end_variable begin_variable var85 -1 2 Atom spare-in(l_18_6) NegatedAtom spare-in(l_18_6) end_variable begin_variable var86 -1 2 Atom spare-in(l_18_7) NegatedAtom spare-in(l_18_7) end_variable begin_variable var87 -1 2 Atom spare-in(l_18_8) NegatedAtom spare-in(l_18_8) end_variable begin_variable var88 -1 2 Atom spare-in(l_18_9) NegatedAtom spare-in(l_18_9) end_variable begin_variable var89 -1 2 Atom spare-in(l_19_1) NegatedAtom spare-in(l_19_1) end_variable begin_variable var90 -1 2 Atom spare-in(l_19_11) NegatedAtom spare-in(l_19_11) end_variable begin_variable var91 -1 2 Atom spare-in(l_20_1) NegatedAtom spare-in(l_20_1) end_variable begin_variable var92 -1 2 Atom spare-in(l_20_10) NegatedAtom spare-in(l_20_10) end_variable begin_variable var93 -1 2 Atom spare-in(l_20_2) NegatedAtom spare-in(l_20_2) end_variable begin_variable var94 -1 2 Atom spare-in(l_20_3) NegatedAtom spare-in(l_20_3) end_variable begin_variable var95 -1 2 Atom spare-in(l_20_4) NegatedAtom spare-in(l_20_4) end_variable begin_variable var96 -1 2 Atom spare-in(l_20_5) NegatedAtom spare-in(l_20_5) end_variable begin_variable var97 -1 2 Atom spare-in(l_20_6) NegatedAtom spare-in(l_20_6) end_variable begin_variable var98 -1 2 Atom spare-in(l_20_7) NegatedAtom spare-in(l_20_7) end_variable begin_variable var99 -1 2 Atom spare-in(l_20_8) NegatedAtom spare-in(l_20_8) end_variable begin_variable var100 -1 2 Atom spare-in(l_20_9) NegatedAtom spare-in(l_20_9) end_variable begin_variable var101 -1 2 Atom spare-in(l_21_1) NegatedAtom spare-in(l_21_1) end_variable begin_variable var102 -1 2 Atom spare-in(l_21_9) NegatedAtom spare-in(l_21_9) end_variable begin_variable var103 -1 2 Atom spare-in(l_22_1) NegatedAtom spare-in(l_22_1) end_variable begin_variable var104 -1 2 Atom spare-in(l_22_2) NegatedAtom spare-in(l_22_2) end_variable begin_variable var105 -1 2 Atom spare-in(l_22_3) NegatedAtom spare-in(l_22_3) end_variable begin_variable var106 -1 2 Atom spare-in(l_22_4) NegatedAtom spare-in(l_22_4) end_variable begin_variable var107 -1 2 Atom spare-in(l_22_5) NegatedAtom spare-in(l_22_5) end_variable begin_variable var108 -1 2 Atom spare-in(l_22_6) NegatedAtom spare-in(l_22_6) end_variable begin_variable var109 -1 2 Atom spare-in(l_22_7) NegatedAtom spare-in(l_22_7) end_variable begin_variable var110 -1 2 Atom spare-in(l_22_8) NegatedAtom spare-in(l_22_8) end_variable begin_variable var111 -1 2 Atom spare-in(l_23_1) NegatedAtom spare-in(l_23_1) end_variable begin_variable var112 -1 2 Atom spare-in(l_23_7) NegatedAtom spare-in(l_23_7) end_variable begin_variable var113 -1 2 Atom spare-in(l_24_1) NegatedAtom spare-in(l_24_1) end_variable begin_variable var114 -1 2 Atom spare-in(l_24_2) NegatedAtom spare-in(l_24_2) end_variable begin_variable var115 -1 2 Atom spare-in(l_24_3) NegatedAtom spare-in(l_24_3) end_variable begin_variable var116 -1 2 Atom spare-in(l_24_4) NegatedAtom spare-in(l_24_4) end_variable begin_variable var117 -1 2 Atom spare-in(l_24_5) NegatedAtom spare-in(l_24_5) end_variable begin_variable var118 -1 2 Atom spare-in(l_24_6) NegatedAtom spare-in(l_24_6) end_variable begin_variable var119 -1 2 Atom spare-in(l_25_1) NegatedAtom spare-in(l_25_1) end_variable begin_variable var120 -1 2 Atom spare-in(l_25_5) NegatedAtom spare-in(l_25_5) end_variable begin_variable var121 -1 2 Atom spare-in(l_26_1) NegatedAtom spare-in(l_26_1) end_variable begin_variable var122 -1 2 Atom spare-in(l_26_2) NegatedAtom spare-in(l_26_2) end_variable begin_variable var123 -1 2 Atom spare-in(l_26_3) NegatedAtom spare-in(l_26_3) end_variable begin_variable var124 -1 2 Atom spare-in(l_26_4) NegatedAtom spare-in(l_26_4) end_variable begin_variable var125 -1 2 Atom spare-in(l_27_1) NegatedAtom spare-in(l_27_1) end_variable begin_variable var126 -1 2 Atom spare-in(l_27_3) NegatedAtom spare-in(l_27_3) end_variable begin_variable var127 -1 2 Atom spare-in(l_28_1) NegatedAtom spare-in(l_28_1) end_variable begin_variable var128 -1 2 Atom spare-in(l_28_2) NegatedAtom spare-in(l_28_2) end_variable begin_variable var129 -1 2 Atom spare-in(l_29_1) NegatedAtom spare-in(l_29_1) end_variable begin_variable var130 -1 2 Atom spare-in(l_2_1) NegatedAtom spare-in(l_2_1) end_variable begin_variable var131 -1 2 Atom spare-in(l_2_10) NegatedAtom spare-in(l_2_10) end_variable begin_variable var132 -1 2 Atom spare-in(l_2_11) NegatedAtom spare-in(l_2_11) end_variable begin_variable var133 -1 2 Atom spare-in(l_2_12) NegatedAtom spare-in(l_2_12) end_variable begin_variable var134 -1 2 Atom spare-in(l_2_13) NegatedAtom spare-in(l_2_13) end_variable begin_variable var135 -1 2 Atom spare-in(l_2_14) NegatedAtom spare-in(l_2_14) end_variable begin_variable var136 -1 2 Atom spare-in(l_2_15) NegatedAtom spare-in(l_2_15) end_variable begin_variable var137 -1 2 Atom spare-in(l_2_16) NegatedAtom spare-in(l_2_16) end_variable begin_variable var138 -1 2 Atom spare-in(l_2_17) NegatedAtom spare-in(l_2_17) end_variable begin_variable var139 -1 2 Atom spare-in(l_2_18) NegatedAtom spare-in(l_2_18) end_variable begin_variable var140 -1 2 Atom spare-in(l_2_19) NegatedAtom spare-in(l_2_19) end_variable begin_variable var141 -1 2 Atom spare-in(l_2_2) NegatedAtom spare-in(l_2_2) end_variable begin_variable var142 -1 2 Atom spare-in(l_2_20) NegatedAtom spare-in(l_2_20) end_variable begin_variable var143 -1 2 Atom spare-in(l_2_21) NegatedAtom spare-in(l_2_21) end_variable begin_variable var144 -1 2 Atom spare-in(l_2_22) NegatedAtom spare-in(l_2_22) end_variable begin_variable var145 -1 2 Atom spare-in(l_2_23) NegatedAtom spare-in(l_2_23) end_variable begin_variable var146 -1 2 Atom spare-in(l_2_24) NegatedAtom spare-in(l_2_24) end_variable begin_variable var147 -1 2 Atom spare-in(l_2_25) NegatedAtom spare-in(l_2_25) end_variable begin_variable var148 -1 2 Atom spare-in(l_2_26) NegatedAtom spare-in(l_2_26) end_variable begin_variable var149 -1 2 Atom spare-in(l_2_27) NegatedAtom spare-in(l_2_27) end_variable begin_variable var150 -1 2 Atom spare-in(l_2_28) NegatedAtom spare-in(l_2_28) end_variable begin_variable var151 -1 2 Atom spare-in(l_2_3) NegatedAtom spare-in(l_2_3) end_variable begin_variable var152 -1 2 Atom spare-in(l_2_4) NegatedAtom spare-in(l_2_4) end_variable begin_variable var153 -1 2 Atom spare-in(l_2_5) NegatedAtom spare-in(l_2_5) end_variable begin_variable var154 -1 2 Atom spare-in(l_2_6) NegatedAtom spare-in(l_2_6) end_variable begin_variable var155 -1 2 Atom spare-in(l_2_7) NegatedAtom spare-in(l_2_7) end_variable begin_variable var156 -1 2 Atom spare-in(l_2_8) NegatedAtom spare-in(l_2_8) end_variable begin_variable var157 -1 2 Atom spare-in(l_2_9) NegatedAtom spare-in(l_2_9) end_variable begin_variable var158 -1 2 Atom spare-in(l_3_1) NegatedAtom spare-in(l_3_1) end_variable begin_variable var159 -1 2 Atom spare-in(l_3_27) NegatedAtom spare-in(l_3_27) end_variable begin_variable var160 -1 2 Atom spare-in(l_4_1) NegatedAtom spare-in(l_4_1) end_variable begin_variable var161 -1 2 Atom spare-in(l_4_10) NegatedAtom spare-in(l_4_10) end_variable begin_variable var162 -1 2 Atom spare-in(l_4_11) NegatedAtom spare-in(l_4_11) end_variable begin_variable var163 -1 2 Atom spare-in(l_4_12) NegatedAtom spare-in(l_4_12) end_variable begin_variable var164 -1 2 Atom spare-in(l_4_13) NegatedAtom spare-in(l_4_13) end_variable begin_variable var165 -1 2 Atom spare-in(l_4_14) NegatedAtom spare-in(l_4_14) end_variable begin_variable var166 -1 2 Atom spare-in(l_4_15) NegatedAtom spare-in(l_4_15) end_variable begin_variable var167 -1 2 Atom spare-in(l_4_16) NegatedAtom spare-in(l_4_16) end_variable begin_variable var168 -1 2 Atom spare-in(l_4_17) NegatedAtom spare-in(l_4_17) end_variable begin_variable var169 -1 2 Atom spare-in(l_4_18) NegatedAtom spare-in(l_4_18) end_variable begin_variable var170 -1 2 Atom spare-in(l_4_19) NegatedAtom spare-in(l_4_19) end_variable begin_variable var171 -1 2 Atom spare-in(l_4_2) NegatedAtom spare-in(l_4_2) end_variable begin_variable var172 -1 2 Atom spare-in(l_4_20) NegatedAtom spare-in(l_4_20) end_variable begin_variable var173 -1 2 Atom spare-in(l_4_21) NegatedAtom spare-in(l_4_21) end_variable begin_variable var174 -1 2 Atom spare-in(l_4_22) NegatedAtom spare-in(l_4_22) end_variable begin_variable var175 -1 2 Atom spare-in(l_4_23) NegatedAtom spare-in(l_4_23) end_variable begin_variable var176 -1 2 Atom spare-in(l_4_24) NegatedAtom spare-in(l_4_24) end_variable begin_variable var177 -1 2 Atom spare-in(l_4_25) NegatedAtom spare-in(l_4_25) end_variable begin_variable var178 -1 2 Atom spare-in(l_4_26) NegatedAtom spare-in(l_4_26) end_variable begin_variable var179 -1 2 Atom spare-in(l_4_3) NegatedAtom spare-in(l_4_3) end_variable begin_variable var180 -1 2 Atom spare-in(l_4_4) NegatedAtom spare-in(l_4_4) end_variable begin_variable var181 -1 2 Atom spare-in(l_4_5) NegatedAtom spare-in(l_4_5) end_variable begin_variable var182 -1 2 Atom spare-in(l_4_6) NegatedAtom spare-in(l_4_6) end_variable begin_variable var183 -1 2 Atom spare-in(l_4_7) NegatedAtom spare-in(l_4_7) end_variable begin_variable var184 -1 2 Atom spare-in(l_4_8) NegatedAtom spare-in(l_4_8) end_variable begin_variable var185 -1 2 Atom spare-in(l_4_9) NegatedAtom spare-in(l_4_9) end_variable begin_variable var186 -1 2 Atom spare-in(l_5_1) NegatedAtom spare-in(l_5_1) end_variable begin_variable var187 -1 2 Atom spare-in(l_5_25) NegatedAtom spare-in(l_5_25) end_variable begin_variable var188 -1 2 Atom spare-in(l_6_1) NegatedAtom spare-in(l_6_1) end_variable begin_variable var189 -1 2 Atom spare-in(l_6_10) NegatedAtom spare-in(l_6_10) end_variable begin_variable var190 -1 2 Atom spare-in(l_6_11) NegatedAtom spare-in(l_6_11) end_variable begin_variable var191 -1 2 Atom spare-in(l_6_12) NegatedAtom spare-in(l_6_12) end_variable begin_variable var192 -1 2 Atom spare-in(l_6_13) NegatedAtom spare-in(l_6_13) end_variable begin_variable var193 -1 2 Atom spare-in(l_6_14) NegatedAtom spare-in(l_6_14) end_variable begin_variable var194 -1 2 Atom spare-in(l_6_15) NegatedAtom spare-in(l_6_15) end_variable begin_variable var195 -1 2 Atom spare-in(l_6_16) NegatedAtom spare-in(l_6_16) end_variable begin_variable var196 -1 2 Atom spare-in(l_6_17) NegatedAtom spare-in(l_6_17) end_variable begin_variable var197 -1 2 Atom spare-in(l_6_18) NegatedAtom spare-in(l_6_18) end_variable begin_variable var198 -1 2 Atom spare-in(l_6_19) NegatedAtom spare-in(l_6_19) end_variable begin_variable var199 -1 2 Atom spare-in(l_6_2) NegatedAtom spare-in(l_6_2) end_variable begin_variable var200 -1 2 Atom spare-in(l_6_20) NegatedAtom spare-in(l_6_20) end_variable begin_variable var201 -1 2 Atom spare-in(l_6_21) NegatedAtom spare-in(l_6_21) end_variable begin_variable var202 -1 2 Atom spare-in(l_6_22) NegatedAtom spare-in(l_6_22) end_variable begin_variable var203 -1 2 Atom spare-in(l_6_23) NegatedAtom spare-in(l_6_23) end_variable begin_variable var204 -1 2 Atom spare-in(l_6_24) NegatedAtom spare-in(l_6_24) end_variable begin_variable var205 -1 2 Atom spare-in(l_6_3) NegatedAtom spare-in(l_6_3) end_variable begin_variable var206 -1 2 Atom spare-in(l_6_4) NegatedAtom spare-in(l_6_4) end_variable begin_variable var207 -1 2 Atom spare-in(l_6_5) NegatedAtom spare-in(l_6_5) end_variable begin_variable var208 -1 2 Atom spare-in(l_6_6) NegatedAtom spare-in(l_6_6) end_variable begin_variable var209 -1 2 Atom spare-in(l_6_7) NegatedAtom spare-in(l_6_7) end_variable begin_variable var210 -1 2 Atom spare-in(l_6_8) NegatedAtom spare-in(l_6_8) end_variable begin_variable var211 -1 2 Atom spare-in(l_6_9) NegatedAtom spare-in(l_6_9) end_variable begin_variable var212 -1 2 Atom spare-in(l_7_1) NegatedAtom spare-in(l_7_1) end_variable begin_variable var213 -1 2 Atom spare-in(l_7_23) NegatedAtom spare-in(l_7_23) end_variable begin_variable var214 -1 2 Atom spare-in(l_8_1) NegatedAtom spare-in(l_8_1) end_variable begin_variable var215 -1 2 Atom spare-in(l_8_10) NegatedAtom spare-in(l_8_10) end_variable begin_variable var216 -1 2 Atom spare-in(l_8_11) NegatedAtom spare-in(l_8_11) end_variable begin_variable var217 -1 2 Atom spare-in(l_8_12) NegatedAtom spare-in(l_8_12) end_variable begin_variable var218 -1 2 Atom spare-in(l_8_13) NegatedAtom spare-in(l_8_13) end_variable begin_variable var219 -1 2 Atom spare-in(l_8_14) NegatedAtom spare-in(l_8_14) end_variable begin_variable var220 -1 2 Atom spare-in(l_8_15) NegatedAtom spare-in(l_8_15) end_variable begin_variable var221 -1 2 Atom spare-in(l_8_16) NegatedAtom spare-in(l_8_16) end_variable begin_variable var222 -1 2 Atom spare-in(l_8_17) NegatedAtom spare-in(l_8_17) end_variable begin_variable var223 -1 2 Atom spare-in(l_8_18) NegatedAtom spare-in(l_8_18) end_variable begin_variable var224 -1 2 Atom spare-in(l_8_19) NegatedAtom spare-in(l_8_19) end_variable begin_variable var225 -1 2 Atom spare-in(l_8_2) NegatedAtom spare-in(l_8_2) end_variable begin_variable var226 -1 2 Atom spare-in(l_8_20) NegatedAtom spare-in(l_8_20) end_variable begin_variable var227 -1 2 Atom spare-in(l_8_21) NegatedAtom spare-in(l_8_21) end_variable begin_variable var228 -1 2 Atom spare-in(l_8_22) NegatedAtom spare-in(l_8_22) end_variable begin_variable var229 -1 2 Atom spare-in(l_8_3) NegatedAtom spare-in(l_8_3) end_variable begin_variable var230 -1 2 Atom spare-in(l_8_4) NegatedAtom spare-in(l_8_4) end_variable begin_variable var231 -1 2 Atom spare-in(l_8_5) NegatedAtom spare-in(l_8_5) end_variable begin_variable var232 -1 2 Atom spare-in(l_8_6) NegatedAtom spare-in(l_8_6) end_variable begin_variable var233 -1 2 Atom spare-in(l_8_7) NegatedAtom spare-in(l_8_7) end_variable begin_variable var234 -1 2 Atom spare-in(l_8_8) NegatedAtom spare-in(l_8_8) end_variable begin_variable var235 -1 2 Atom spare-in(l_8_9) NegatedAtom spare-in(l_8_9) end_variable begin_variable var236 -1 2 Atom spare-in(l_9_1) NegatedAtom spare-in(l_9_1) end_variable begin_variable var237 -1 2 Atom spare-in(l_9_21) NegatedAtom spare-in(l_9_21) end_variable begin_variable var238 -1 435 Atom vehicle-at(l_10_1) Atom vehicle-at(l_10_10) Atom vehicle-at(l_10_11) Atom vehicle-at(l_10_12) Atom vehicle-at(l_10_13) Atom vehicle-at(l_10_14) Atom vehicle-at(l_10_15) Atom vehicle-at(l_10_16) Atom vehicle-at(l_10_17) Atom vehicle-at(l_10_18) Atom vehicle-at(l_10_19) Atom vehicle-at(l_10_2) Atom vehicle-at(l_10_20) Atom vehicle-at(l_10_3) Atom vehicle-at(l_10_4) Atom vehicle-at(l_10_5) Atom vehicle-at(l_10_6) Atom vehicle-at(l_10_7) Atom vehicle-at(l_10_8) Atom vehicle-at(l_10_9) Atom vehicle-at(l_11_1) Atom vehicle-at(l_11_10) Atom vehicle-at(l_11_11) Atom vehicle-at(l_11_12) Atom vehicle-at(l_11_13) Atom vehicle-at(l_11_14) Atom vehicle-at(l_11_15) Atom vehicle-at(l_11_16) Atom vehicle-at(l_11_17) Atom vehicle-at(l_11_18) Atom vehicle-at(l_11_19) Atom vehicle-at(l_11_2) Atom vehicle-at(l_11_3) Atom vehicle-at(l_11_4) Atom vehicle-at(l_11_5) Atom vehicle-at(l_11_6) Atom vehicle-at(l_11_7) Atom vehicle-at(l_11_8) Atom vehicle-at(l_11_9) Atom vehicle-at(l_12_1) Atom vehicle-at(l_12_10) Atom vehicle-at(l_12_11) Atom vehicle-at(l_12_12) Atom vehicle-at(l_12_13) Atom vehicle-at(l_12_14) Atom vehicle-at(l_12_15) Atom vehicle-at(l_12_16) Atom vehicle-at(l_12_17) Atom vehicle-at(l_12_18) Atom vehicle-at(l_12_2) Atom vehicle-at(l_12_3) Atom vehicle-at(l_12_4) Atom vehicle-at(l_12_5) Atom vehicle-at(l_12_6) Atom vehicle-at(l_12_7) Atom vehicle-at(l_12_8) Atom vehicle-at(l_12_9) Atom vehicle-at(l_13_1) Atom vehicle-at(l_13_10) Atom vehicle-at(l_13_11) Atom vehicle-at(l_13_12) Atom vehicle-at(l_13_13) Atom vehicle-at(l_13_14) Atom vehicle-at(l_13_15) Atom vehicle-at(l_13_16) Atom vehicle-at(l_13_17) Atom vehicle-at(l_13_2) Atom vehicle-at(l_13_3) Atom vehicle-at(l_13_4) Atom vehicle-at(l_13_5) Atom vehicle-at(l_13_6) Atom vehicle-at(l_13_7) Atom vehicle-at(l_13_8) Atom vehicle-at(l_13_9) Atom vehicle-at(l_14_1) Atom vehicle-at(l_14_10) Atom vehicle-at(l_14_11) Atom vehicle-at(l_14_12) Atom vehicle-at(l_14_13) Atom vehicle-at(l_14_14) Atom vehicle-at(l_14_15) Atom vehicle-at(l_14_16) Atom vehicle-at(l_14_2) Atom vehicle-at(l_14_3) Atom vehicle-at(l_14_4) Atom vehicle-at(l_14_5) Atom vehicle-at(l_14_6) Atom vehicle-at(l_14_7) Atom vehicle-at(l_14_8) Atom vehicle-at(l_14_9) Atom vehicle-at(l_15_1) Atom vehicle-at(l_15_10) Atom vehicle-at(l_15_11) Atom vehicle-at(l_15_12) Atom vehicle-at(l_15_13) Atom vehicle-at(l_15_14) Atom vehicle-at(l_15_15) Atom vehicle-at(l_15_2) Atom vehicle-at(l_15_3) Atom vehicle-at(l_15_4) Atom vehicle-at(l_15_5) Atom vehicle-at(l_15_6) Atom vehicle-at(l_15_7) Atom vehicle-at(l_15_8) Atom vehicle-at(l_15_9) Atom vehicle-at(l_16_1) Atom vehicle-at(l_16_10) Atom vehicle-at(l_16_11) Atom vehicle-at(l_16_12) Atom vehicle-at(l_16_13) Atom vehicle-at(l_16_14) Atom vehicle-at(l_16_2) Atom vehicle-at(l_16_3) Atom vehicle-at(l_16_4) Atom vehicle-at(l_16_5) Atom vehicle-at(l_16_6) Atom vehicle-at(l_16_7) Atom vehicle-at(l_16_8) Atom vehicle-at(l_16_9) Atom vehicle-at(l_17_1) Atom vehicle-at(l_17_10) Atom vehicle-at(l_17_11) Atom vehicle-at(l_17_12) Atom vehicle-at(l_17_13) Atom vehicle-at(l_17_2) Atom vehicle-at(l_17_3) Atom vehicle-at(l_17_4) Atom vehicle-at(l_17_5) Atom vehicle-at(l_17_6) Atom vehicle-at(l_17_7) Atom vehicle-at(l_17_8) Atom vehicle-at(l_17_9) Atom vehicle-at(l_18_1) Atom vehicle-at(l_18_10) Atom vehicle-at(l_18_11) Atom vehicle-at(l_18_12) Atom vehicle-at(l_18_2) Atom vehicle-at(l_18_3) Atom vehicle-at(l_18_4) Atom vehicle-at(l_18_5) Atom vehicle-at(l_18_6) Atom vehicle-at(l_18_7) Atom vehicle-at(l_18_8) Atom vehicle-at(l_18_9) Atom vehicle-at(l_19_1) Atom vehicle-at(l_19_10) Atom vehicle-at(l_19_11) Atom vehicle-at(l_19_2) Atom vehicle-at(l_19_3) Atom vehicle-at(l_19_4) Atom vehicle-at(l_19_5) Atom vehicle-at(l_19_6) Atom vehicle-at(l_19_7) Atom vehicle-at(l_19_8) Atom vehicle-at(l_19_9) Atom vehicle-at(l_1_1) Atom vehicle-at(l_1_10) Atom vehicle-at(l_1_11) Atom vehicle-at(l_1_12) Atom vehicle-at(l_1_13) Atom vehicle-at(l_1_14) Atom vehicle-at(l_1_15) Atom vehicle-at(l_1_16) Atom vehicle-at(l_1_17) Atom vehicle-at(l_1_18) Atom vehicle-at(l_1_19) Atom vehicle-at(l_1_2) Atom vehicle-at(l_1_20) Atom vehicle-at(l_1_21) Atom vehicle-at(l_1_22) Atom vehicle-at(l_1_23) Atom vehicle-at(l_1_24) Atom vehicle-at(l_1_25) Atom vehicle-at(l_1_26) Atom vehicle-at(l_1_27) Atom vehicle-at(l_1_28) Atom vehicle-at(l_1_29) Atom vehicle-at(l_1_3) Atom vehicle-at(l_1_4) Atom vehicle-at(l_1_5) Atom vehicle-at(l_1_6) Atom vehicle-at(l_1_7) Atom vehicle-at(l_1_8) Atom vehicle-at(l_1_9) Atom vehicle-at(l_20_1) Atom vehicle-at(l_20_10) Atom vehicle-at(l_20_2) Atom vehicle-at(l_20_3) Atom vehicle-at(l_20_4) Atom vehicle-at(l_20_5) Atom vehicle-at(l_20_6) Atom vehicle-at(l_20_7) Atom vehicle-at(l_20_8) Atom vehicle-at(l_20_9) Atom vehicle-at(l_21_1) Atom vehicle-at(l_21_2) Atom vehicle-at(l_21_3) Atom vehicle-at(l_21_4) Atom vehicle-at(l_21_5) Atom vehicle-at(l_21_6) Atom vehicle-at(l_21_7) Atom vehicle-at(l_21_8) Atom vehicle-at(l_21_9) Atom vehicle-at(l_22_1) Atom vehicle-at(l_22_2) Atom vehicle-at(l_22_3) Atom vehicle-at(l_22_4) Atom vehicle-at(l_22_5) Atom vehicle-at(l_22_6) Atom vehicle-at(l_22_7) Atom vehicle-at(l_22_8) Atom vehicle-at(l_23_1) Atom vehicle-at(l_23_2) Atom vehicle-at(l_23_3) Atom vehicle-at(l_23_4) Atom vehicle-at(l_23_5) Atom vehicle-at(l_23_6) Atom vehicle-at(l_23_7) Atom vehicle-at(l_24_1) Atom vehicle-at(l_24_2) Atom vehicle-at(l_24_3) Atom vehicle-at(l_24_4) Atom vehicle-at(l_24_5) Atom vehicle-at(l_24_6) Atom vehicle-at(l_25_1) Atom vehicle-at(l_25_2) Atom vehicle-at(l_25_3) Atom vehicle-at(l_25_4) Atom vehicle-at(l_25_5) Atom vehicle-at(l_26_1) Atom vehicle-at(l_26_2) Atom vehicle-at(l_26_3) Atom vehicle-at(l_26_4) Atom vehicle-at(l_27_1) Atom vehicle-at(l_27_2) Atom vehicle-at(l_27_3) Atom vehicle-at(l_28_1) Atom vehicle-at(l_28_2) Atom vehicle-at(l_29_1) Atom vehicle-at(l_2_1) Atom vehicle-at(l_2_10) Atom vehicle-at(l_2_11) Atom vehicle-at(l_2_12) Atom vehicle-at(l_2_13) Atom vehicle-at(l_2_14) Atom vehicle-at(l_2_15) Atom vehicle-at(l_2_16) Atom vehicle-at(l_2_17) Atom vehicle-at(l_2_18) Atom vehicle-at(l_2_19) Atom vehicle-at(l_2_2) Atom vehicle-at(l_2_20) Atom vehicle-at(l_2_21) Atom vehicle-at(l_2_22) Atom vehicle-at(l_2_23) Atom vehicle-at(l_2_24) Atom vehicle-at(l_2_25) Atom vehicle-at(l_2_26) Atom vehicle-at(l_2_27) Atom vehicle-at(l_2_28) Atom vehicle-at(l_2_3) Atom vehicle-at(l_2_4) Atom vehicle-at(l_2_5) Atom vehicle-at(l_2_6) Atom vehicle-at(l_2_7) Atom vehicle-at(l_2_8) Atom vehicle-at(l_2_9) Atom vehicle-at(l_3_1) Atom vehicle-at(l_3_10) Atom vehicle-at(l_3_11) Atom vehicle-at(l_3_12) Atom vehicle-at(l_3_13) Atom vehicle-at(l_3_14) Atom vehicle-at(l_3_15) Atom vehicle-at(l_3_16) Atom vehicle-at(l_3_17) Atom vehicle-at(l_3_18) Atom vehicle-at(l_3_19) Atom vehicle-at(l_3_2) Atom vehicle-at(l_3_20) Atom vehicle-at(l_3_21) Atom vehicle-at(l_3_22) Atom vehicle-at(l_3_23) Atom vehicle-at(l_3_24) Atom vehicle-at(l_3_25) Atom vehicle-at(l_3_26) Atom vehicle-at(l_3_27) Atom vehicle-at(l_3_3) Atom vehicle-at(l_3_4) Atom vehicle-at(l_3_5) Atom vehicle-at(l_3_6) Atom vehicle-at(l_3_7) Atom vehicle-at(l_3_8) Atom vehicle-at(l_3_9) Atom vehicle-at(l_4_1) Atom vehicle-at(l_4_10) Atom vehicle-at(l_4_11) Atom vehicle-at(l_4_12) Atom vehicle-at(l_4_13) Atom vehicle-at(l_4_14) Atom vehicle-at(l_4_15) Atom vehicle-at(l_4_16) Atom vehicle-at(l_4_17) Atom vehicle-at(l_4_18) Atom vehicle-at(l_4_19) Atom vehicle-at(l_4_2) Atom vehicle-at(l_4_20) Atom vehicle-at(l_4_21) Atom vehicle-at(l_4_22) Atom vehicle-at(l_4_23) Atom vehicle-at(l_4_24) Atom vehicle-at(l_4_25) Atom vehicle-at(l_4_26) Atom vehicle-at(l_4_3) Atom vehicle-at(l_4_4) Atom vehicle-at(l_4_5) Atom vehicle-at(l_4_6) Atom vehicle-at(l_4_7) Atom vehicle-at(l_4_8) Atom vehicle-at(l_4_9) Atom vehicle-at(l_5_1) Atom vehicle-at(l_5_10) Atom vehicle-at(l_5_11) Atom vehicle-at(l_5_12) Atom vehicle-at(l_5_13) Atom vehicle-at(l_5_14) Atom vehicle-at(l_5_15) Atom vehicle-at(l_5_16) Atom vehicle-at(l_5_17) Atom vehicle-at(l_5_18) Atom vehicle-at(l_5_19) Atom vehicle-at(l_5_2) Atom vehicle-at(l_5_20) Atom vehicle-at(l_5_21) Atom vehicle-at(l_5_22) Atom vehicle-at(l_5_23) Atom vehicle-at(l_5_24) Atom vehicle-at(l_5_25) Atom vehicle-at(l_5_3) Atom vehicle-at(l_5_4) Atom vehicle-at(l_5_5) Atom vehicle-at(l_5_6) Atom vehicle-at(l_5_7) Atom vehicle-at(l_5_8) Atom vehicle-at(l_5_9) Atom vehicle-at(l_6_1) Atom vehicle-at(l_6_10) Atom vehicle-at(l_6_11) Atom vehicle-at(l_6_12) Atom vehicle-at(l_6_13) Atom vehicle-at(l_6_14) Atom vehicle-at(l_6_15) Atom vehicle-at(l_6_16) Atom vehicle-at(l_6_17) Atom vehicle-at(l_6_18) Atom vehicle-at(l_6_19) Atom vehicle-at(l_6_2) Atom vehicle-at(l_6_20) Atom vehicle-at(l_6_21) Atom vehicle-at(l_6_22) Atom vehicle-at(l_6_23) Atom vehicle-at(l_6_24) Atom vehicle-at(l_6_3) Atom vehicle-at(l_6_4) Atom vehicle-at(l_6_5) Atom vehicle-at(l_6_6) Atom vehicle-at(l_6_7) Atom vehicle-at(l_6_8) Atom vehicle-at(l_6_9) Atom vehicle-at(l_7_1) Atom vehicle-at(l_7_10) Atom vehicle-at(l_7_11) Atom vehicle-at(l_7_12) Atom vehicle-at(l_7_13) Atom vehicle-at(l_7_14) Atom vehicle-at(l_7_15) Atom vehicle-at(l_7_16) Atom vehicle-at(l_7_17) Atom vehicle-at(l_7_18) Atom vehicle-at(l_7_19) Atom vehicle-at(l_7_2) Atom vehicle-at(l_7_20) Atom vehicle-at(l_7_21) Atom vehicle-at(l_7_22) Atom vehicle-at(l_7_23) Atom vehicle-at(l_7_3) Atom vehicle-at(l_7_4) Atom vehicle-at(l_7_5) Atom vehicle-at(l_7_6) Atom vehicle-at(l_7_7) Atom vehicle-at(l_7_8) Atom vehicle-at(l_7_9) Atom vehicle-at(l_8_1) Atom vehicle-at(l_8_10) Atom vehicle-at(l_8_11) Atom vehicle-at(l_8_12) Atom vehicle-at(l_8_13) Atom vehicle-at(l_8_14) Atom vehicle-at(l_8_15) Atom vehicle-at(l_8_16) Atom vehicle-at(l_8_17) Atom vehicle-at(l_8_18) Atom vehicle-at(l_8_19) Atom vehicle-at(l_8_2) Atom vehicle-at(l_8_20) Atom vehicle-at(l_8_21) Atom vehicle-at(l_8_22) Atom vehicle-at(l_8_3) Atom vehicle-at(l_8_4) Atom vehicle-at(l_8_5) Atom vehicle-at(l_8_6) Atom vehicle-at(l_8_7) Atom vehicle-at(l_8_8) Atom vehicle-at(l_8_9) Atom vehicle-at(l_9_1) Atom vehicle-at(l_9_10) Atom vehicle-at(l_9_11) Atom vehicle-at(l_9_12) Atom vehicle-at(l_9_13) Atom vehicle-at(l_9_14) Atom vehicle-at(l_9_15) Atom vehicle-at(l_9_16) Atom vehicle-at(l_9_17) Atom vehicle-at(l_9_18) Atom vehicle-at(l_9_19) Atom vehicle-at(l_9_2) Atom vehicle-at(l_9_20) Atom vehicle-at(l_9_21) Atom vehicle-at(l_9_3) Atom vehicle-at(l_9_4) Atom vehicle-at(l_9_5) Atom vehicle-at(l_9_6) Atom vehicle-at(l_9_7) Atom vehicle-at(l_9_8) Atom vehicle-at(l_9_9) end_variable 1 begin_mutex_group 435 238 0 238 1 238 2 238 3 238 4 238 5 238 6 238 7 238 8 238 9 238 10 238 11 238 12 238 13 238 14 238 15 238 16 238 17 238 18 238 19 238 20 238 21 238 22 238 23 238 24 238 25 238 26 238 27 238 28 238 29 238 30 238 31 238 32 238 33 238 34 238 35 238 36 238 37 238 38 238 39 238 40 238 41 238 42 238 43 238 44 238 45 238 46 238 47 238 48 238 49 238 50 238 51 238 52 238 53 238 54 238 55 238 56 238 57 238 58 238 59 238 60 238 61 238 62 238 63 238 64 238 65 238 66 238 67 238 68 238 69 238 70 238 71 238 72 238 73 238 74 238 75 238 76 238 77 238 78 238 79 238 80 238 81 238 82 238 83 238 84 238 85 238 86 238 87 238 88 238 89 238 90 238 91 238 92 238 93 238 94 238 95 238 96 238 97 238 98 238 99 238 100 238 101 238 102 238 103 238 104 238 105 238 106 238 107 238 108 238 109 238 110 238 111 238 112 238 113 238 114 238 115 238 116 238 117 238 118 238 119 238 120 238 121 238 122 238 123 238 124 238 125 238 126 238 127 238 128 238 129 238 130 238 131 238 132 238 133 238 134 238 135 238 136 238 137 238 138 238 139 238 140 238 141 238 142 238 143 238 144 238 145 238 146 238 147 238 148 238 149 238 150 238 151 238 152 238 153 238 154 238 155 238 156 238 157 238 158 238 159 238 160 238 161 238 162 238 163 238 164 238 165 238 166 238 167 238 168 238 169 238 170 238 171 238 172 238 173 238 174 238 175 238 176 238 177 238 178 238 179 238 180 238 181 238 182 238 183 238 184 238 185 238 186 238 187 238 188 238 189 238 190 238 191 238 192 238 193 238 194 238 195 238 196 238 197 238 198 238 199 238 200 238 201 238 202 238 203 238 204 238 205 238 206 238 207 238 208 238 209 238 210 238 211 238 212 238 213 238 214 238 215 238 216 238 217 238 218 238 219 238 220 238 221 238 222 238 223 238 224 238 225 238 226 238 227 238 228 238 229 238 230 238 231 238 232 238 233 238 234 238 235 238 236 238 237 238 238 238 239 238 240 238 241 238 242 238 243 238 244 238 245 238 246 238 247 238 248 238 249 238 250 238 251 238 252 238 253 238 254 238 255 238 256 238 257 238 258 238 259 238 260 238 261 238 262 238 263 238 264 238 265 238 266 238 267 238 268 238 269 238 270 238 271 238 272 238 273 238 274 238 275 238 276 238 277 238 278 238 279 238 280 238 281 238 282 238 283 238 284 238 285 238 286 238 287 238 288 238 289 238 290 238 291 238 292 238 293 238 294 238 295 238 296 238 297 238 298 238 299 238 300 238 301 238 302 238 303 238 304 238 305 238 306 238 307 238 308 238 309 238 310 238 311 238 312 238 313 238 314 238 315 238 316 238 317 238 318 238 319 238 320 238 321 238 322 238 323 238 324 238 325 238 326 238 327 238 328 238 329 238 330 238 331 238 332 238 333 238 334 238 335 238 336 238 337 238 338 238 339 238 340 238 341 238 342 238 343 238 344 238 345 238 346 238 347 238 348 238 349 238 350 238 351 238 352 238 353 238 354 238 355 238 356 238 357 238 358 238 359 238 360 238 361 238 362 238 363 238 364 238 365 238 366 238 367 238 368 238 369 238 370 238 371 238 372 238 373 238 374 238 375 238 376 238 377 238 378 238 379 238 380 238 381 238 382 238 383 238 384 238 385 238 386 238 387 238 388 238 389 238 390 238 391 238 392 238 393 238 394 238 395 238 396 238 397 238 398 238 399 238 400 238 401 238 402 238 403 238 404 238 405 238 406 238 407 238 408 238 409 238 410 238 411 238 412 238 413 238 414 238 415 238 416 238 417 238 418 238 419 238 420 238 421 238 422 238 423 238 424 238 425 238 426 238 427 238 428 238 429 238 430 238 431 238 432 238 433 238 434 end_mutex_group begin_state 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 155 end_state begin_goal 1 238 176 end_goal 1077 begin_operator change-tire l_10_1 2 1 0 238 0 1 2 0 0 -1 0 0 1 0 1 0 end_operator begin_operator change-tire l_10_10 2 2 0 238 1 1 2 0 0 -1 0 0 2 0 1 0 end_operator begin_operator change-tire l_10_11 2 3 0 238 2 1 2 0 0 -1 0 0 3 0 1 0 end_operator begin_operator change-tire l_10_12 2 4 0 238 3 1 2 0 0 -1 0 0 4 0 1 0 end_operator begin_operator change-tire l_10_13 2 5 0 238 4 1 2 0 0 -1 0 0 5 0 1 0 end_operator begin_operator change-tire l_10_14 2 6 0 238 5 1 2 0 0 -1 0 0 6 0 1 0 end_operator begin_operator change-tire l_10_15 2 7 0 238 6 1 2 0 0 -1 0 0 7 0 1 0 end_operator begin_operator change-tire l_10_16 2 8 0 238 7 1 2 0 0 -1 0 0 8 0 1 0 end_operator begin_operator change-tire l_10_17 2 9 0 238 8 1 2 0 0 -1 0 0 9 0 1 0 end_operator begin_operator change-tire l_10_18 2 10 0 238 9 1 2 0 0 -1 0 0 10 0 1 0 end_operator begin_operator change-tire l_10_19 2 11 0 238 10 1 2 0 0 -1 0 0 11 0 1 0 end_operator begin_operator change-tire l_10_2 2 12 0 238 11 1 2 0 0 -1 0 0 12 0 1 0 end_operator begin_operator change-tire l_10_20 2 13 0 238 12 1 2 0 0 -1 0 0 13 0 1 0 end_operator begin_operator change-tire l_10_3 2 14 0 238 13 1 2 0 0 -1 0 0 14 0 1 0 end_operator begin_operator change-tire l_10_4 2 15 0 238 14 1 2 0 0 -1 0 0 15 0 1 0 end_operator begin_operator change-tire l_10_5 2 16 0 238 15 1 2 0 0 -1 0 0 16 0 1 0 end_operator begin_operator change-tire l_10_6 2 17 0 238 16 1 2 0 0 -1 0 0 17 0 1 0 end_operator begin_operator change-tire l_10_7 2 18 0 238 17 1 2 0 0 -1 0 0 18 0 1 0 end_operator begin_operator change-tire l_10_8 2 19 0 238 18 1 2 0 0 -1 0 0 19 0 1 0 end_operator begin_operator change-tire l_10_9 2 20 0 238 19 1 2 0 0 -1 0 0 20 0 1 0 end_operator begin_operator change-tire l_11_1 2 21 0 238 20 1 2 0 0 -1 0 0 21 0 1 0 end_operator begin_operator change-tire l_11_19 2 22 0 238 30 1 2 0 0 -1 0 0 22 0 1 0 end_operator begin_operator change-tire l_12_1 2 23 0 238 39 1 2 0 0 -1 0 0 23 0 1 0 end_operator begin_operator change-tire l_12_10 2 24 0 238 40 1 2 0 0 -1 0 0 24 0 1 0 end_operator begin_operator change-tire l_12_11 2 25 0 238 41 1 2 0 0 -1 0 0 25 0 1 0 end_operator begin_operator change-tire l_12_12 2 26 0 238 42 1 2 0 0 -1 0 0 26 0 1 0 end_operator begin_operator change-tire l_12_13 2 27 0 238 43 1 2 0 0 -1 0 0 27 0 1 0 end_operator begin_operator change-tire l_12_14 2 28 0 238 44 1 2 0 0 -1 0 0 28 0 1 0 end_operator begin_operator change-tire l_12_15 2 29 0 238 45 1 2 0 0 -1 0 0 29 0 1 0 end_operator begin_operator change-tire l_12_16 2 30 0 238 46 1 2 0 0 -1 0 0 30 0 1 0 end_operator begin_operator change-tire l_12_17 2 31 0 238 47 1 2 0 0 -1 0 0 31 0 1 0 end_operator begin_operator change-tire l_12_18 2 32 0 238 48 1 2 0 0 -1 0 0 32 0 1 0 end_operator begin_operator change-tire l_12_2 2 33 0 238 49 1 2 0 0 -1 0 0 33 0 1 0 end_operator begin_operator change-tire l_12_3 2 34 0 238 50 1 2 0 0 -1 0 0 34 0 1 0 end_operator begin_operator change-tire l_12_4 2 35 0 238 51 1 2 0 0 -1 0 0 35 0 1 0 end_operator begin_operator change-tire l_12_5 2 36 0 238 52 1 2 0 0 -1 0 0 36 0 1 0 end_operator begin_operator change-tire l_12_6 2 37 0 238 53 1 2 0 0 -1 0 0 37 0 1 0 end_operator begin_operator change-tire l_12_7 2 38 0 238 54 1 2 0 0 -1 0 0 38 0 1 0 end_operator begin_operator change-tire l_12_8 2 39 0 238 55 1 2 0 0 -1 0 0 39 0 1 0 end_operator begin_operator change-tire l_12_9 2 40 0 238 56 1 2 0 0 -1 0 0 40 0 1 0 end_operator begin_operator change-tire l_13_1 2 41 0 238 57 1 2 0 0 -1 0 0 41 0 1 0 end_operator begin_operator change-tire l_13_17 2 42 0 238 65 1 2 0 0 -1 0 0 42 0 1 0 end_operator begin_operator change-tire l_14_1 2 43 0 238 74 1 2 0 0 -1 0 0 43 0 1 0 end_operator begin_operator change-tire l_14_10 2 44 0 238 75 1 2 0 0 -1 0 0 44 0 1 0 end_operator begin_operator change-tire l_14_11 2 45 0 238 76 1 2 0 0 -1 0 0 45 0 1 0 end_operator begin_operator change-tire l_14_12 2 46 0 238 77 1 2 0 0 -1 0 0 46 0 1 0 end_operator begin_operator change-tire l_14_13 2 47 0 238 78 1 2 0 0 -1 0 0 47 0 1 0 end_operator begin_operator change-tire l_14_14 2 48 0 238 79 1 2 0 0 -1 0 0 48 0 1 0 end_operator begin_operator change-tire l_14_15 2 49 0 238 80 1 2 0 0 -1 0 0 49 0 1 0 end_operator begin_operator change-tire l_14_16 2 50 0 238 81 1 2 0 0 -1 0 0 50 0 1 0 end_operator begin_operator change-tire l_14_2 2 51 0 238 82 1 2 0 0 -1 0 0 51 0 1 0 end_operator begin_operator change-tire l_14_3 2 52 0 238 83 1 2 0 0 -1 0 0 52 0 1 0 end_operator begin_operator change-tire l_14_4 2 53 0 238 84 1 2 0 0 -1 0 0 53 0 1 0 end_operator begin_operator change-tire l_14_5 2 54 0 238 85 1 2 0 0 -1 0 0 54 0 1 0 end_operator begin_operator change-tire l_14_6 2 55 0 238 86 1 2 0 0 -1 0 0 55 0 1 0 end_operator begin_operator change-tire l_14_7 2 56 0 238 87 1 2 0 0 -1 0 0 56 0 1 0 end_operator begin_operator change-tire l_14_8 2 57 0 238 88 1 2 0 0 -1 0 0 57 0 1 0 end_operator begin_operator change-tire l_14_9 2 58 0 238 89 1 2 0 0 -1 0 0 58 0 1 0 end_operator begin_operator change-tire l_15_1 2 59 0 238 90 1 2 0 0 -1 0 0 59 0 1 0 end_operator begin_operator change-tire l_15_15 2 60 0 238 96 1 2 0 0 -1 0 0 60 0 1 0 end_operator begin_operator change-tire l_16_1 2 61 0 238 105 1 2 0 0 -1 0 0 61 0 1 0 end_operator begin_operator change-tire l_16_10 2 62 0 238 106 1 2 0 0 -1 0 0 62 0 1 0 end_operator begin_operator change-tire l_16_11 2 63 0 238 107 1 2 0 0 -1 0 0 63 0 1 0 end_operator begin_operator change-tire l_16_12 2 64 0 238 108 1 2 0 0 -1 0 0 64 0 1 0 end_operator begin_operator change-tire l_16_13 2 65 0 238 109 1 2 0 0 -1 0 0 65 0 1 0 end_operator begin_operator change-tire l_16_14 2 66 0 238 110 1 2 0 0 -1 0 0 66 0 1 0 end_operator begin_operator change-tire l_16_2 2 67 0 238 111 1 2 0 0 -1 0 0 67 0 1 0 end_operator begin_operator change-tire l_16_3 2 68 0 238 112 1 2 0 0 -1 0 0 68 0 1 0 end_operator begin_operator change-tire l_16_4 2 69 0 238 113 1 2 0 0 -1 0 0 69 0 1 0 end_operator begin_operator change-tire l_16_5 2 70 0 238 114 1 2 0 0 -1 0 0 70 0 1 0 end_operator begin_operator change-tire l_16_6 2 71 0 238 115 1 2 0 0 -1 0 0 71 0 1 0 end_operator begin_operator change-tire l_16_7 2 72 0 238 116 1 2 0 0 -1 0 0 72 0 1 0 end_operator begin_operator change-tire l_16_8 2 73 0 238 117 1 2 0 0 -1 0 0 73 0 1 0 end_operator begin_operator change-tire l_16_9 2 74 0 238 118 1 2 0 0 -1 0 0 74 0 1 0 end_operator begin_operator change-tire l_17_1 2 75 0 238 119 1 2 0 0 -1 0 0 75 0 1 0 end_operator begin_operator change-tire l_17_13 2 76 0 238 123 1 2 0 0 -1 0 0 76 0 1 0 end_operator begin_operator change-tire l_18_1 2 77 0 238 132 1 2 0 0 -1 0 0 77 0 1 0 end_operator begin_operator change-tire l_18_10 2 78 0 238 133 1 2 0 0 -1 0 0 78 0 1 0 end_operator begin_operator change-tire l_18_11 2 79 0 238 134 1 2 0 0 -1 0 0 79 0 1 0 end_operator begin_operator change-tire l_18_12 2 80 0 238 135 1 2 0 0 -1 0 0 80 0 1 0 end_operator begin_operator change-tire l_18_2 2 81 0 238 136 1 2 0 0 -1 0 0 81 0 1 0 end_operator begin_operator change-tire l_18_3 2 82 0 238 137 1 2 0 0 -1 0 0 82 0 1 0 end_operator begin_operator change-tire l_18_4 2 83 0 238 138 1 2 0 0 -1 0 0 83 0 1 0 end_operator begin_operator change-tire l_18_5 2 84 0 238 139 1 2 0 0 -1 0 0 84 0 1 0 end_operator begin_operator change-tire l_18_6 2 85 0 238 140 1 2 0 0 -1 0 0 85 0 1 0 end_operator begin_operator change-tire l_18_7 2 86 0 238 141 1 2 0 0 -1 0 0 86 0 1 0 end_operator begin_operator change-tire l_18_8 2 87 0 238 142 1 2 0 0 -1 0 0 87 0 1 0 end_operator begin_operator change-tire l_18_9 2 88 0 238 143 1 2 0 0 -1 0 0 88 0 1 0 end_operator begin_operator change-tire l_19_1 2 89 0 238 144 1 2 0 0 -1 0 0 89 0 1 0 end_operator begin_operator change-tire l_19_11 2 90 0 238 146 1 2 0 0 -1 0 0 90 0 1 0 end_operator begin_operator change-tire l_20_1 2 91 0 238 184 1 2 0 0 -1 0 0 91 0 1 0 end_operator begin_operator change-tire l_20_10 2 92 0 238 185 1 2 0 0 -1 0 0 92 0 1 0 end_operator begin_operator change-tire l_20_2 2 93 0 238 186 1 2 0 0 -1 0 0 93 0 1 0 end_operator begin_operator change-tire l_20_3 2 94 0 238 187 1 2 0 0 -1 0 0 94 0 1 0 end_operator begin_operator change-tire l_20_4 2 95 0 238 188 1 2 0 0 -1 0 0 95 0 1 0 end_operator begin_operator change-tire l_20_5 2 96 0 238 189 1 2 0 0 -1 0 0 96 0 1 0 end_operator begin_operator change-tire l_20_6 2 97 0 238 190 1 2 0 0 -1 0 0 97 0 1 0 end_operator begin_operator change-tire l_20_7 2 98 0 238 191 1 2 0 0 -1 0 0 98 0 1 0 end_operator begin_operator change-tire l_20_8 2 99 0 238 192 1 2 0 0 -1 0 0 99 0 1 0 end_operator begin_operator change-tire l_20_9 2 100 0 238 193 1 2 0 0 -1 0 0 100 0 1 0 end_operator begin_operator change-tire l_21_1 2 101 0 238 194 1 2 0 0 -1 0 0 101 0 1 0 end_operator begin_operator change-tire l_21_9 2 102 0 238 202 1 2 0 0 -1 0 0 102 0 1 0 end_operator begin_operator change-tire l_22_1 2 103 0 238 203 1 2 0 0 -1 0 0 103 0 1 0 end_operator begin_operator change-tire l_22_2 2 104 0 238 204 1 2 0 0 -1 0 0 104 0 1 0 end_operator begin_operator change-tire l_22_3 2 105 0 238 205 1 2 0 0 -1 0 0 105 0 1 0 end_operator begin_operator change-tire l_22_4 2 106 0 238 206 1 2 0 0 -1 0 0 106 0 1 0 end_operator begin_operator change-tire l_22_5 2 107 0 238 207 1 2 0 0 -1 0 0 107 0 1 0 end_operator begin_operator change-tire l_22_6 2 108 0 238 208 1 2 0 0 -1 0 0 108 0 1 0 end_operator begin_operator change-tire l_22_7 2 109 0 238 209 1 2 0 0 -1 0 0 109 0 1 0 end_operator begin_operator change-tire l_22_8 2 110 0 238 210 1 2 0 0 -1 0 0 110 0 1 0 end_operator begin_operator change-tire l_23_1 2 111 0 238 211 1 2 0 0 -1 0 0 111 0 1 0 end_operator begin_operator change-tire l_23_7 2 112 0 238 217 1 2 0 0 -1 0 0 112 0 1 0 end_operator begin_operator change-tire l_24_1 2 113 0 238 218 1 2 0 0 -1 0 0 113 0 1 0 end_operator begin_operator change-tire l_24_2 2 114 0 238 219 1 2 0 0 -1 0 0 114 0 1 0 end_operator begin_operator change-tire l_24_3 2 115 0 238 220 1 2 0 0 -1 0 0 115 0 1 0 end_operator begin_operator change-tire l_24_4 2 116 0 238 221 1 2 0 0 -1 0 0 116 0 1 0 end_operator begin_operator change-tire l_24_5 2 117 0 238 222 1 2 0 0 -1 0 0 117 0 1 0 end_operator begin_operator change-tire l_24_6 2 118 0 238 223 1 2 0 0 -1 0 0 118 0 1 0 end_operator begin_operator change-tire l_25_1 2 119 0 238 224 1 2 0 0 -1 0 0 119 0 1 0 end_operator begin_operator change-tire l_25_5 2 120 0 238 228 1 2 0 0 -1 0 0 120 0 1 0 end_operator begin_operator change-tire l_26_1 2 121 0 238 229 1 2 0 0 -1 0 0 121 0 1 0 end_operator begin_operator change-tire l_26_2 2 122 0 238 230 1 2 0 0 -1 0 0 122 0 1 0 end_operator begin_operator change-tire l_26_3 2 123 0 238 231 1 2 0 0 -1 0 0 123 0 1 0 end_operator begin_operator change-tire l_26_4 2 124 0 238 232 1 2 0 0 -1 0 0 124 0 1 0 end_operator begin_operator change-tire l_27_1 2 125 0 238 233 1 2 0 0 -1 0 0 125 0 1 0 end_operator begin_operator change-tire l_27_3 2 126 0 238 235 1 2 0 0 -1 0 0 126 0 1 0 end_operator begin_operator change-tire l_28_1 2 127 0 238 236 1 2 0 0 -1 0 0 127 0 1 0 end_operator begin_operator change-tire l_28_2 2 128 0 238 237 1 2 0 0 -1 0 0 128 0 1 0 end_operator begin_operator change-tire l_29_1 2 129 0 238 238 1 2 0 0 -1 0 0 129 0 1 0 end_operator begin_operator change-tire l_2_1 2 130 0 238 239 1 2 0 0 -1 0 0 130 0 1 0 end_operator begin_operator change-tire l_2_10 2 131 0 238 240 1 2 0 0 -1 0 0 131 0 1 0 end_operator begin_operator change-tire l_2_11 2 132 0 238 241 1 2 0 0 -1 0 0 132 0 1 0 end_operator begin_operator change-tire l_2_12 2 133 0 238 242 1 2 0 0 -1 0 0 133 0 1 0 end_operator begin_operator change-tire l_2_13 2 134 0 238 243 1 2 0 0 -1 0 0 134 0 1 0 end_operator begin_operator change-tire l_2_14 2 135 0 238 244 1 2 0 0 -1 0 0 135 0 1 0 end_operator begin_operator change-tire l_2_15 2 136 0 238 245 1 2 0 0 -1 0 0 136 0 1 0 end_operator begin_operator change-tire l_2_16 2 137 0 238 246 1 2 0 0 -1 0 0 137 0 1 0 end_operator begin_operator change-tire l_2_17 2 138 0 238 247 1 2 0 0 -1 0 0 138 0 1 0 end_operator begin_operator change-tire l_2_18 2 139 0 238 248 1 2 0 0 -1 0 0 139 0 1 0 end_operator begin_operator change-tire l_2_19 2 140 0 238 249 1 2 0 0 -1 0 0 140 0 1 0 end_operator begin_operator change-tire l_2_2 2 141 0 238 250 1 2 0 0 -1 0 0 141 0 1 0 end_operator begin_operator change-tire l_2_20 2 142 0 238 251 1 2 0 0 -1 0 0 142 0 1 0 end_operator begin_operator change-tire l_2_21 2 143 0 238 252 1 2 0 0 -1 0 0 143 0 1 0 end_operator begin_operator change-tire l_2_22 2 144 0 238 253 1 2 0 0 -1 0 0 144 0 1 0 end_operator begin_operator change-tire l_2_23 2 145 0 238 254 1 2 0 0 -1 0 0 145 0 1 0 end_operator begin_operator change-tire l_2_24 2 146 0 238 255 1 2 0 0 -1 0 0 146 0 1 0 end_operator begin_operator change-tire l_2_25 2 147 0 238 256 1 2 0 0 -1 0 0 147 0 1 0 end_operator begin_operator change-tire l_2_26 2 148 0 238 257 1 2 0 0 -1 0 0 148 0 1 0 end_operator begin_operator change-tire l_2_27 2 149 0 238 258 1 2 0 0 -1 0 0 149 0 1 0 end_operator begin_operator change-tire l_2_28 2 150 0 238 259 1 2 0 0 -1 0 0 150 0 1 0 end_operator begin_operator change-tire l_2_3 2 151 0 238 260 1 2 0 0 -1 0 0 151 0 1 0 end_operator begin_operator change-tire l_2_4 2 152 0 238 261 1 2 0 0 -1 0 0 152 0 1 0 end_operator begin_operator change-tire l_2_5 2 153 0 238 262 1 2 0 0 -1 0 0 153 0 1 0 end_operator begin_operator change-tire l_2_6 2 154 0 238 263 1 2 0 0 -1 0 0 154 0 1 0 end_operator begin_operator change-tire l_2_7 2 155 0 238 264 1 2 0 0 -1 0 0 155 0 1 0 end_operator begin_operator change-tire l_2_8 2 156 0 238 265 1 2 0 0 -1 0 0 156 0 1 0 end_operator begin_operator change-tire l_2_9 2 157 0 238 266 1 2 0 0 -1 0 0 157 0 1 0 end_operator begin_operator change-tire l_3_1 2 158 0 238 267 1 2 0 0 -1 0 0 158 0 1 0 end_operator begin_operator change-tire l_3_27 2 159 0 238 286 1 2 0 0 -1 0 0 159 0 1 0 end_operator begin_operator change-tire l_4_1 2 160 0 238 294 1 2 0 0 -1 0 0 160 0 1 0 end_operator begin_operator change-tire l_4_10 2 161 0 238 295 1 2 0 0 -1 0 0 161 0 1 0 end_operator begin_operator change-tire l_4_11 2 162 0 238 296 1 2 0 0 -1 0 0 162 0 1 0 end_operator begin_operator change-tire l_4_12 2 163 0 238 297 1 2 0 0 -1 0 0 163 0 1 0 end_operator begin_operator change-tire l_4_13 2 164 0 238 298 1 2 0 0 -1 0 0 164 0 1 0 end_operator begin_operator change-tire l_4_14 2 165 0 238 299 1 2 0 0 -1 0 0 165 0 1 0 end_operator begin_operator change-tire l_4_15 2 166 0 238 300 1 2 0 0 -1 0 0 166 0 1 0 end_operator begin_operator change-tire l_4_16 2 167 0 238 301 1 2 0 0 -1 0 0 167 0 1 0 end_operator begin_operator change-tire l_4_17 2 168 0 238 302 1 2 0 0 -1 0 0 168 0 1 0 end_operator begin_operator change-tire l_4_18 2 169 0 238 303 1 2 0 0 -1 0 0 169 0 1 0 end_operator begin_operator change-tire l_4_19 2 170 0 238 304 1 2 0 0 -1 0 0 170 0 1 0 end_operator begin_operator change-tire l_4_2 2 171 0 238 305 1 2 0 0 -1 0 0 171 0 1 0 end_operator begin_operator change-tire l_4_20 2 172 0 238 306 1 2 0 0 -1 0 0 172 0 1 0 end_operator begin_operator change-tire l_4_21 2 173 0 238 307 1 2 0 0 -1 0 0 173 0 1 0 end_operator begin_operator change-tire l_4_22 2 174 0 238 308 1 2 0 0 -1 0 0 174 0 1 0 end_operator begin_operator change-tire l_4_23 2 175 0 238 309 1 2 0 0 -1 0 0 175 0 1 0 end_operator begin_operator change-tire l_4_24 2 176 0 238 310 1 2 0 0 -1 0 0 176 0 1 0 end_operator begin_operator change-tire l_4_25 2 177 0 238 311 1 2 0 0 -1 0 0 177 0 1 0 end_operator begin_operator change-tire l_4_26 2 178 0 238 312 1 2 0 0 -1 0 0 178 0 1 0 end_operator begin_operator change-tire l_4_3 2 179 0 238 313 1 2 0 0 -1 0 0 179 0 1 0 end_operator begin_operator change-tire l_4_4 2 180 0 238 314 1 2 0 0 -1 0 0 180 0 1 0 end_operator begin_operator change-tire l_4_5 2 181 0 238 315 1 2 0 0 -1 0 0 181 0 1 0 end_operator begin_operator change-tire l_4_6 2 182 0 238 316 1 2 0 0 -1 0 0 182 0 1 0 end_operator begin_operator change-tire l_4_7 2 183 0 238 317 1 2 0 0 -1 0 0 183 0 1 0 end_operator begin_operator change-tire l_4_8 2 184 0 238 318 1 2 0 0 -1 0 0 184 0 1 0 end_operator begin_operator change-tire l_4_9 2 185 0 238 319 1 2 0 0 -1 0 0 185 0 1 0 end_operator begin_operator change-tire l_5_1 2 186 0 238 320 1 2 0 0 -1 0 0 186 0 1 0 end_operator begin_operator change-tire l_5_25 2 187 0 238 337 1 2 0 0 -1 0 0 187 0 1 0 end_operator begin_operator change-tire l_6_1 2 188 0 238 345 1 2 0 0 -1 0 0 188 0 1 0 end_operator begin_operator change-tire l_6_10 2 189 0 238 346 1 2 0 0 -1 0 0 189 0 1 0 end_operator begin_operator change-tire l_6_11 2 190 0 238 347 1 2 0 0 -1 0 0 190 0 1 0 end_operator begin_operator change-tire l_6_12 2 191 0 238 348 1 2 0 0 -1 0 0 191 0 1 0 end_operator begin_operator change-tire l_6_13 2 192 0 238 349 1 2 0 0 -1 0 0 192 0 1 0 end_operator begin_operator change-tire l_6_14 2 193 0 238 350 1 2 0 0 -1 0 0 193 0 1 0 end_operator begin_operator change-tire l_6_15 2 194 0 238 351 1 2 0 0 -1 0 0 194 0 1 0 end_operator begin_operator change-tire l_6_16 2 195 0 238 352 1 2 0 0 -1 0 0 195 0 1 0 end_operator begin_operator change-tire l_6_17 2 196 0 238 353 1 2 0 0 -1 0 0 196 0 1 0 end_operator begin_operator change-tire l_6_18 2 197 0 238 354 1 2 0 0 -1 0 0 197 0 1 0 end_operator begin_operator change-tire l_6_19 2 198 0 238 355 1 2 0 0 -1 0 0 198 0 1 0 end_operator begin_operator change-tire l_6_2 2 199 0 238 356 1 2 0 0 -1 0 0 199 0 1 0 end_operator begin_operator change-tire l_6_20 2 200 0 238 357 1 2 0 0 -1 0 0 200 0 1 0 end_operator begin_operator change-tire l_6_21 2 201 0 238 358 1 2 0 0 -1 0 0 201 0 1 0 end_operator begin_operator change-tire l_6_22 2 202 0 238 359 1 2 0 0 -1 0 0 202 0 1 0 end_operator begin_operator change-tire l_6_23 2 203 0 238 360 1 2 0 0 -1 0 0 203 0 1 0 end_operator begin_operator change-tire l_6_24 2 204 0 238 361 1 2 0 0 -1 0 0 204 0 1 0 end_operator begin_operator change-tire l_6_3 2 205 0 238 362 1 2 0 0 -1 0 0 205 0 1 0 end_operator begin_operator change-tire l_6_4 2 206 0 238 363 1 2 0 0 -1 0 0 206 0 1 0 end_operator begin_operator change-tire l_6_5 2 207 0 238 364 1 2 0 0 -1 0 0 207 0 1 0 end_operator begin_operator change-tire l_6_6 2 208 0 238 365 1 2 0 0 -1 0 0 208 0 1 0 end_operator begin_operator change-tire l_6_7 2 209 0 238 366 1 2 0 0 -1 0 0 209 0 1 0 end_operator begin_operator change-tire l_6_8 2 210 0 238 367 1 2 0 0 -1 0 0 210 0 1 0 end_operator begin_operator change-tire l_6_9 2 211 0 238 368 1 2 0 0 -1 0 0 211 0 1 0 end_operator begin_operator change-tire l_7_1 2 212 0 238 369 1 2 0 0 -1 0 0 212 0 1 0 end_operator begin_operator change-tire l_7_23 2 213 0 238 384 1 2 0 0 -1 0 0 213 0 1 0 end_operator begin_operator change-tire l_8_1 2 214 0 238 392 1 2 0 0 -1 0 0 214 0 1 0 end_operator begin_operator change-tire l_8_10 2 215 0 238 393 1 2 0 0 -1 0 0 215 0 1 0 end_operator begin_operator change-tire l_8_11 2 216 0 238 394 1 2 0 0 -1 0 0 216 0 1 0 end_operator begin_operator change-tire l_8_12 2 217 0 238 395 1 2 0 0 -1 0 0 217 0 1 0 end_operator begin_operator change-tire l_8_13 2 218 0 238 396 1 2 0 0 -1 0 0 218 0 1 0 end_operator begin_operator change-tire l_8_14 2 219 0 238 397 1 2 0 0 -1 0 0 219 0 1 0 end_operator begin_operator change-tire l_8_15 2 220 0 238 398 1 2 0 0 -1 0 0 220 0 1 0 end_operator begin_operator change-tire l_8_16 2 221 0 238 399 1 2 0 0 -1 0 0 221 0 1 0 end_operator begin_operator change-tire l_8_17 2 222 0 238 400 1 2 0 0 -1 0 0 222 0 1 0 end_operator begin_operator change-tire l_8_18 2 223 0 238 401 1 2 0 0 -1 0 0 223 0 1 0 end_operator begin_operator change-tire l_8_19 2 224 0 238 402 1 2 0 0 -1 0 0 224 0 1 0 end_operator begin_operator change-tire l_8_2 2 225 0 238 403 1 2 0 0 -1 0 0 225 0 1 0 end_operator begin_operator change-tire l_8_20 2 226 0 238 404 1 2 0 0 -1 0 0 226 0 1 0 end_operator begin_operator change-tire l_8_21 2 227 0 238 405 1 2 0 0 -1 0 0 227 0 1 0 end_operator begin_operator change-tire l_8_22 2 228 0 238 406 1 2 0 0 -1 0 0 228 0 1 0 end_operator begin_operator change-tire l_8_3 2 229 0 238 407 1 2 0 0 -1 0 0 229 0 1 0 end_operator begin_operator change-tire l_8_4 2 230 0 238 408 1 2 0 0 -1 0 0 230 0 1 0 end_operator begin_operator change-tire l_8_5 2 231 0 238 409 1 2 0 0 -1 0 0 231 0 1 0 end_operator begin_operator change-tire l_8_6 2 232 0 238 410 1 2 0 0 -1 0 0 232 0 1 0 end_operator begin_operator change-tire l_8_7 2 233 0 238 411 1 2 0 0 -1 0 0 233 0 1 0 end_operator begin_operator change-tire l_8_8 2 234 0 238 412 1 2 0 0 -1 0 0 234 0 1 0 end_operator begin_operator change-tire l_8_9 2 235 0 238 413 1 2 0 0 -1 0 0 235 0 1 0 end_operator begin_operator change-tire l_9_1 2 236 0 238 414 1 2 0 0 -1 0 0 236 0 1 0 end_operator begin_operator change-tire l_9_21 2 237 0 238 427 1 2 0 0 -1 0 0 237 0 1 0 end_operator begin_operator move-car l_10_1 l_11_1 2 0 0 238 0 2 2 0 0 0 1 0 238 0 20 1 0 238 0 20 0 end_operator begin_operator move-car l_10_1 l_9_2 2 0 0 238 0 2 2 0 0 0 1 0 238 0 425 1 0 238 0 425 0 end_operator begin_operator move-car l_10_10 l_9_11 2 0 0 238 1 2 2 0 0 0 1 0 238 1 416 1 0 238 1 416 0 end_operator begin_operator move-car l_10_11 l_11_11 2 0 0 238 2 2 2 0 0 0 1 0 238 2 22 1 0 238 2 22 0 end_operator begin_operator move-car l_10_11 l_9_12 2 0 0 238 2 2 2 0 0 0 1 0 238 2 417 1 0 238 2 417 0 end_operator begin_operator move-car l_10_12 l_9_13 2 0 0 238 3 2 2 0 0 0 1 0 238 3 418 1 0 238 3 418 0 end_operator begin_operator move-car l_10_13 l_11_13 2 0 0 238 4 2 2 0 0 0 1 0 238 4 24 1 0 238 4 24 0 end_operator begin_operator move-car l_10_13 l_9_14 2 0 0 238 4 2 2 0 0 0 1 0 238 4 419 1 0 238 4 419 0 end_operator begin_operator move-car l_10_14 l_9_15 2 0 0 238 5 2 2 0 0 0 1 0 238 5 420 1 0 238 5 420 0 end_operator begin_operator move-car l_10_15 l_11_15 2 0 0 238 6 2 2 0 0 0 1 0 238 6 26 1 0 238 6 26 0 end_operator begin_operator move-car l_10_15 l_9_16 2 0 0 238 6 2 2 0 0 0 1 0 238 6 421 1 0 238 6 421 0 end_operator begin_operator move-car l_10_16 l_9_17 2 0 0 238 7 2 2 0 0 0 1 0 238 7 422 1 0 238 7 422 0 end_operator begin_operator move-car l_10_17 l_11_17 2 0 0 238 8 2 2 0 0 0 1 0 238 8 28 1 0 238 8 28 0 end_operator begin_operator move-car l_10_17 l_9_18 2 0 0 238 8 2 2 0 0 0 1 0 238 8 423 1 0 238 8 423 0 end_operator begin_operator move-car l_10_18 l_9_19 2 0 0 238 9 2 2 0 0 0 1 0 238 9 424 1 0 238 9 424 0 end_operator begin_operator move-car l_10_19 l_11_19 2 0 0 238 10 2 2 0 0 0 1 0 238 10 30 1 0 238 10 30 0 end_operator begin_operator move-car l_10_19 l_9_20 2 0 0 238 10 2 2 0 0 0 1 0 238 10 426 1 0 238 10 426 0 end_operator begin_operator move-car l_10_2 l_9_3 2 0 0 238 11 2 2 0 0 0 1 0 238 11 428 1 0 238 11 428 0 end_operator begin_operator move-car l_10_20 l_9_21 2 0 0 238 12 2 2 0 0 0 1 0 238 12 427 1 0 238 12 427 0 end_operator begin_operator move-car l_10_3 l_11_3 2 0 0 238 13 2 2 0 0 0 1 0 238 13 32 1 0 238 13 32 0 end_operator begin_operator move-car l_10_3 l_9_4 2 0 0 238 13 2 2 0 0 0 1 0 238 13 429 1 0 238 13 429 0 end_operator begin_operator move-car l_10_4 l_9_5 2 0 0 238 14 2 2 0 0 0 1 0 238 14 430 1 0 238 14 430 0 end_operator begin_operator move-car l_10_5 l_11_5 2 0 0 238 15 2 2 0 0 0 1 0 238 15 34 1 0 238 15 34 0 end_operator begin_operator move-car l_10_5 l_9_6 2 0 0 238 15 2 2 0 0 0 1 0 238 15 431 1 0 238 15 431 0 end_operator begin_operator move-car l_10_6 l_9_7 2 0 0 238 16 2 2 0 0 0 1 0 238 16 432 1 0 238 16 432 0 end_operator begin_operator move-car l_10_7 l_11_7 2 0 0 238 17 2 2 0 0 0 1 0 238 17 36 1 0 238 17 36 0 end_operator begin_operator move-car l_10_7 l_9_8 2 0 0 238 17 2 2 0 0 0 1 0 238 17 433 1 0 238 17 433 0 end_operator begin_operator move-car l_10_8 l_9_9 2 0 0 238 18 2 2 0 0 0 1 0 238 18 434 1 0 238 18 434 0 end_operator begin_operator move-car l_10_9 l_11_9 2 0 0 238 19 2 2 0 0 0 1 0 238 19 38 1 0 238 19 38 0 end_operator begin_operator move-car l_10_9 l_9_10 2 0 0 238 19 2 2 0 0 0 1 0 238 19 415 1 0 238 19 415 0 end_operator begin_operator move-car l_11_1 l_10_2 2 0 0 238 20 2 2 0 0 0 1 0 238 20 11 1 0 238 20 11 0 end_operator begin_operator move-car l_11_1 l_11_2 2 0 0 238 20 2 2 0 0 0 1 0 238 20 31 1 0 238 20 31 0 end_operator begin_operator move-car l_11_1 l_12_1 2 0 0 238 20 2 2 0 0 0 1 0 238 20 39 1 0 238 20 39 0 end_operator begin_operator move-car l_11_10 l_11_11 2 0 0 238 21 2 2 0 0 0 1 0 238 21 22 1 0 238 21 22 0 end_operator begin_operator move-car l_11_10 l_12_10 2 0 0 238 21 2 2 0 0 0 1 0 238 21 40 1 0 238 21 40 0 end_operator begin_operator move-car l_11_11 l_10_12 2 0 0 238 22 2 2 0 0 0 1 0 238 22 3 1 0 238 22 3 0 end_operator begin_operator move-car l_11_11 l_11_12 2 0 0 238 22 2 2 0 0 0 1 0 238 22 23 1 0 238 22 23 0 end_operator begin_operator move-car l_11_11 l_12_11 2 0 0 238 22 2 2 0 0 0 1 0 238 22 41 1 0 238 22 41 0 end_operator begin_operator move-car l_11_12 l_11_13 2 0 0 238 23 2 2 0 0 0 1 0 238 23 24 1 0 238 23 24 0 end_operator begin_operator move-car l_11_12 l_12_12 2 0 0 238 23 2 2 0 0 0 1 0 238 23 42 1 0 238 23 42 0 end_operator begin_operator move-car l_11_13 l_10_14 2 0 0 238 24 2 2 0 0 0 1 0 238 24 5 1 0 238 24 5 0 end_operator begin_operator move-car l_11_13 l_11_14 2 0 0 238 24 2 2 0 0 0 1 0 238 24 25 1 0 238 24 25 0 end_operator begin_operator move-car l_11_13 l_12_13 2 0 0 238 24 2 2 0 0 0 1 0 238 24 43 1 0 238 24 43 0 end_operator begin_operator move-car l_11_14 l_11_15 2 0 0 238 25 2 2 0 0 0 1 0 238 25 26 1 0 238 25 26 0 end_operator begin_operator move-car l_11_14 l_12_14 2 0 0 238 25 2 2 0 0 0 1 0 238 25 44 1 0 238 25 44 0 end_operator begin_operator move-car l_11_15 l_10_16 2 0 0 238 26 2 2 0 0 0 1 0 238 26 7 1 0 238 26 7 0 end_operator begin_operator move-car l_11_15 l_11_16 2 0 0 238 26 2 2 0 0 0 1 0 238 26 27 1 0 238 26 27 0 end_operator begin_operator move-car l_11_15 l_12_15 2 0 0 238 26 2 2 0 0 0 1 0 238 26 45 1 0 238 26 45 0 end_operator begin_operator move-car l_11_16 l_11_17 2 0 0 238 27 2 2 0 0 0 1 0 238 27 28 1 0 238 27 28 0 end_operator begin_operator move-car l_11_16 l_12_16 2 0 0 238 27 2 2 0 0 0 1 0 238 27 46 1 0 238 27 46 0 end_operator begin_operator move-car l_11_17 l_10_18 2 0 0 238 28 2 2 0 0 0 1 0 238 28 9 1 0 238 28 9 0 end_operator begin_operator move-car l_11_17 l_11_18 2 0 0 238 28 2 2 0 0 0 1 0 238 28 29 1 0 238 28 29 0 end_operator begin_operator move-car l_11_17 l_12_17 2 0 0 238 28 2 2 0 0 0 1 0 238 28 47 1 0 238 28 47 0 end_operator begin_operator move-car l_11_18 l_11_19 2 0 0 238 29 2 2 0 0 0 1 0 238 29 30 1 0 238 29 30 0 end_operator begin_operator move-car l_11_18 l_12_18 2 0 0 238 29 2 2 0 0 0 1 0 238 29 48 1 0 238 29 48 0 end_operator begin_operator move-car l_11_19 l_10_20 2 0 0 238 30 2 2 0 0 0 1 0 238 30 12 1 0 238 30 12 0 end_operator begin_operator move-car l_11_2 l_11_3 2 0 0 238 31 2 2 0 0 0 1 0 238 31 32 1 0 238 31 32 0 end_operator begin_operator move-car l_11_2 l_12_2 2 0 0 238 31 2 2 0 0 0 1 0 238 31 49 1 0 238 31 49 0 end_operator begin_operator move-car l_11_3 l_10_4 2 0 0 238 32 2 2 0 0 0 1 0 238 32 14 1 0 238 32 14 0 end_operator begin_operator move-car l_11_3 l_11_4 2 0 0 238 32 2 2 0 0 0 1 0 238 32 33 1 0 238 32 33 0 end_operator begin_operator move-car l_11_3 l_12_3 2 0 0 238 32 2 2 0 0 0 1 0 238 32 50 1 0 238 32 50 0 end_operator begin_operator move-car l_11_4 l_11_5 2 0 0 238 33 2 2 0 0 0 1 0 238 33 34 1 0 238 33 34 0 end_operator begin_operator move-car l_11_4 l_12_4 2 0 0 238 33 2 2 0 0 0 1 0 238 33 51 1 0 238 33 51 0 end_operator begin_operator move-car l_11_5 l_10_6 2 0 0 238 34 2 2 0 0 0 1 0 238 34 16 1 0 238 34 16 0 end_operator begin_operator move-car l_11_5 l_11_6 2 0 0 238 34 2 2 0 0 0 1 0 238 34 35 1 0 238 34 35 0 end_operator begin_operator move-car l_11_5 l_12_5 2 0 0 238 34 2 2 0 0 0 1 0 238 34 52 1 0 238 34 52 0 end_operator begin_operator move-car l_11_6 l_11_7 2 0 0 238 35 2 2 0 0 0 1 0 238 35 36 1 0 238 35 36 0 end_operator begin_operator move-car l_11_6 l_12_6 2 0 0 238 35 2 2 0 0 0 1 0 238 35 53 1 0 238 35 53 0 end_operator begin_operator move-car l_11_7 l_10_8 2 0 0 238 36 2 2 0 0 0 1 0 238 36 18 1 0 238 36 18 0 end_operator begin_operator move-car l_11_7 l_11_8 2 0 0 238 36 2 2 0 0 0 1 0 238 36 37 1 0 238 36 37 0 end_operator begin_operator move-car l_11_7 l_12_7 2 0 0 238 36 2 2 0 0 0 1 0 238 36 54 1 0 238 36 54 0 end_operator begin_operator move-car l_11_8 l_11_9 2 0 0 238 37 2 2 0 0 0 1 0 238 37 38 1 0 238 37 38 0 end_operator begin_operator move-car l_11_8 l_12_8 2 0 0 238 37 2 2 0 0 0 1 0 238 37 55 1 0 238 37 55 0 end_operator begin_operator move-car l_11_9 l_10_10 2 0 0 238 38 2 2 0 0 0 1 0 238 38 1 1 0 238 38 1 0 end_operator begin_operator move-car l_11_9 l_11_10 2 0 0 238 38 2 2 0 0 0 1 0 238 38 21 1 0 238 38 21 0 end_operator begin_operator move-car l_11_9 l_12_9 2 0 0 238 38 2 2 0 0 0 1 0 238 38 56 1 0 238 38 56 0 end_operator begin_operator move-car l_12_1 l_11_2 2 0 0 238 39 2 2 0 0 0 1 0 238 39 31 1 0 238 39 31 0 end_operator begin_operator move-car l_12_1 l_13_1 2 0 0 238 39 2 2 0 0 0 1 0 238 39 57 1 0 238 39 57 0 end_operator begin_operator move-car l_12_10 l_11_11 2 0 0 238 40 2 2 0 0 0 1 0 238 40 22 1 0 238 40 22 0 end_operator begin_operator move-car l_12_11 l_11_12 2 0 0 238 41 2 2 0 0 0 1 0 238 41 23 1 0 238 41 23 0 end_operator begin_operator move-car l_12_11 l_13_11 2 0 0 238 41 2 2 0 0 0 1 0 238 41 59 1 0 238 41 59 0 end_operator begin_operator move-car l_12_12 l_11_13 2 0 0 238 42 2 2 0 0 0 1 0 238 42 24 1 0 238 42 24 0 end_operator begin_operator move-car l_12_13 l_11_14 2 0 0 238 43 2 2 0 0 0 1 0 238 43 25 1 0 238 43 25 0 end_operator begin_operator move-car l_12_13 l_13_13 2 0 0 238 43 2 2 0 0 0 1 0 238 43 61 1 0 238 43 61 0 end_operator begin_operator move-car l_12_14 l_11_15 2 0 0 238 44 2 2 0 0 0 1 0 238 44 26 1 0 238 44 26 0 end_operator begin_operator move-car l_12_15 l_11_16 2 0 0 238 45 2 2 0 0 0 1 0 238 45 27 1 0 238 45 27 0 end_operator begin_operator move-car l_12_15 l_13_15 2 0 0 238 45 2 2 0 0 0 1 0 238 45 63 1 0 238 45 63 0 end_operator begin_operator move-car l_12_16 l_11_17 2 0 0 238 46 2 2 0 0 0 1 0 238 46 28 1 0 238 46 28 0 end_operator begin_operator move-car l_12_17 l_11_18 2 0 0 238 47 2 2 0 0 0 1 0 238 47 29 1 0 238 47 29 0 end_operator begin_operator move-car l_12_17 l_13_17 2 0 0 238 47 2 2 0 0 0 1 0 238 47 65 1 0 238 47 65 0 end_operator begin_operator move-car l_12_18 l_11_19 2 0 0 238 48 2 2 0 0 0 1 0 238 48 30 1 0 238 48 30 0 end_operator begin_operator move-car l_12_2 l_11_3 2 0 0 238 49 2 2 0 0 0 1 0 238 49 32 1 0 238 49 32 0 end_operator begin_operator move-car l_12_3 l_11_4 2 0 0 238 50 2 2 0 0 0 1 0 238 50 33 1 0 238 50 33 0 end_operator begin_operator move-car l_12_3 l_13_3 2 0 0 238 50 2 2 0 0 0 1 0 238 50 67 1 0 238 50 67 0 end_operator begin_operator move-car l_12_4 l_11_5 2 0 0 238 51 2 2 0 0 0 1 0 238 51 34 1 0 238 51 34 0 end_operator begin_operator move-car l_12_5 l_11_6 2 0 0 238 52 2 2 0 0 0 1 0 238 52 35 1 0 238 52 35 0 end_operator begin_operator move-car l_12_5 l_13_5 2 0 0 238 52 2 2 0 0 0 1 0 238 52 69 1 0 238 52 69 0 end_operator begin_operator move-car l_12_6 l_11_7 2 0 0 238 53 2 2 0 0 0 1 0 238 53 36 1 0 238 53 36 0 end_operator begin_operator move-car l_12_7 l_11_8 2 0 0 238 54 2 2 0 0 0 1 0 238 54 37 1 0 238 54 37 0 end_operator begin_operator move-car l_12_7 l_13_7 2 0 0 238 54 2 2 0 0 0 1 0 238 54 71 1 0 238 54 71 0 end_operator begin_operator move-car l_12_8 l_11_9 2 0 0 238 55 2 2 0 0 0 1 0 238 55 38 1 0 238 55 38 0 end_operator begin_operator move-car l_12_9 l_11_10 2 0 0 238 56 2 2 0 0 0 1 0 238 56 21 1 0 238 56 21 0 end_operator begin_operator move-car l_12_9 l_13_9 2 0 0 238 56 2 2 0 0 0 1 0 238 56 73 1 0 238 56 73 0 end_operator begin_operator move-car l_13_1 l_12_2 2 0 0 238 57 2 2 0 0 0 1 0 238 57 49 1 0 238 57 49 0 end_operator begin_operator move-car l_13_1 l_13_2 2 0 0 238 57 2 2 0 0 0 1 0 238 57 66 1 0 238 57 66 0 end_operator begin_operator move-car l_13_1 l_14_1 2 0 0 238 57 2 2 0 0 0 1 0 238 57 74 1 0 238 57 74 0 end_operator begin_operator move-car l_13_10 l_13_11 2 0 0 238 58 2 2 0 0 0 1 0 238 58 59 1 0 238 58 59 0 end_operator begin_operator move-car l_13_10 l_14_10 2 0 0 238 58 2 2 0 0 0 1 0 238 58 75 1 0 238 58 75 0 end_operator begin_operator move-car l_13_11 l_12_12 2 0 0 238 59 2 2 0 0 0 1 0 238 59 42 1 0 238 59 42 0 end_operator begin_operator move-car l_13_11 l_13_12 2 0 0 238 59 2 2 0 0 0 1 0 238 59 60 1 0 238 59 60 0 end_operator begin_operator move-car l_13_11 l_14_11 2 0 0 238 59 2 2 0 0 0 1 0 238 59 76 1 0 238 59 76 0 end_operator begin_operator move-car l_13_12 l_13_13 2 0 0 238 60 2 2 0 0 0 1 0 238 60 61 1 0 238 60 61 0 end_operator begin_operator move-car l_13_12 l_14_12 2 0 0 238 60 2 2 0 0 0 1 0 238 60 77 1 0 238 60 77 0 end_operator begin_operator move-car l_13_13 l_12_14 2 0 0 238 61 2 2 0 0 0 1 0 238 61 44 1 0 238 61 44 0 end_operator begin_operator move-car l_13_13 l_13_14 2 0 0 238 61 2 2 0 0 0 1 0 238 61 62 1 0 238 61 62 0 end_operator begin_operator move-car l_13_13 l_14_13 2 0 0 238 61 2 2 0 0 0 1 0 238 61 78 1 0 238 61 78 0 end_operator begin_operator move-car l_13_14 l_13_15 2 0 0 238 62 2 2 0 0 0 1 0 238 62 63 1 0 238 62 63 0 end_operator begin_operator move-car l_13_14 l_14_14 2 0 0 238 62 2 2 0 0 0 1 0 238 62 79 1 0 238 62 79 0 end_operator begin_operator move-car l_13_15 l_12_16 2 0 0 238 63 2 2 0 0 0 1 0 238 63 46 1 0 238 63 46 0 end_operator begin_operator move-car l_13_15 l_13_16 2 0 0 238 63 2 2 0 0 0 1 0 238 63 64 1 0 238 63 64 0 end_operator begin_operator move-car l_13_15 l_14_15 2 0 0 238 63 2 2 0 0 0 1 0 238 63 80 1 0 238 63 80 0 end_operator begin_operator move-car l_13_16 l_13_17 2 0 0 238 64 2 2 0 0 0 1 0 238 64 65 1 0 238 64 65 0 end_operator begin_operator move-car l_13_16 l_14_16 2 0 0 238 64 2 2 0 0 0 1 0 238 64 81 1 0 238 64 81 0 end_operator begin_operator move-car l_13_17 l_12_18 2 0 0 238 65 2 2 0 0 0 1 0 238 65 48 1 0 238 65 48 0 end_operator begin_operator move-car l_13_2 l_13_3 2 0 0 238 66 2 2 0 0 0 1 0 238 66 67 1 0 238 66 67 0 end_operator begin_operator move-car l_13_2 l_14_2 2 0 0 238 66 2 2 0 0 0 1 0 238 66 82 1 0 238 66 82 0 end_operator begin_operator move-car l_13_3 l_12_4 2 0 0 238 67 2 2 0 0 0 1 0 238 67 51 1 0 238 67 51 0 end_operator begin_operator move-car l_13_3 l_13_4 2 0 0 238 67 2 2 0 0 0 1 0 238 67 68 1 0 238 67 68 0 end_operator begin_operator move-car l_13_3 l_14_3 2 0 0 238 67 2 2 0 0 0 1 0 238 67 83 1 0 238 67 83 0 end_operator begin_operator move-car l_13_4 l_13_5 2 0 0 238 68 2 2 0 0 0 1 0 238 68 69 1 0 238 68 69 0 end_operator begin_operator move-car l_13_4 l_14_4 2 0 0 238 68 2 2 0 0 0 1 0 238 68 84 1 0 238 68 84 0 end_operator begin_operator move-car l_13_5 l_12_6 2 0 0 238 69 2 2 0 0 0 1 0 238 69 53 1 0 238 69 53 0 end_operator begin_operator move-car l_13_5 l_13_6 2 0 0 238 69 2 2 0 0 0 1 0 238 69 70 1 0 238 69 70 0 end_operator begin_operator move-car l_13_5 l_14_5 2 0 0 238 69 2 2 0 0 0 1 0 238 69 85 1 0 238 69 85 0 end_operator begin_operator move-car l_13_6 l_13_7 2 0 0 238 70 2 2 0 0 0 1 0 238 70 71 1 0 238 70 71 0 end_operator begin_operator move-car l_13_6 l_14_6 2 0 0 238 70 2 2 0 0 0 1 0 238 70 86 1 0 238 70 86 0 end_operator begin_operator move-car l_13_7 l_12_8 2 0 0 238 71 2 2 0 0 0 1 0 238 71 55 1 0 238 71 55 0 end_operator begin_operator move-car l_13_7 l_13_8 2 0 0 238 71 2 2 0 0 0 1 0 238 71 72 1 0 238 71 72 0 end_operator begin_operator move-car l_13_7 l_14_7 2 0 0 238 71 2 2 0 0 0 1 0 238 71 87 1 0 238 71 87 0 end_operator begin_operator move-car l_13_8 l_13_9 2 0 0 238 72 2 2 0 0 0 1 0 238 72 73 1 0 238 72 73 0 end_operator begin_operator move-car l_13_8 l_14_8 2 0 0 238 72 2 2 0 0 0 1 0 238 72 88 1 0 238 72 88 0 end_operator begin_operator move-car l_13_9 l_12_10 2 0 0 238 73 2 2 0 0 0 1 0 238 73 40 1 0 238 73 40 0 end_operator begin_operator move-car l_13_9 l_13_10 2 0 0 238 73 2 2 0 0 0 1 0 238 73 58 1 0 238 73 58 0 end_operator begin_operator move-car l_13_9 l_14_9 2 0 0 238 73 2 2 0 0 0 1 0 238 73 89 1 0 238 73 89 0 end_operator begin_operator move-car l_14_1 l_13_2 2 0 0 238 74 2 2 0 0 0 1 0 238 74 66 1 0 238 74 66 0 end_operator begin_operator move-car l_14_1 l_15_1 2 0 0 238 74 2 2 0 0 0 1 0 238 74 90 1 0 238 74 90 0 end_operator begin_operator move-car l_14_10 l_13_11 2 0 0 238 75 2 2 0 0 0 1 0 238 75 59 1 0 238 75 59 0 end_operator begin_operator move-car l_14_11 l_13_12 2 0 0 238 76 2 2 0 0 0 1 0 238 76 60 1 0 238 76 60 0 end_operator begin_operator move-car l_14_11 l_15_11 2 0 0 238 76 2 2 0 0 0 1 0 238 76 92 1 0 238 76 92 0 end_operator begin_operator move-car l_14_12 l_13_13 2 0 0 238 77 2 2 0 0 0 1 0 238 77 61 1 0 238 77 61 0 end_operator begin_operator move-car l_14_13 l_13_14 2 0 0 238 78 2 2 0 0 0 1 0 238 78 62 1 0 238 78 62 0 end_operator begin_operator move-car l_14_13 l_15_13 2 0 0 238 78 2 2 0 0 0 1 0 238 78 94 1 0 238 78 94 0 end_operator begin_operator move-car l_14_14 l_13_15 2 0 0 238 79 2 2 0 0 0 1 0 238 79 63 1 0 238 79 63 0 end_operator begin_operator move-car l_14_15 l_13_16 2 0 0 238 80 2 2 0 0 0 1 0 238 80 64 1 0 238 80 64 0 end_operator begin_operator move-car l_14_15 l_15_15 2 0 0 238 80 2 2 0 0 0 1 0 238 80 96 1 0 238 80 96 0 end_operator begin_operator move-car l_14_16 l_13_17 2 0 0 238 81 2 2 0 0 0 1 0 238 81 65 1 0 238 81 65 0 end_operator begin_operator move-car l_14_2 l_13_3 2 0 0 238 82 2 2 0 0 0 1 0 238 82 67 1 0 238 82 67 0 end_operator begin_operator move-car l_14_3 l_13_4 2 0 0 238 83 2 2 0 0 0 1 0 238 83 68 1 0 238 83 68 0 end_operator begin_operator move-car l_14_3 l_15_3 2 0 0 238 83 2 2 0 0 0 1 0 238 83 98 1 0 238 83 98 0 end_operator begin_operator move-car l_14_4 l_13_5 2 0 0 238 84 2 2 0 0 0 1 0 238 84 69 1 0 238 84 69 0 end_operator begin_operator move-car l_14_5 l_13_6 2 0 0 238 85 2 2 0 0 0 1 0 238 85 70 1 0 238 85 70 0 end_operator begin_operator move-car l_14_5 l_15_5 2 0 0 238 85 2 2 0 0 0 1 0 238 85 100 1 0 238 85 100 0 end_operator begin_operator move-car l_14_6 l_13_7 2 0 0 238 86 2 2 0 0 0 1 0 238 86 71 1 0 238 86 71 0 end_operator begin_operator move-car l_14_7 l_13_8 2 0 0 238 87 2 2 0 0 0 1 0 238 87 72 1 0 238 87 72 0 end_operator begin_operator move-car l_14_7 l_15_7 2 0 0 238 87 2 2 0 0 0 1 0 238 87 102 1 0 238 87 102 0 end_operator begin_operator move-car l_14_8 l_13_9 2 0 0 238 88 2 2 0 0 0 1 0 238 88 73 1 0 238 88 73 0 end_operator begin_operator move-car l_14_9 l_13_10 2 0 0 238 89 2 2 0 0 0 1 0 238 89 58 1 0 238 89 58 0 end_operator begin_operator move-car l_14_9 l_15_9 2 0 0 238 89 2 2 0 0 0 1 0 238 89 104 1 0 238 89 104 0 end_operator begin_operator move-car l_15_1 l_14_2 2 0 0 238 90 2 2 0 0 0 1 0 238 90 82 1 0 238 90 82 0 end_operator begin_operator move-car l_15_1 l_15_2 2 0 0 238 90 2 2 0 0 0 1 0 238 90 97 1 0 238 90 97 0 end_operator begin_operator move-car l_15_1 l_16_1 2 0 0 238 90 2 2 0 0 0 1 0 238 90 105 1 0 238 90 105 0 end_operator begin_operator move-car l_15_10 l_15_11 2 0 0 238 91 2 2 0 0 0 1 0 238 91 92 1 0 238 91 92 0 end_operator begin_operator move-car l_15_10 l_16_10 2 0 0 238 91 2 2 0 0 0 1 0 238 91 106 1 0 238 91 106 0 end_operator begin_operator move-car l_15_11 l_14_12 2 0 0 238 92 2 2 0 0 0 1 0 238 92 77 1 0 238 92 77 0 end_operator begin_operator move-car l_15_11 l_15_12 2 0 0 238 92 2 2 0 0 0 1 0 238 92 93 1 0 238 92 93 0 end_operator begin_operator move-car l_15_11 l_16_11 2 0 0 238 92 2 2 0 0 0 1 0 238 92 107 1 0 238 92 107 0 end_operator begin_operator move-car l_15_12 l_15_13 2 0 0 238 93 2 2 0 0 0 1 0 238 93 94 1 0 238 93 94 0 end_operator begin_operator move-car l_15_12 l_16_12 2 0 0 238 93 2 2 0 0 0 1 0 238 93 108 1 0 238 93 108 0 end_operator begin_operator move-car l_15_13 l_14_14 2 0 0 238 94 2 2 0 0 0 1 0 238 94 79 1 0 238 94 79 0 end_operator begin_operator move-car l_15_13 l_15_14 2 0 0 238 94 2 2 0 0 0 1 0 238 94 95 1 0 238 94 95 0 end_operator begin_operator move-car l_15_13 l_16_13 2 0 0 238 94 2 2 0 0 0 1 0 238 94 109 1 0 238 94 109 0 end_operator begin_operator move-car l_15_14 l_15_15 2 0 0 238 95 2 2 0 0 0 1 0 238 95 96 1 0 238 95 96 0 end_operator begin_operator move-car l_15_14 l_16_14 2 0 0 238 95 2 2 0 0 0 1 0 238 95 110 1 0 238 95 110 0 end_operator begin_operator move-car l_15_15 l_14_16 2 0 0 238 96 2 2 0 0 0 1 0 238 96 81 1 0 238 96 81 0 end_operator begin_operator move-car l_15_2 l_15_3 2 0 0 238 97 2 2 0 0 0 1 0 238 97 98 1 0 238 97 98 0 end_operator begin_operator move-car l_15_2 l_16_2 2 0 0 238 97 2 2 0 0 0 1 0 238 97 111 1 0 238 97 111 0 end_operator begin_operator move-car l_15_3 l_14_4 2 0 0 238 98 2 2 0 0 0 1 0 238 98 84 1 0 238 98 84 0 end_operator begin_operator move-car l_15_3 l_15_4 2 0 0 238 98 2 2 0 0 0 1 0 238 98 99 1 0 238 98 99 0 end_operator begin_operator move-car l_15_3 l_16_3 2 0 0 238 98 2 2 0 0 0 1 0 238 98 112 1 0 238 98 112 0 end_operator begin_operator move-car l_15_4 l_15_5 2 0 0 238 99 2 2 0 0 0 1 0 238 99 100 1 0 238 99 100 0 end_operator begin_operator move-car l_15_4 l_16_4 2 0 0 238 99 2 2 0 0 0 1 0 238 99 113 1 0 238 99 113 0 end_operator begin_operator move-car l_15_5 l_14_6 2 0 0 238 100 2 2 0 0 0 1 0 238 100 86 1 0 238 100 86 0 end_operator begin_operator move-car l_15_5 l_15_6 2 0 0 238 100 2 2 0 0 0 1 0 238 100 101 1 0 238 100 101 0 end_operator begin_operator move-car l_15_5 l_16_5 2 0 0 238 100 2 2 0 0 0 1 0 238 100 114 1 0 238 100 114 0 end_operator begin_operator move-car l_15_6 l_15_7 2 0 0 238 101 2 2 0 0 0 1 0 238 101 102 1 0 238 101 102 0 end_operator begin_operator move-car l_15_6 l_16_6 2 0 0 238 101 2 2 0 0 0 1 0 238 101 115 1 0 238 101 115 0 end_operator begin_operator move-car l_15_7 l_14_8 2 0 0 238 102 2 2 0 0 0 1 0 238 102 88 1 0 238 102 88 0 end_operator begin_operator move-car l_15_7 l_15_8 2 0 0 238 102 2 2 0 0 0 1 0 238 102 103 1 0 238 102 103 0 end_operator begin_operator move-car l_15_7 l_16_7 2 0 0 238 102 2 2 0 0 0 1 0 238 102 116 1 0 238 102 116 0 end_operator begin_operator move-car l_15_8 l_15_9 2 0 0 238 103 2 2 0 0 0 1 0 238 103 104 1 0 238 103 104 0 end_operator begin_operator move-car l_15_8 l_16_8 2 0 0 238 103 2 2 0 0 0 1 0 238 103 117 1 0 238 103 117 0 end_operator begin_operator move-car l_15_9 l_14_10 2 0 0 238 104 2 2 0 0 0 1 0 238 104 75 1 0 238 104 75 0 end_operator begin_operator move-car l_15_9 l_15_10 2 0 0 238 104 2 2 0 0 0 1 0 238 104 91 1 0 238 104 91 0 end_operator begin_operator move-car l_15_9 l_16_9 2 0 0 238 104 2 2 0 0 0 1 0 238 104 118 1 0 238 104 118 0 end_operator begin_operator move-car l_16_1 l_15_2 2 0 0 238 105 2 2 0 0 0 1 0 238 105 97 1 0 238 105 97 0 end_operator begin_operator move-car l_16_1 l_17_1 2 0 0 238 105 2 2 0 0 0 1 0 238 105 119 1 0 238 105 119 0 end_operator begin_operator move-car l_16_10 l_15_11 2 0 0 238 106 2 2 0 0 0 1 0 238 106 92 1 0 238 106 92 0 end_operator begin_operator move-car l_16_11 l_15_12 2 0 0 238 107 2 2 0 0 0 1 0 238 107 93 1 0 238 107 93 0 end_operator begin_operator move-car l_16_11 l_17_11 2 0 0 238 107 2 2 0 0 0 1 0 238 107 121 1 0 238 107 121 0 end_operator begin_operator move-car l_16_12 l_15_13 2 0 0 238 108 2 2 0 0 0 1 0 238 108 94 1 0 238 108 94 0 end_operator begin_operator move-car l_16_13 l_15_14 2 0 0 238 109 2 2 0 0 0 1 0 238 109 95 1 0 238 109 95 0 end_operator begin_operator move-car l_16_13 l_17_13 2 0 0 238 109 2 2 0 0 0 1 0 238 109 123 1 0 238 109 123 0 end_operator begin_operator move-car l_16_14 l_15_15 2 0 0 238 110 2 2 0 0 0 1 0 238 110 96 1 0 238 110 96 0 end_operator begin_operator move-car l_16_2 l_15_3 2 0 0 238 111 2 2 0 0 0 1 0 238 111 98 1 0 238 111 98 0 end_operator begin_operator move-car l_16_3 l_15_4 2 0 0 238 112 2 2 0 0 0 1 0 238 112 99 1 0 238 112 99 0 end_operator begin_operator move-car l_16_3 l_17_3 2 0 0 238 112 2 2 0 0 0 1 0 238 112 125 1 0 238 112 125 0 end_operator begin_operator move-car l_16_4 l_15_5 2 0 0 238 113 2 2 0 0 0 1 0 238 113 100 1 0 238 113 100 0 end_operator begin_operator move-car l_16_5 l_15_6 2 0 0 238 114 2 2 0 0 0 1 0 238 114 101 1 0 238 114 101 0 end_operator begin_operator move-car l_16_5 l_17_5 2 0 0 238 114 2 2 0 0 0 1 0 238 114 127 1 0 238 114 127 0 end_operator begin_operator move-car l_16_6 l_15_7 2 0 0 238 115 2 2 0 0 0 1 0 238 115 102 1 0 238 115 102 0 end_operator begin_operator move-car l_16_7 l_15_8 2 0 0 238 116 2 2 0 0 0 1 0 238 116 103 1 0 238 116 103 0 end_operator begin_operator move-car l_16_7 l_17_7 2 0 0 238 116 2 2 0 0 0 1 0 238 116 129 1 0 238 116 129 0 end_operator begin_operator move-car l_16_8 l_15_9 2 0 0 238 117 2 2 0 0 0 1 0 238 117 104 1 0 238 117 104 0 end_operator begin_operator move-car l_16_9 l_15_10 2 0 0 238 118 2 2 0 0 0 1 0 238 118 91 1 0 238 118 91 0 end_operator begin_operator move-car l_16_9 l_17_9 2 0 0 238 118 2 2 0 0 0 1 0 238 118 131 1 0 238 118 131 0 end_operator begin_operator move-car l_17_1 l_16_2 2 0 0 238 119 2 2 0 0 0 1 0 238 119 111 1 0 238 119 111 0 end_operator begin_operator move-car l_17_1 l_17_2 2 0 0 238 119 2 2 0 0 0 1 0 238 119 124 1 0 238 119 124 0 end_operator begin_operator move-car l_17_1 l_18_1 2 0 0 238 119 2 2 0 0 0 1 0 238 119 132 1 0 238 119 132 0 end_operator begin_operator move-car l_17_10 l_17_11 2 0 0 238 120 2 2 0 0 0 1 0 238 120 121 1 0 238 120 121 0 end_operator begin_operator move-car l_17_10 l_18_10 2 0 0 238 120 2 2 0 0 0 1 0 238 120 133 1 0 238 120 133 0 end_operator begin_operator move-car l_17_11 l_16_12 2 0 0 238 121 2 2 0 0 0 1 0 238 121 108 1 0 238 121 108 0 end_operator begin_operator move-car l_17_11 l_17_12 2 0 0 238 121 2 2 0 0 0 1 0 238 121 122 1 0 238 121 122 0 end_operator begin_operator move-car l_17_11 l_18_11 2 0 0 238 121 2 2 0 0 0 1 0 238 121 134 1 0 238 121 134 0 end_operator begin_operator move-car l_17_12 l_17_13 2 0 0 238 122 2 2 0 0 0 1 0 238 122 123 1 0 238 122 123 0 end_operator begin_operator move-car l_17_12 l_18_12 2 0 0 238 122 2 2 0 0 0 1 0 238 122 135 1 0 238 122 135 0 end_operator begin_operator move-car l_17_13 l_16_14 2 0 0 238 123 2 2 0 0 0 1 0 238 123 110 1 0 238 123 110 0 end_operator begin_operator move-car l_17_2 l_17_3 2 0 0 238 124 2 2 0 0 0 1 0 238 124 125 1 0 238 124 125 0 end_operator begin_operator move-car l_17_2 l_18_2 2 0 0 238 124 2 2 0 0 0 1 0 238 124 136 1 0 238 124 136 0 end_operator begin_operator move-car l_17_3 l_16_4 2 0 0 238 125 2 2 0 0 0 1 0 238 125 113 1 0 238 125 113 0 end_operator begin_operator move-car l_17_3 l_17_4 2 0 0 238 125 2 2 0 0 0 1 0 238 125 126 1 0 238 125 126 0 end_operator begin_operator move-car l_17_3 l_18_3 2 0 0 238 125 2 2 0 0 0 1 0 238 125 137 1 0 238 125 137 0 end_operator begin_operator move-car l_17_4 l_17_5 2 0 0 238 126 2 2 0 0 0 1 0 238 126 127 1 0 238 126 127 0 end_operator begin_operator move-car l_17_4 l_18_4 2 0 0 238 126 2 2 0 0 0 1 0 238 126 138 1 0 238 126 138 0 end_operator begin_operator move-car l_17_5 l_16_6 2 0 0 238 127 2 2 0 0 0 1 0 238 127 115 1 0 238 127 115 0 end_operator begin_operator move-car l_17_5 l_17_6 2 0 0 238 127 2 2 0 0 0 1 0 238 127 128 1 0 238 127 128 0 end_operator begin_operator move-car l_17_5 l_18_5 2 0 0 238 127 2 2 0 0 0 1 0 238 127 139 1 0 238 127 139 0 end_operator begin_operator move-car l_17_6 l_17_7 2 0 0 238 128 2 2 0 0 0 1 0 238 128 129 1 0 238 128 129 0 end_operator begin_operator move-car l_17_6 l_18_6 2 0 0 238 128 2 2 0 0 0 1 0 238 128 140 1 0 238 128 140 0 end_operator begin_operator move-car l_17_7 l_16_8 2 0 0 238 129 2 2 0 0 0 1 0 238 129 117 1 0 238 129 117 0 end_operator begin_operator move-car l_17_7 l_17_8 2 0 0 238 129 2 2 0 0 0 1 0 238 129 130 1 0 238 129 130 0 end_operator begin_operator move-car l_17_7 l_18_7 2 0 0 238 129 2 2 0 0 0 1 0 238 129 141 1 0 238 129 141 0 end_operator begin_operator move-car l_17_8 l_17_9 2 0 0 238 130 2 2 0 0 0 1 0 238 130 131 1 0 238 130 131 0 end_operator begin_operator move-car l_17_8 l_18_8 2 0 0 238 130 2 2 0 0 0 1 0 238 130 142 1 0 238 130 142 0 end_operator begin_operator move-car l_17_9 l_16_10 2 0 0 238 131 2 2 0 0 0 1 0 238 131 106 1 0 238 131 106 0 end_operator begin_operator move-car l_17_9 l_17_10 2 0 0 238 131 2 2 0 0 0 1 0 238 131 120 1 0 238 131 120 0 end_operator begin_operator move-car l_17_9 l_18_9 2 0 0 238 131 2 2 0 0 0 1 0 238 131 143 1 0 238 131 143 0 end_operator begin_operator move-car l_18_1 l_17_2 2 0 0 238 132 2 2 0 0 0 1 0 238 132 124 1 0 238 132 124 0 end_operator begin_operator move-car l_18_1 l_19_1 2 0 0 238 132 2 2 0 0 0 1 0 238 132 144 1 0 238 132 144 0 end_operator begin_operator move-car l_18_10 l_17_11 2 0 0 238 133 2 2 0 0 0 1 0 238 133 121 1 0 238 133 121 0 end_operator begin_operator move-car l_18_11 l_17_12 2 0 0 238 134 2 2 0 0 0 1 0 238 134 122 1 0 238 134 122 0 end_operator begin_operator move-car l_18_11 l_19_11 2 0 0 238 134 2 2 0 0 0 1 0 238 134 146 1 0 238 134 146 0 end_operator begin_operator move-car l_18_12 l_17_13 2 0 0 238 135 2 2 0 0 0 1 0 238 135 123 1 0 238 135 123 0 end_operator begin_operator move-car l_18_2 l_17_3 2 0 0 238 136 2 2 0 0 0 1 0 238 136 125 1 0 238 136 125 0 end_operator begin_operator move-car l_18_3 l_17_4 2 0 0 238 137 2 2 0 0 0 1 0 238 137 126 1 0 238 137 126 0 end_operator begin_operator move-car l_18_3 l_19_3 2 0 0 238 137 2 2 0 0 0 1 0 238 137 148 1 0 238 137 148 0 end_operator begin_operator move-car l_18_4 l_17_5 2 0 0 238 138 2 2 0 0 0 1 0 238 138 127 1 0 238 138 127 0 end_operator begin_operator move-car l_18_5 l_17_6 2 0 0 238 139 2 2 0 0 0 1 0 238 139 128 1 0 238 139 128 0 end_operator begin_operator move-car l_18_5 l_19_5 2 0 0 238 139 2 2 0 0 0 1 0 238 139 150 1 0 238 139 150 0 end_operator begin_operator move-car l_18_6 l_17_7 2 0 0 238 140 2 2 0 0 0 1 0 238 140 129 1 0 238 140 129 0 end_operator begin_operator move-car l_18_7 l_17_8 2 0 0 238 141 2 2 0 0 0 1 0 238 141 130 1 0 238 141 130 0 end_operator begin_operator move-car l_18_7 l_19_7 2 0 0 238 141 2 2 0 0 0 1 0 238 141 152 1 0 238 141 152 0 end_operator begin_operator move-car l_18_8 l_17_9 2 0 0 238 142 2 2 0 0 0 1 0 238 142 131 1 0 238 142 131 0 end_operator begin_operator move-car l_18_9 l_17_10 2 0 0 238 143 2 2 0 0 0 1 0 238 143 120 1 0 238 143 120 0 end_operator begin_operator move-car l_18_9 l_19_9 2 0 0 238 143 2 2 0 0 0 1 0 238 143 154 1 0 238 143 154 0 end_operator begin_operator move-car l_19_1 l_18_2 2 0 0 238 144 2 2 0 0 0 1 0 238 144 136 1 0 238 144 136 0 end_operator begin_operator move-car l_19_1 l_19_2 2 0 0 238 144 2 2 0 0 0 1 0 238 144 147 1 0 238 144 147 0 end_operator begin_operator move-car l_19_1 l_20_1 2 0 0 238 144 2 2 0 0 0 1 0 238 144 184 1 0 238 144 184 0 end_operator begin_operator move-car l_19_10 l_19_11 2 0 0 238 145 2 2 0 0 0 1 0 238 145 146 1 0 238 145 146 0 end_operator begin_operator move-car l_19_10 l_20_10 2 0 0 238 145 2 2 0 0 0 1 0 238 145 185 1 0 238 145 185 0 end_operator begin_operator move-car l_19_11 l_18_12 2 0 0 238 146 2 2 0 0 0 1 0 238 146 135 1 0 238 146 135 0 end_operator begin_operator move-car l_19_2 l_19_3 2 0 0 238 147 2 2 0 0 0 1 0 238 147 148 1 0 238 147 148 0 end_operator begin_operator move-car l_19_2 l_20_2 2 0 0 238 147 2 2 0 0 0 1 0 238 147 186 1 0 238 147 186 0 end_operator begin_operator move-car l_19_3 l_18_4 2 0 0 238 148 2 2 0 0 0 1 0 238 148 138 1 0 238 148 138 0 end_operator begin_operator move-car l_19_3 l_19_4 2 0 0 238 148 2 2 0 0 0 1 0 238 148 149 1 0 238 148 149 0 end_operator begin_operator move-car l_19_3 l_20_3 2 0 0 238 148 2 2 0 0 0 1 0 238 148 187 1 0 238 148 187 0 end_operator begin_operator move-car l_19_4 l_19_5 2 0 0 238 149 2 2 0 0 0 1 0 238 149 150 1 0 238 149 150 0 end_operator begin_operator move-car l_19_4 l_20_4 2 0 0 238 149 2 2 0 0 0 1 0 238 149 188 1 0 238 149 188 0 end_operator begin_operator move-car l_19_5 l_18_6 2 0 0 238 150 2 2 0 0 0 1 0 238 150 140 1 0 238 150 140 0 end_operator begin_operator move-car l_19_5 l_19_6 2 0 0 238 150 2 2 0 0 0 1 0 238 150 151 1 0 238 150 151 0 end_operator begin_operator move-car l_19_5 l_20_5 2 0 0 238 150 2 2 0 0 0 1 0 238 150 189 1 0 238 150 189 0 end_operator begin_operator move-car l_19_6 l_19_7 2 0 0 238 151 2 2 0 0 0 1 0 238 151 152 1 0 238 151 152 0 end_operator begin_operator move-car l_19_6 l_20_6 2 0 0 238 151 2 2 0 0 0 1 0 238 151 190 1 0 238 151 190 0 end_operator begin_operator move-car l_19_7 l_18_8 2 0 0 238 152 2 2 0 0 0 1 0 238 152 142 1 0 238 152 142 0 end_operator begin_operator move-car l_19_7 l_19_8 2 0 0 238 152 2 2 0 0 0 1 0 238 152 153 1 0 238 152 153 0 end_operator begin_operator move-car l_19_7 l_20_7 2 0 0 238 152 2 2 0 0 0 1 0 238 152 191 1 0 238 152 191 0 end_operator begin_operator move-car l_19_8 l_19_9 2 0 0 238 153 2 2 0 0 0 1 0 238 153 154 1 0 238 153 154 0 end_operator begin_operator move-car l_19_8 l_20_8 2 0 0 238 153 2 2 0 0 0 1 0 238 153 192 1 0 238 153 192 0 end_operator begin_operator move-car l_19_9 l_18_10 2 0 0 238 154 2 2 0 0 0 1 0 238 154 133 1 0 238 154 133 0 end_operator begin_operator move-car l_19_9 l_19_10 2 0 0 238 154 2 2 0 0 0 1 0 238 154 145 1 0 238 154 145 0 end_operator begin_operator move-car l_19_9 l_20_9 2 0 0 238 154 2 2 0 0 0 1 0 238 154 193 1 0 238 154 193 0 end_operator begin_operator move-car l_1_1 l_1_2 2 0 0 238 155 2 2 0 0 0 1 0 238 155 166 1 0 238 155 166 0 end_operator begin_operator move-car l_1_1 l_2_1 2 0 0 238 155 2 2 0 0 0 1 0 238 155 239 1 0 238 155 239 0 end_operator begin_operator move-car l_1_10 l_1_11 2 0 0 238 156 2 2 0 0 0 1 0 238 156 157 1 0 238 156 157 0 end_operator begin_operator move-car l_1_10 l_2_10 2 0 0 238 156 2 2 0 0 0 1 0 238 156 240 1 0 238 156 240 0 end_operator begin_operator move-car l_1_11 l_1_12 2 0 0 238 157 2 2 0 0 0 1 0 238 157 158 1 0 238 157 158 0 end_operator begin_operator move-car l_1_11 l_2_11 2 0 0 238 157 2 2 0 0 0 1 0 238 157 241 1 0 238 157 241 0 end_operator begin_operator move-car l_1_12 l_1_13 2 0 0 238 158 2 2 0 0 0 1 0 238 158 159 1 0 238 158 159 0 end_operator begin_operator move-car l_1_12 l_2_12 2 0 0 238 158 2 2 0 0 0 1 0 238 158 242 1 0 238 158 242 0 end_operator begin_operator move-car l_1_13 l_1_14 2 0 0 238 159 2 2 0 0 0 1 0 238 159 160 1 0 238 159 160 0 end_operator begin_operator move-car l_1_13 l_2_13 2 0 0 238 159 2 2 0 0 0 1 0 238 159 243 1 0 238 159 243 0 end_operator begin_operator move-car l_1_14 l_1_15 2 0 0 238 160 2 2 0 0 0 1 0 238 160 161 1 0 238 160 161 0 end_operator begin_operator move-car l_1_14 l_2_14 2 0 0 238 160 2 2 0 0 0 1 0 238 160 244 1 0 238 160 244 0 end_operator begin_operator move-car l_1_15 l_1_16 2 0 0 238 161 2 2 0 0 0 1 0 238 161 162 1 0 238 161 162 0 end_operator begin_operator move-car l_1_15 l_2_15 2 0 0 238 161 2 2 0 0 0 1 0 238 161 245 1 0 238 161 245 0 end_operator begin_operator move-car l_1_16 l_1_17 2 0 0 238 162 2 2 0 0 0 1 0 238 162 163 1 0 238 162 163 0 end_operator begin_operator move-car l_1_16 l_2_16 2 0 0 238 162 2 2 0 0 0 1 0 238 162 246 1 0 238 162 246 0 end_operator begin_operator move-car l_1_17 l_1_18 2 0 0 238 163 2 2 0 0 0 1 0 238 163 164 1 0 238 163 164 0 end_operator begin_operator move-car l_1_17 l_2_17 2 0 0 238 163 2 2 0 0 0 1 0 238 163 247 1 0 238 163 247 0 end_operator begin_operator move-car l_1_18 l_1_19 2 0 0 238 164 2 2 0 0 0 1 0 238 164 165 1 0 238 164 165 0 end_operator begin_operator move-car l_1_18 l_2_18 2 0 0 238 164 2 2 0 0 0 1 0 238 164 248 1 0 238 164 248 0 end_operator begin_operator move-car l_1_19 l_1_20 2 0 0 238 165 2 2 0 0 0 1 0 238 165 167 1 0 238 165 167 0 end_operator begin_operator move-car l_1_19 l_2_19 2 0 0 238 165 2 2 0 0 0 1 0 238 165 249 1 0 238 165 249 0 end_operator begin_operator move-car l_1_2 l_1_3 2 0 0 238 166 2 2 0 0 0 1 0 238 166 177 1 0 238 166 177 0 end_operator begin_operator move-car l_1_2 l_2_2 2 0 0 238 166 2 2 0 0 0 1 0 238 166 250 1 0 238 166 250 0 end_operator begin_operator move-car l_1_20 l_1_21 2 0 0 238 167 2 2 0 0 0 1 0 238 167 168 1 0 238 167 168 0 end_operator begin_operator move-car l_1_20 l_2_20 2 0 0 238 167 2 2 0 0 0 1 0 238 167 251 1 0 238 167 251 0 end_operator begin_operator move-car l_1_21 l_1_22 2 0 0 238 168 2 2 0 0 0 1 0 238 168 169 1 0 238 168 169 0 end_operator begin_operator move-car l_1_21 l_2_21 2 0 0 238 168 2 2 0 0 0 1 0 238 168 252 1 0 238 168 252 0 end_operator begin_operator move-car l_1_22 l_1_23 2 0 0 238 169 2 2 0 0 0 1 0 238 169 170 1 0 238 169 170 0 end_operator begin_operator move-car l_1_22 l_2_22 2 0 0 238 169 2 2 0 0 0 1 0 238 169 253 1 0 238 169 253 0 end_operator begin_operator move-car l_1_23 l_1_24 2 0 0 238 170 2 2 0 0 0 1 0 238 170 171 1 0 238 170 171 0 end_operator begin_operator move-car l_1_23 l_2_23 2 0 0 238 170 2 2 0 0 0 1 0 238 170 254 1 0 238 170 254 0 end_operator begin_operator move-car l_1_24 l_1_25 2 0 0 238 171 2 2 0 0 0 1 0 238 171 172 1 0 238 171 172 0 end_operator begin_operator move-car l_1_24 l_2_24 2 0 0 238 171 2 2 0 0 0 1 0 238 171 255 1 0 238 171 255 0 end_operator begin_operator move-car l_1_25 l_1_26 2 0 0 238 172 2 2 0 0 0 1 0 238 172 173 1 0 238 172 173 0 end_operator begin_operator move-car l_1_25 l_2_25 2 0 0 238 172 2 2 0 0 0 1 0 238 172 256 1 0 238 172 256 0 end_operator begin_operator move-car l_1_26 l_1_27 2 0 0 238 173 2 2 0 0 0 1 0 238 173 174 1 0 238 173 174 0 end_operator begin_operator move-car l_1_26 l_2_26 2 0 0 238 173 2 2 0 0 0 1 0 238 173 257 1 0 238 173 257 0 end_operator begin_operator move-car l_1_27 l_1_28 2 0 0 238 174 2 2 0 0 0 1 0 238 174 175 1 0 238 174 175 0 end_operator begin_operator move-car l_1_27 l_2_27 2 0 0 238 174 2 2 0 0 0 1 0 238 174 258 1 0 238 174 258 0 end_operator begin_operator move-car l_1_28 l_1_29 2 0 0 238 175 2 2 0 0 0 1 0 238 175 176 1 0 238 175 176 0 end_operator begin_operator move-car l_1_28 l_2_28 2 0 0 238 175 2 2 0 0 0 1 0 238 175 259 1 0 238 175 259 0 end_operator begin_operator move-car l_1_3 l_1_4 2 0 0 238 177 2 2 0 0 0 1 0 238 177 178 1 0 238 177 178 0 end_operator begin_operator move-car l_1_3 l_2_3 2 0 0 238 177 2 2 0 0 0 1 0 238 177 260 1 0 238 177 260 0 end_operator begin_operator move-car l_1_4 l_1_5 2 0 0 238 178 2 2 0 0 0 1 0 238 178 179 1 0 238 178 179 0 end_operator begin_operator move-car l_1_4 l_2_4 2 0 0 238 178 2 2 0 0 0 1 0 238 178 261 1 0 238 178 261 0 end_operator begin_operator move-car l_1_5 l_1_6 2 0 0 238 179 2 2 0 0 0 1 0 238 179 180 1 0 238 179 180 0 end_operator begin_operator move-car l_1_5 l_2_5 2 0 0 238 179 2 2 0 0 0 1 0 238 179 262 1 0 238 179 262 0 end_operator begin_operator move-car l_1_6 l_1_7 2 0 0 238 180 2 2 0 0 0 1 0 238 180 181 1 0 238 180 181 0 end_operator begin_operator move-car l_1_6 l_2_6 2 0 0 238 180 2 2 0 0 0 1 0 238 180 263 1 0 238 180 263 0 end_operator begin_operator move-car l_1_7 l_1_8 2 0 0 238 181 2 2 0 0 0 1 0 238 181 182 1 0 238 181 182 0 end_operator begin_operator move-car l_1_7 l_2_7 2 0 0 238 181 2 2 0 0 0 1 0 238 181 264 1 0 238 181 264 0 end_operator begin_operator move-car l_1_8 l_1_9 2 0 0 238 182 2 2 0 0 0 1 0 238 182 183 1 0 238 182 183 0 end_operator begin_operator move-car l_1_8 l_2_8 2 0 0 238 182 2 2 0 0 0 1 0 238 182 265 1 0 238 182 265 0 end_operator begin_operator move-car l_1_9 l_1_10 2 0 0 238 183 2 2 0 0 0 1 0 238 183 156 1 0 238 183 156 0 end_operator begin_operator move-car l_1_9 l_2_9 2 0 0 238 183 2 2 0 0 0 1 0 238 183 266 1 0 238 183 266 0 end_operator begin_operator move-car l_20_1 l_19_2 2 0 0 238 184 2 2 0 0 0 1 0 238 184 147 1 0 238 184 147 0 end_operator begin_operator move-car l_20_1 l_21_1 2 0 0 238 184 2 2 0 0 0 1 0 238 184 194 1 0 238 184 194 0 end_operator begin_operator move-car l_20_10 l_19_11 2 0 0 238 185 2 2 0 0 0 1 0 238 185 146 1 0 238 185 146 0 end_operator begin_operator move-car l_20_2 l_19_3 2 0 0 238 186 2 2 0 0 0 1 0 238 186 148 1 0 238 186 148 0 end_operator begin_operator move-car l_20_3 l_19_4 2 0 0 238 187 2 2 0 0 0 1 0 238 187 149 1 0 238 187 149 0 end_operator begin_operator move-car l_20_3 l_21_3 2 0 0 238 187 2 2 0 0 0 1 0 238 187 196 1 0 238 187 196 0 end_operator begin_operator move-car l_20_4 l_19_5 2 0 0 238 188 2 2 0 0 0 1 0 238 188 150 1 0 238 188 150 0 end_operator begin_operator move-car l_20_5 l_19_6 2 0 0 238 189 2 2 0 0 0 1 0 238 189 151 1 0 238 189 151 0 end_operator begin_operator move-car l_20_5 l_21_5 2 0 0 238 189 2 2 0 0 0 1 0 238 189 198 1 0 238 189 198 0 end_operator begin_operator move-car l_20_6 l_19_7 2 0 0 238 190 2 2 0 0 0 1 0 238 190 152 1 0 238 190 152 0 end_operator begin_operator move-car l_20_7 l_19_8 2 0 0 238 191 2 2 0 0 0 1 0 238 191 153 1 0 238 191 153 0 end_operator begin_operator move-car l_20_7 l_21_7 2 0 0 238 191 2 2 0 0 0 1 0 238 191 200 1 0 238 191 200 0 end_operator begin_operator move-car l_20_8 l_19_9 2 0 0 238 192 2 2 0 0 0 1 0 238 192 154 1 0 238 192 154 0 end_operator begin_operator move-car l_20_9 l_19_10 2 0 0 238 193 2 2 0 0 0 1 0 238 193 145 1 0 238 193 145 0 end_operator begin_operator move-car l_20_9 l_21_9 2 0 0 238 193 2 2 0 0 0 1 0 238 193 202 1 0 238 193 202 0 end_operator begin_operator move-car l_21_1 l_20_2 2 0 0 238 194 2 2 0 0 0 1 0 238 194 186 1 0 238 194 186 0 end_operator begin_operator move-car l_21_1 l_21_2 2 0 0 238 194 2 2 0 0 0 1 0 238 194 195 1 0 238 194 195 0 end_operator begin_operator move-car l_21_1 l_22_1 2 0 0 238 194 2 2 0 0 0 1 0 238 194 203 1 0 238 194 203 0 end_operator begin_operator move-car l_21_2 l_21_3 2 0 0 238 195 2 2 0 0 0 1 0 238 195 196 1 0 238 195 196 0 end_operator begin_operator move-car l_21_2 l_22_2 2 0 0 238 195 2 2 0 0 0 1 0 238 195 204 1 0 238 195 204 0 end_operator begin_operator move-car l_21_3 l_20_4 2 0 0 238 196 2 2 0 0 0 1 0 238 196 188 1 0 238 196 188 0 end_operator begin_operator move-car l_21_3 l_21_4 2 0 0 238 196 2 2 0 0 0 1 0 238 196 197 1 0 238 196 197 0 end_operator begin_operator move-car l_21_3 l_22_3 2 0 0 238 196 2 2 0 0 0 1 0 238 196 205 1 0 238 196 205 0 end_operator begin_operator move-car l_21_4 l_21_5 2 0 0 238 197 2 2 0 0 0 1 0 238 197 198 1 0 238 197 198 0 end_operator begin_operator move-car l_21_4 l_22_4 2 0 0 238 197 2 2 0 0 0 1 0 238 197 206 1 0 238 197 206 0 end_operator begin_operator move-car l_21_5 l_20_6 2 0 0 238 198 2 2 0 0 0 1 0 238 198 190 1 0 238 198 190 0 end_operator begin_operator move-car l_21_5 l_21_6 2 0 0 238 198 2 2 0 0 0 1 0 238 198 199 1 0 238 198 199 0 end_operator begin_operator move-car l_21_5 l_22_5 2 0 0 238 198 2 2 0 0 0 1 0 238 198 207 1 0 238 198 207 0 end_operator begin_operator move-car l_21_6 l_21_7 2 0 0 238 199 2 2 0 0 0 1 0 238 199 200 1 0 238 199 200 0 end_operator begin_operator move-car l_21_6 l_22_6 2 0 0 238 199 2 2 0 0 0 1 0 238 199 208 1 0 238 199 208 0 end_operator begin_operator move-car l_21_7 l_20_8 2 0 0 238 200 2 2 0 0 0 1 0 238 200 192 1 0 238 200 192 0 end_operator begin_operator move-car l_21_7 l_21_8 2 0 0 238 200 2 2 0 0 0 1 0 238 200 201 1 0 238 200 201 0 end_operator begin_operator move-car l_21_7 l_22_7 2 0 0 238 200 2 2 0 0 0 1 0 238 200 209 1 0 238 200 209 0 end_operator begin_operator move-car l_21_8 l_21_9 2 0 0 238 201 2 2 0 0 0 1 0 238 201 202 1 0 238 201 202 0 end_operator begin_operator move-car l_21_8 l_22_8 2 0 0 238 201 2 2 0 0 0 1 0 238 201 210 1 0 238 201 210 0 end_operator begin_operator move-car l_21_9 l_20_10 2 0 0 238 202 2 2 0 0 0 1 0 238 202 185 1 0 238 202 185 0 end_operator begin_operator move-car l_22_1 l_21_2 2 0 0 238 203 2 2 0 0 0 1 0 238 203 195 1 0 238 203 195 0 end_operator begin_operator move-car l_22_1 l_23_1 2 0 0 238 203 2 2 0 0 0 1 0 238 203 211 1 0 238 203 211 0 end_operator begin_operator move-car l_22_2 l_21_3 2 0 0 238 204 2 2 0 0 0 1 0 238 204 196 1 0 238 204 196 0 end_operator begin_operator move-car l_22_3 l_21_4 2 0 0 238 205 2 2 0 0 0 1 0 238 205 197 1 0 238 205 197 0 end_operator begin_operator move-car l_22_3 l_23_3 2 0 0 238 205 2 2 0 0 0 1 0 238 205 213 1 0 238 205 213 0 end_operator begin_operator move-car l_22_4 l_21_5 2 0 0 238 206 2 2 0 0 0 1 0 238 206 198 1 0 238 206 198 0 end_operator begin_operator move-car l_22_5 l_21_6 2 0 0 238 207 2 2 0 0 0 1 0 238 207 199 1 0 238 207 199 0 end_operator begin_operator move-car l_22_5 l_23_5 2 0 0 238 207 2 2 0 0 0 1 0 238 207 215 1 0 238 207 215 0 end_operator begin_operator move-car l_22_6 l_21_7 2 0 0 238 208 2 2 0 0 0 1 0 238 208 200 1 0 238 208 200 0 end_operator begin_operator move-car l_22_7 l_21_8 2 0 0 238 209 2 2 0 0 0 1 0 238 209 201 1 0 238 209 201 0 end_operator begin_operator move-car l_22_7 l_23_7 2 0 0 238 209 2 2 0 0 0 1 0 238 209 217 1 0 238 209 217 0 end_operator begin_operator move-car l_22_8 l_21_9 2 0 0 238 210 2 2 0 0 0 1 0 238 210 202 1 0 238 210 202 0 end_operator begin_operator move-car l_23_1 l_22_2 2 0 0 238 211 2 2 0 0 0 1 0 238 211 204 1 0 238 211 204 0 end_operator begin_operator move-car l_23_1 l_23_2 2 0 0 238 211 2 2 0 0 0 1 0 238 211 212 1 0 238 211 212 0 end_operator begin_operator move-car l_23_1 l_24_1 2 0 0 238 211 2 2 0 0 0 1 0 238 211 218 1 0 238 211 218 0 end_operator begin_operator move-car l_23_2 l_23_3 2 0 0 238 212 2 2 0 0 0 1 0 238 212 213 1 0 238 212 213 0 end_operator begin_operator move-car l_23_2 l_24_2 2 0 0 238 212 2 2 0 0 0 1 0 238 212 219 1 0 238 212 219 0 end_operator begin_operator move-car l_23_3 l_22_4 2 0 0 238 213 2 2 0 0 0 1 0 238 213 206 1 0 238 213 206 0 end_operator begin_operator move-car l_23_3 l_23_4 2 0 0 238 213 2 2 0 0 0 1 0 238 213 214 1 0 238 213 214 0 end_operator begin_operator move-car l_23_3 l_24_3 2 0 0 238 213 2 2 0 0 0 1 0 238 213 220 1 0 238 213 220 0 end_operator begin_operator move-car l_23_4 l_23_5 2 0 0 238 214 2 2 0 0 0 1 0 238 214 215 1 0 238 214 215 0 end_operator begin_operator move-car l_23_4 l_24_4 2 0 0 238 214 2 2 0 0 0 1 0 238 214 221 1 0 238 214 221 0 end_operator begin_operator move-car l_23_5 l_22_6 2 0 0 238 215 2 2 0 0 0 1 0 238 215 208 1 0 238 215 208 0 end_operator begin_operator move-car l_23_5 l_23_6 2 0 0 238 215 2 2 0 0 0 1 0 238 215 216 1 0 238 215 216 0 end_operator begin_operator move-car l_23_5 l_24_5 2 0 0 238 215 2 2 0 0 0 1 0 238 215 222 1 0 238 215 222 0 end_operator begin_operator move-car l_23_6 l_23_7 2 0 0 238 216 2 2 0 0 0 1 0 238 216 217 1 0 238 216 217 0 end_operator begin_operator move-car l_23_6 l_24_6 2 0 0 238 216 2 2 0 0 0 1 0 238 216 223 1 0 238 216 223 0 end_operator begin_operator move-car l_23_7 l_22_8 2 0 0 238 217 2 2 0 0 0 1 0 238 217 210 1 0 238 217 210 0 end_operator begin_operator move-car l_24_1 l_23_2 2 0 0 238 218 2 2 0 0 0 1 0 238 218 212 1 0 238 218 212 0 end_operator begin_operator move-car l_24_1 l_25_1 2 0 0 238 218 2 2 0 0 0 1 0 238 218 224 1 0 238 218 224 0 end_operator begin_operator move-car l_24_2 l_23_3 2 0 0 238 219 2 2 0 0 0 1 0 238 219 213 1 0 238 219 213 0 end_operator begin_operator move-car l_24_3 l_23_4 2 0 0 238 220 2 2 0 0 0 1 0 238 220 214 1 0 238 220 214 0 end_operator begin_operator move-car l_24_3 l_25_3 2 0 0 238 220 2 2 0 0 0 1 0 238 220 226 1 0 238 220 226 0 end_operator begin_operator move-car l_24_4 l_23_5 2 0 0 238 221 2 2 0 0 0 1 0 238 221 215 1 0 238 221 215 0 end_operator begin_operator move-car l_24_5 l_23_6 2 0 0 238 222 2 2 0 0 0 1 0 238 222 216 1 0 238 222 216 0 end_operator begin_operator move-car l_24_5 l_25_5 2 0 0 238 222 2 2 0 0 0 1 0 238 222 228 1 0 238 222 228 0 end_operator begin_operator move-car l_24_6 l_23_7 2 0 0 238 223 2 2 0 0 0 1 0 238 223 217 1 0 238 223 217 0 end_operator begin_operator move-car l_25_1 l_24_2 2 0 0 238 224 2 2 0 0 0 1 0 238 224 219 1 0 238 224 219 0 end_operator begin_operator move-car l_25_1 l_25_2 2 0 0 238 224 2 2 0 0 0 1 0 238 224 225 1 0 238 224 225 0 end_operator begin_operator move-car l_25_1 l_26_1 2 0 0 238 224 2 2 0 0 0 1 0 238 224 229 1 0 238 224 229 0 end_operator begin_operator move-car l_25_2 l_25_3 2 0 0 238 225 2 2 0 0 0 1 0 238 225 226 1 0 238 225 226 0 end_operator begin_operator move-car l_25_2 l_26_2 2 0 0 238 225 2 2 0 0 0 1 0 238 225 230 1 0 238 225 230 0 end_operator begin_operator move-car l_25_3 l_24_4 2 0 0 238 226 2 2 0 0 0 1 0 238 226 221 1 0 238 226 221 0 end_operator begin_operator move-car l_25_3 l_25_4 2 0 0 238 226 2 2 0 0 0 1 0 238 226 227 1 0 238 226 227 0 end_operator begin_operator move-car l_25_3 l_26_3 2 0 0 238 226 2 2 0 0 0 1 0 238 226 231 1 0 238 226 231 0 end_operator begin_operator move-car l_25_4 l_25_5 2 0 0 238 227 2 2 0 0 0 1 0 238 227 228 1 0 238 227 228 0 end_operator begin_operator move-car l_25_4 l_26_4 2 0 0 238 227 2 2 0 0 0 1 0 238 227 232 1 0 238 227 232 0 end_operator begin_operator move-car l_25_5 l_24_6 2 0 0 238 228 2 2 0 0 0 1 0 238 228 223 1 0 238 228 223 0 end_operator begin_operator move-car l_26_1 l_25_2 2 0 0 238 229 2 2 0 0 0 1 0 238 229 225 1 0 238 229 225 0 end_operator begin_operator move-car l_26_1 l_27_1 2 0 0 238 229 2 2 0 0 0 1 0 238 229 233 1 0 238 229 233 0 end_operator begin_operator move-car l_26_2 l_25_3 2 0 0 238 230 2 2 0 0 0 1 0 238 230 226 1 0 238 230 226 0 end_operator begin_operator move-car l_26_3 l_25_4 2 0 0 238 231 2 2 0 0 0 1 0 238 231 227 1 0 238 231 227 0 end_operator begin_operator move-car l_26_3 l_27_3 2 0 0 238 231 2 2 0 0 0 1 0 238 231 235 1 0 238 231 235 0 end_operator begin_operator move-car l_26_4 l_25_5 2 0 0 238 232 2 2 0 0 0 1 0 238 232 228 1 0 238 232 228 0 end_operator begin_operator move-car l_27_1 l_26_2 2 0 0 238 233 2 2 0 0 0 1 0 238 233 230 1 0 238 233 230 0 end_operator begin_operator move-car l_27_1 l_27_2 2 0 0 238 233 2 2 0 0 0 1 0 238 233 234 1 0 238 233 234 0 end_operator begin_operator move-car l_27_1 l_28_1 2 0 0 238 233 2 2 0 0 0 1 0 238 233 236 1 0 238 233 236 0 end_operator begin_operator move-car l_27_2 l_27_3 2 0 0 238 234 2 2 0 0 0 1 0 238 234 235 1 0 238 234 235 0 end_operator begin_operator move-car l_27_2 l_28_2 2 0 0 238 234 2 2 0 0 0 1 0 238 234 237 1 0 238 234 237 0 end_operator begin_operator move-car l_27_3 l_26_4 2 0 0 238 235 2 2 0 0 0 1 0 238 235 232 1 0 238 235 232 0 end_operator begin_operator move-car l_28_1 l_27_2 2 0 0 238 236 2 2 0 0 0 1 0 238 236 234 1 0 238 236 234 0 end_operator begin_operator move-car l_28_1 l_29_1 2 0 0 238 236 2 2 0 0 0 1 0 238 236 238 1 0 238 236 238 0 end_operator begin_operator move-car l_28_2 l_27_3 2 0 0 238 237 2 2 0 0 0 1 0 238 237 235 1 0 238 237 235 0 end_operator begin_operator move-car l_29_1 l_28_2 2 0 0 238 238 2 2 0 0 0 1 0 238 238 237 1 0 238 238 237 0 end_operator begin_operator move-car l_2_1 l_1_2 2 0 0 238 239 2 2 0 0 0 1 0 238 239 166 1 0 238 239 166 0 end_operator begin_operator move-car l_2_1 l_3_1 2 0 0 238 239 2 2 0 0 0 1 0 238 239 267 1 0 238 239 267 0 end_operator begin_operator move-car l_2_10 l_1_11 2 0 0 238 240 2 2 0 0 0 1 0 238 240 157 1 0 238 240 157 0 end_operator begin_operator move-car l_2_11 l_1_12 2 0 0 238 241 2 2 0 0 0 1 0 238 241 158 1 0 238 241 158 0 end_operator begin_operator move-car l_2_11 l_3_11 2 0 0 238 241 2 2 0 0 0 1 0 238 241 269 1 0 238 241 269 0 end_operator begin_operator move-car l_2_12 l_1_13 2 0 0 238 242 2 2 0 0 0 1 0 238 242 159 1 0 238 242 159 0 end_operator begin_operator move-car l_2_13 l_1_14 2 0 0 238 243 2 2 0 0 0 1 0 238 243 160 1 0 238 243 160 0 end_operator begin_operator move-car l_2_13 l_3_13 2 0 0 238 243 2 2 0 0 0 1 0 238 243 271 1 0 238 243 271 0 end_operator begin_operator move-car l_2_14 l_1_15 2 0 0 238 244 2 2 0 0 0 1 0 238 244 161 1 0 238 244 161 0 end_operator begin_operator move-car l_2_15 l_1_16 2 0 0 238 245 2 2 0 0 0 1 0 238 245 162 1 0 238 245 162 0 end_operator begin_operator move-car l_2_15 l_3_15 2 0 0 238 245 2 2 0 0 0 1 0 238 245 273 1 0 238 245 273 0 end_operator begin_operator move-car l_2_16 l_1_17 2 0 0 238 246 2 2 0 0 0 1 0 238 246 163 1 0 238 246 163 0 end_operator begin_operator move-car l_2_17 l_1_18 2 0 0 238 247 2 2 0 0 0 1 0 238 247 164 1 0 238 247 164 0 end_operator begin_operator move-car l_2_17 l_3_17 2 0 0 238 247 2 2 0 0 0 1 0 238 247 275 1 0 238 247 275 0 end_operator begin_operator move-car l_2_18 l_1_19 2 0 0 238 248 2 2 0 0 0 1 0 238 248 165 1 0 238 248 165 0 end_operator begin_operator move-car l_2_19 l_1_20 2 0 0 238 249 2 2 0 0 0 1 0 238 249 167 1 0 238 249 167 0 end_operator begin_operator move-car l_2_19 l_3_19 2 0 0 238 249 2 2 0 0 0 1 0 238 249 277 1 0 238 249 277 0 end_operator begin_operator move-car l_2_2 l_1_3 2 0 0 238 250 2 2 0 0 0 1 0 238 250 177 1 0 238 250 177 0 end_operator begin_operator move-car l_2_20 l_1_21 2 0 0 238 251 2 2 0 0 0 1 0 238 251 168 1 0 238 251 168 0 end_operator begin_operator move-car l_2_21 l_1_22 2 0 0 238 252 2 2 0 0 0 1 0 238 252 169 1 0 238 252 169 0 end_operator begin_operator move-car l_2_21 l_3_21 2 0 0 238 252 2 2 0 0 0 1 0 238 252 280 1 0 238 252 280 0 end_operator begin_operator move-car l_2_22 l_1_23 2 0 0 238 253 2 2 0 0 0 1 0 238 253 170 1 0 238 253 170 0 end_operator begin_operator move-car l_2_23 l_1_24 2 0 0 238 254 2 2 0 0 0 1 0 238 254 171 1 0 238 254 171 0 end_operator begin_operator move-car l_2_23 l_3_23 2 0 0 238 254 2 2 0 0 0 1 0 238 254 282 1 0 238 254 282 0 end_operator begin_operator move-car l_2_24 l_1_25 2 0 0 238 255 2 2 0 0 0 1 0 238 255 172 1 0 238 255 172 0 end_operator begin_operator move-car l_2_25 l_1_26 2 0 0 238 256 2 2 0 0 0 1 0 238 256 173 1 0 238 256 173 0 end_operator begin_operator move-car l_2_25 l_3_25 2 0 0 238 256 2 2 0 0 0 1 0 238 256 284 1 0 238 256 284 0 end_operator begin_operator move-car l_2_26 l_1_27 2 0 0 238 257 2 2 0 0 0 1 0 238 257 174 1 0 238 257 174 0 end_operator begin_operator move-car l_2_27 l_1_28 2 0 0 238 258 2 2 0 0 0 1 0 238 258 175 1 0 238 258 175 0 end_operator begin_operator move-car l_2_27 l_3_27 2 0 0 238 258 2 2 0 0 0 1 0 238 258 286 1 0 238 258 286 0 end_operator begin_operator move-car l_2_28 l_1_29 2 0 0 238 259 2 2 0 0 0 1 0 238 259 176 1 0 238 259 176 0 end_operator begin_operator move-car l_2_3 l_1_4 2 0 0 238 260 2 2 0 0 0 1 0 238 260 178 1 0 238 260 178 0 end_operator begin_operator move-car l_2_3 l_3_3 2 0 0 238 260 2 2 0 0 0 1 0 238 260 287 1 0 238 260 287 0 end_operator begin_operator move-car l_2_4 l_1_5 2 0 0 238 261 2 2 0 0 0 1 0 238 261 179 1 0 238 261 179 0 end_operator begin_operator move-car l_2_5 l_1_6 2 0 0 238 262 2 2 0 0 0 1 0 238 262 180 1 0 238 262 180 0 end_operator begin_operator move-car l_2_5 l_3_5 2 0 0 238 262 2 2 0 0 0 1 0 238 262 289 1 0 238 262 289 0 end_operator begin_operator move-car l_2_6 l_1_7 2 0 0 238 263 2 2 0 0 0 1 0 238 263 181 1 0 238 263 181 0 end_operator begin_operator move-car l_2_7 l_1_8 2 0 0 238 264 2 2 0 0 0 1 0 238 264 182 1 0 238 264 182 0 end_operator begin_operator move-car l_2_7 l_3_7 2 0 0 238 264 2 2 0 0 0 1 0 238 264 291 1 0 238 264 291 0 end_operator begin_operator move-car l_2_8 l_1_9 2 0 0 238 265 2 2 0 0 0 1 0 238 265 183 1 0 238 265 183 0 end_operator begin_operator move-car l_2_9 l_1_10 2 0 0 238 266 2 2 0 0 0 1 0 238 266 156 1 0 238 266 156 0 end_operator begin_operator move-car l_2_9 l_3_9 2 0 0 238 266 2 2 0 0 0 1 0 238 266 293 1 0 238 266 293 0 end_operator begin_operator move-car l_3_1 l_2_2 2 0 0 238 267 2 2 0 0 0 1 0 238 267 250 1 0 238 267 250 0 end_operator begin_operator move-car l_3_1 l_3_2 2 0 0 238 267 2 2 0 0 0 1 0 238 267 278 1 0 238 267 278 0 end_operator begin_operator move-car l_3_1 l_4_1 2 0 0 238 267 2 2 0 0 0 1 0 238 267 294 1 0 238 267 294 0 end_operator begin_operator move-car l_3_10 l_3_11 2 0 0 238 268 2 2 0 0 0 1 0 238 268 269 1 0 238 268 269 0 end_operator begin_operator move-car l_3_10 l_4_10 2 0 0 238 268 2 2 0 0 0 1 0 238 268 295 1 0 238 268 295 0 end_operator begin_operator move-car l_3_11 l_2_12 2 0 0 238 269 2 2 0 0 0 1 0 238 269 242 1 0 238 269 242 0 end_operator begin_operator move-car l_3_11 l_3_12 2 0 0 238 269 2 2 0 0 0 1 0 238 269 270 1 0 238 269 270 0 end_operator begin_operator move-car l_3_11 l_4_11 2 0 0 238 269 2 2 0 0 0 1 0 238 269 296 1 0 238 269 296 0 end_operator begin_operator move-car l_3_12 l_3_13 2 0 0 238 270 2 2 0 0 0 1 0 238 270 271 1 0 238 270 271 0 end_operator begin_operator move-car l_3_12 l_4_12 2 0 0 238 270 2 2 0 0 0 1 0 238 270 297 1 0 238 270 297 0 end_operator begin_operator move-car l_3_13 l_2_14 2 0 0 238 271 2 2 0 0 0 1 0 238 271 244 1 0 238 271 244 0 end_operator begin_operator move-car l_3_13 l_3_14 2 0 0 238 271 2 2 0 0 0 1 0 238 271 272 1 0 238 271 272 0 end_operator begin_operator move-car l_3_13 l_4_13 2 0 0 238 271 2 2 0 0 0 1 0 238 271 298 1 0 238 271 298 0 end_operator begin_operator move-car l_3_14 l_3_15 2 0 0 238 272 2 2 0 0 0 1 0 238 272 273 1 0 238 272 273 0 end_operator begin_operator move-car l_3_14 l_4_14 2 0 0 238 272 2 2 0 0 0 1 0 238 272 299 1 0 238 272 299 0 end_operator begin_operator move-car l_3_15 l_2_16 2 0 0 238 273 2 2 0 0 0 1 0 238 273 246 1 0 238 273 246 0 end_operator begin_operator move-car l_3_15 l_3_16 2 0 0 238 273 2 2 0 0 0 1 0 238 273 274 1 0 238 273 274 0 end_operator begin_operator move-car l_3_15 l_4_15 2 0 0 238 273 2 2 0 0 0 1 0 238 273 300 1 0 238 273 300 0 end_operator begin_operator move-car l_3_16 l_3_17 2 0 0 238 274 2 2 0 0 0 1 0 238 274 275 1 0 238 274 275 0 end_operator begin_operator move-car l_3_16 l_4_16 2 0 0 238 274 2 2 0 0 0 1 0 238 274 301 1 0 238 274 301 0 end_operator begin_operator move-car l_3_17 l_2_18 2 0 0 238 275 2 2 0 0 0 1 0 238 275 248 1 0 238 275 248 0 end_operator begin_operator move-car l_3_17 l_3_18 2 0 0 238 275 2 2 0 0 0 1 0 238 275 276 1 0 238 275 276 0 end_operator begin_operator move-car l_3_17 l_4_17 2 0 0 238 275 2 2 0 0 0 1 0 238 275 302 1 0 238 275 302 0 end_operator begin_operator move-car l_3_18 l_3_19 2 0 0 238 276 2 2 0 0 0 1 0 238 276 277 1 0 238 276 277 0 end_operator begin_operator move-car l_3_18 l_4_18 2 0 0 238 276 2 2 0 0 0 1 0 238 276 303 1 0 238 276 303 0 end_operator begin_operator move-car l_3_19 l_2_20 2 0 0 238 277 2 2 0 0 0 1 0 238 277 251 1 0 238 277 251 0 end_operator begin_operator move-car l_3_19 l_3_20 2 0 0 238 277 2 2 0 0 0 1 0 238 277 279 1 0 238 277 279 0 end_operator begin_operator move-car l_3_19 l_4_19 2 0 0 238 277 2 2 0 0 0 1 0 238 277 304 1 0 238 277 304 0 end_operator begin_operator move-car l_3_2 l_3_3 2 0 0 238 278 2 2 0 0 0 1 0 238 278 287 1 0 238 278 287 0 end_operator begin_operator move-car l_3_2 l_4_2 2 0 0 238 278 2 2 0 0 0 1 0 238 278 305 1 0 238 278 305 0 end_operator begin_operator move-car l_3_20 l_3_21 2 0 0 238 279 2 2 0 0 0 1 0 238 279 280 1 0 238 279 280 0 end_operator begin_operator move-car l_3_20 l_4_20 2 0 0 238 279 2 2 0 0 0 1 0 238 279 306 1 0 238 279 306 0 end_operator begin_operator move-car l_3_21 l_2_22 2 0 0 238 280 2 2 0 0 0 1 0 238 280 253 1 0 238 280 253 0 end_operator begin_operator move-car l_3_21 l_3_22 2 0 0 238 280 2 2 0 0 0 1 0 238 280 281 1 0 238 280 281 0 end_operator begin_operator move-car l_3_21 l_4_21 2 0 0 238 280 2 2 0 0 0 1 0 238 280 307 1 0 238 280 307 0 end_operator begin_operator move-car l_3_22 l_3_23 2 0 0 238 281 2 2 0 0 0 1 0 238 281 282 1 0 238 281 282 0 end_operator begin_operator move-car l_3_22 l_4_22 2 0 0 238 281 2 2 0 0 0 1 0 238 281 308 1 0 238 281 308 0 end_operator begin_operator move-car l_3_23 l_2_24 2 0 0 238 282 2 2 0 0 0 1 0 238 282 255 1 0 238 282 255 0 end_operator begin_operator move-car l_3_23 l_3_24 2 0 0 238 282 2 2 0 0 0 1 0 238 282 283 1 0 238 282 283 0 end_operator begin_operator move-car l_3_23 l_4_23 2 0 0 238 282 2 2 0 0 0 1 0 238 282 309 1 0 238 282 309 0 end_operator begin_operator move-car l_3_24 l_3_25 2 0 0 238 283 2 2 0 0 0 1 0 238 283 284 1 0 238 283 284 0 end_operator begin_operator move-car l_3_24 l_4_24 2 0 0 238 283 2 2 0 0 0 1 0 238 283 310 1 0 238 283 310 0 end_operator begin_operator move-car l_3_25 l_2_26 2 0 0 238 284 2 2 0 0 0 1 0 238 284 257 1 0 238 284 257 0 end_operator begin_operator move-car l_3_25 l_3_26 2 0 0 238 284 2 2 0 0 0 1 0 238 284 285 1 0 238 284 285 0 end_operator begin_operator move-car l_3_25 l_4_25 2 0 0 238 284 2 2 0 0 0 1 0 238 284 311 1 0 238 284 311 0 end_operator begin_operator move-car l_3_26 l_3_27 2 0 0 238 285 2 2 0 0 0 1 0 238 285 286 1 0 238 285 286 0 end_operator begin_operator move-car l_3_26 l_4_26 2 0 0 238 285 2 2 0 0 0 1 0 238 285 312 1 0 238 285 312 0 end_operator begin_operator move-car l_3_27 l_2_28 2 0 0 238 286 2 2 0 0 0 1 0 238 286 259 1 0 238 286 259 0 end_operator begin_operator move-car l_3_3 l_2_4 2 0 0 238 287 2 2 0 0 0 1 0 238 287 261 1 0 238 287 261 0 end_operator begin_operator move-car l_3_3 l_3_4 2 0 0 238 287 2 2 0 0 0 1 0 238 287 288 1 0 238 287 288 0 end_operator begin_operator move-car l_3_3 l_4_3 2 0 0 238 287 2 2 0 0 0 1 0 238 287 313 1 0 238 287 313 0 end_operator begin_operator move-car l_3_4 l_3_5 2 0 0 238 288 2 2 0 0 0 1 0 238 288 289 1 0 238 288 289 0 end_operator begin_operator move-car l_3_4 l_4_4 2 0 0 238 288 2 2 0 0 0 1 0 238 288 314 1 0 238 288 314 0 end_operator begin_operator move-car l_3_5 l_2_6 2 0 0 238 289 2 2 0 0 0 1 0 238 289 263 1 0 238 289 263 0 end_operator begin_operator move-car l_3_5 l_3_6 2 0 0 238 289 2 2 0 0 0 1 0 238 289 290 1 0 238 289 290 0 end_operator begin_operator move-car l_3_5 l_4_5 2 0 0 238 289 2 2 0 0 0 1 0 238 289 315 1 0 238 289 315 0 end_operator begin_operator move-car l_3_6 l_3_7 2 0 0 238 290 2 2 0 0 0 1 0 238 290 291 1 0 238 290 291 0 end_operator begin_operator move-car l_3_6 l_4_6 2 0 0 238 290 2 2 0 0 0 1 0 238 290 316 1 0 238 290 316 0 end_operator begin_operator move-car l_3_7 l_2_8 2 0 0 238 291 2 2 0 0 0 1 0 238 291 265 1 0 238 291 265 0 end_operator begin_operator move-car l_3_7 l_3_8 2 0 0 238 291 2 2 0 0 0 1 0 238 291 292 1 0 238 291 292 0 end_operator begin_operator move-car l_3_7 l_4_7 2 0 0 238 291 2 2 0 0 0 1 0 238 291 317 1 0 238 291 317 0 end_operator begin_operator move-car l_3_8 l_3_9 2 0 0 238 292 2 2 0 0 0 1 0 238 292 293 1 0 238 292 293 0 end_operator begin_operator move-car l_3_8 l_4_8 2 0 0 238 292 2 2 0 0 0 1 0 238 292 318 1 0 238 292 318 0 end_operator begin_operator move-car l_3_9 l_2_10 2 0 0 238 293 2 2 0 0 0 1 0 238 293 240 1 0 238 293 240 0 end_operator begin_operator move-car l_3_9 l_3_10 2 0 0 238 293 2 2 0 0 0 1 0 238 293 268 1 0 238 293 268 0 end_operator begin_operator move-car l_3_9 l_4_9 2 0 0 238 293 2 2 0 0 0 1 0 238 293 319 1 0 238 293 319 0 end_operator begin_operator move-car l_4_1 l_3_2 2 0 0 238 294 2 2 0 0 0 1 0 238 294 278 1 0 238 294 278 0 end_operator begin_operator move-car l_4_1 l_5_1 2 0 0 238 294 2 2 0 0 0 1 0 238 294 320 1 0 238 294 320 0 end_operator begin_operator move-car l_4_10 l_3_11 2 0 0 238 295 2 2 0 0 0 1 0 238 295 269 1 0 238 295 269 0 end_operator begin_operator move-car l_4_11 l_3_12 2 0 0 238 296 2 2 0 0 0 1 0 238 296 270 1 0 238 296 270 0 end_operator begin_operator move-car l_4_11 l_5_11 2 0 0 238 296 2 2 0 0 0 1 0 238 296 322 1 0 238 296 322 0 end_operator begin_operator move-car l_4_12 l_3_13 2 0 0 238 297 2 2 0 0 0 1 0 238 297 271 1 0 238 297 271 0 end_operator begin_operator move-car l_4_13 l_3_14 2 0 0 238 298 2 2 0 0 0 1 0 238 298 272 1 0 238 298 272 0 end_operator begin_operator move-car l_4_13 l_5_13 2 0 0 238 298 2 2 0 0 0 1 0 238 298 324 1 0 238 298 324 0 end_operator begin_operator move-car l_4_14 l_3_15 2 0 0 238 299 2 2 0 0 0 1 0 238 299 273 1 0 238 299 273 0 end_operator begin_operator move-car l_4_15 l_3_16 2 0 0 238 300 2 2 0 0 0 1 0 238 300 274 1 0 238 300 274 0 end_operator begin_operator move-car l_4_15 l_5_15 2 0 0 238 300 2 2 0 0 0 1 0 238 300 326 1 0 238 300 326 0 end_operator begin_operator move-car l_4_16 l_3_17 2 0 0 238 301 2 2 0 0 0 1 0 238 301 275 1 0 238 301 275 0 end_operator begin_operator move-car l_4_17 l_3_18 2 0 0 238 302 2 2 0 0 0 1 0 238 302 276 1 0 238 302 276 0 end_operator begin_operator move-car l_4_17 l_5_17 2 0 0 238 302 2 2 0 0 0 1 0 238 302 328 1 0 238 302 328 0 end_operator begin_operator move-car l_4_18 l_3_19 2 0 0 238 303 2 2 0 0 0 1 0 238 303 277 1 0 238 303 277 0 end_operator begin_operator move-car l_4_19 l_3_20 2 0 0 238 304 2 2 0 0 0 1 0 238 304 279 1 0 238 304 279 0 end_operator begin_operator move-car l_4_19 l_5_19 2 0 0 238 304 2 2 0 0 0 1 0 238 304 330 1 0 238 304 330 0 end_operator begin_operator move-car l_4_2 l_3_3 2 0 0 238 305 2 2 0 0 0 1 0 238 305 287 1 0 238 305 287 0 end_operator begin_operator move-car l_4_20 l_3_21 2 0 0 238 306 2 2 0 0 0 1 0 238 306 280 1 0 238 306 280 0 end_operator begin_operator move-car l_4_21 l_3_22 2 0 0 238 307 2 2 0 0 0 1 0 238 307 281 1 0 238 307 281 0 end_operator begin_operator move-car l_4_21 l_5_21 2 0 0 238 307 2 2 0 0 0 1 0 238 307 333 1 0 238 307 333 0 end_operator begin_operator move-car l_4_22 l_3_23 2 0 0 238 308 2 2 0 0 0 1 0 238 308 282 1 0 238 308 282 0 end_operator begin_operator move-car l_4_23 l_3_24 2 0 0 238 309 2 2 0 0 0 1 0 238 309 283 1 0 238 309 283 0 end_operator begin_operator move-car l_4_23 l_5_23 2 0 0 238 309 2 2 0 0 0 1 0 238 309 335 1 0 238 309 335 0 end_operator begin_operator move-car l_4_24 l_3_25 2 0 0 238 310 2 2 0 0 0 1 0 238 310 284 1 0 238 310 284 0 end_operator begin_operator move-car l_4_25 l_3_26 2 0 0 238 311 2 2 0 0 0 1 0 238 311 285 1 0 238 311 285 0 end_operator begin_operator move-car l_4_25 l_5_25 2 0 0 238 311 2 2 0 0 0 1 0 238 311 337 1 0 238 311 337 0 end_operator begin_operator move-car l_4_26 l_3_27 2 0 0 238 312 2 2 0 0 0 1 0 238 312 286 1 0 238 312 286 0 end_operator begin_operator move-car l_4_3 l_3_4 2 0 0 238 313 2 2 0 0 0 1 0 238 313 288 1 0 238 313 288 0 end_operator begin_operator move-car l_4_3 l_5_3 2 0 0 238 313 2 2 0 0 0 1 0 238 313 338 1 0 238 313 338 0 end_operator begin_operator move-car l_4_4 l_3_5 2 0 0 238 314 2 2 0 0 0 1 0 238 314 289 1 0 238 314 289 0 end_operator begin_operator move-car l_4_5 l_3_6 2 0 0 238 315 2 2 0 0 0 1 0 238 315 290 1 0 238 315 290 0 end_operator begin_operator move-car l_4_5 l_5_5 2 0 0 238 315 2 2 0 0 0 1 0 238 315 340 1 0 238 315 340 0 end_operator begin_operator move-car l_4_6 l_3_7 2 0 0 238 316 2 2 0 0 0 1 0 238 316 291 1 0 238 316 291 0 end_operator begin_operator move-car l_4_7 l_3_8 2 0 0 238 317 2 2 0 0 0 1 0 238 317 292 1 0 238 317 292 0 end_operator begin_operator move-car l_4_7 l_5_7 2 0 0 238 317 2 2 0 0 0 1 0 238 317 342 1 0 238 317 342 0 end_operator begin_operator move-car l_4_8 l_3_9 2 0 0 238 318 2 2 0 0 0 1 0 238 318 293 1 0 238 318 293 0 end_operator begin_operator move-car l_4_9 l_3_10 2 0 0 238 319 2 2 0 0 0 1 0 238 319 268 1 0 238 319 268 0 end_operator begin_operator move-car l_4_9 l_5_9 2 0 0 238 319 2 2 0 0 0 1 0 238 319 344 1 0 238 319 344 0 end_operator begin_operator move-car l_5_1 l_4_2 2 0 0 238 320 2 2 0 0 0 1 0 238 320 305 1 0 238 320 305 0 end_operator begin_operator move-car l_5_1 l_5_2 2 0 0 238 320 2 2 0 0 0 1 0 238 320 331 1 0 238 320 331 0 end_operator begin_operator move-car l_5_1 l_6_1 2 0 0 238 320 2 2 0 0 0 1 0 238 320 345 1 0 238 320 345 0 end_operator begin_operator move-car l_5_10 l_5_11 2 0 0 238 321 2 2 0 0 0 1 0 238 321 322 1 0 238 321 322 0 end_operator begin_operator move-car l_5_10 l_6_10 2 0 0 238 321 2 2 0 0 0 1 0 238 321 346 1 0 238 321 346 0 end_operator begin_operator move-car l_5_11 l_4_12 2 0 0 238 322 2 2 0 0 0 1 0 238 322 297 1 0 238 322 297 0 end_operator begin_operator move-car l_5_11 l_5_12 2 0 0 238 322 2 2 0 0 0 1 0 238 322 323 1 0 238 322 323 0 end_operator begin_operator move-car l_5_11 l_6_11 2 0 0 238 322 2 2 0 0 0 1 0 238 322 347 1 0 238 322 347 0 end_operator begin_operator move-car l_5_12 l_5_13 2 0 0 238 323 2 2 0 0 0 1 0 238 323 324 1 0 238 323 324 0 end_operator begin_operator move-car l_5_12 l_6_12 2 0 0 238 323 2 2 0 0 0 1 0 238 323 348 1 0 238 323 348 0 end_operator begin_operator move-car l_5_13 l_4_14 2 0 0 238 324 2 2 0 0 0 1 0 238 324 299 1 0 238 324 299 0 end_operator begin_operator move-car l_5_13 l_5_14 2 0 0 238 324 2 2 0 0 0 1 0 238 324 325 1 0 238 324 325 0 end_operator begin_operator move-car l_5_13 l_6_13 2 0 0 238 324 2 2 0 0 0 1 0 238 324 349 1 0 238 324 349 0 end_operator begin_operator move-car l_5_14 l_5_15 2 0 0 238 325 2 2 0 0 0 1 0 238 325 326 1 0 238 325 326 0 end_operator begin_operator move-car l_5_14 l_6_14 2 0 0 238 325 2 2 0 0 0 1 0 238 325 350 1 0 238 325 350 0 end_operator begin_operator move-car l_5_15 l_4_16 2 0 0 238 326 2 2 0 0 0 1 0 238 326 301 1 0 238 326 301 0 end_operator begin_operator move-car l_5_15 l_5_16 2 0 0 238 326 2 2 0 0 0 1 0 238 326 327 1 0 238 326 327 0 end_operator begin_operator move-car l_5_15 l_6_15 2 0 0 238 326 2 2 0 0 0 1 0 238 326 351 1 0 238 326 351 0 end_operator begin_operator move-car l_5_16 l_5_17 2 0 0 238 327 2 2 0 0 0 1 0 238 327 328 1 0 238 327 328 0 end_operator begin_operator move-car l_5_16 l_6_16 2 0 0 238 327 2 2 0 0 0 1 0 238 327 352 1 0 238 327 352 0 end_operator begin_operator move-car l_5_17 l_4_18 2 0 0 238 328 2 2 0 0 0 1 0 238 328 303 1 0 238 328 303 0 end_operator begin_operator move-car l_5_17 l_5_18 2 0 0 238 328 2 2 0 0 0 1 0 238 328 329 1 0 238 328 329 0 end_operator begin_operator move-car l_5_17 l_6_17 2 0 0 238 328 2 2 0 0 0 1 0 238 328 353 1 0 238 328 353 0 end_operator begin_operator move-car l_5_18 l_5_19 2 0 0 238 329 2 2 0 0 0 1 0 238 329 330 1 0 238 329 330 0 end_operator begin_operator move-car l_5_18 l_6_18 2 0 0 238 329 2 2 0 0 0 1 0 238 329 354 1 0 238 329 354 0 end_operator begin_operator move-car l_5_19 l_4_20 2 0 0 238 330 2 2 0 0 0 1 0 238 330 306 1 0 238 330 306 0 end_operator begin_operator move-car l_5_19 l_5_20 2 0 0 238 330 2 2 0 0 0 1 0 238 330 332 1 0 238 330 332 0 end_operator begin_operator move-car l_5_19 l_6_19 2 0 0 238 330 2 2 0 0 0 1 0 238 330 355 1 0 238 330 355 0 end_operator begin_operator move-car l_5_2 l_5_3 2 0 0 238 331 2 2 0 0 0 1 0 238 331 338 1 0 238 331 338 0 end_operator begin_operator move-car l_5_2 l_6_2 2 0 0 238 331 2 2 0 0 0 1 0 238 331 356 1 0 238 331 356 0 end_operator begin_operator move-car l_5_20 l_5_21 2 0 0 238 332 2 2 0 0 0 1 0 238 332 333 1 0 238 332 333 0 end_operator begin_operator move-car l_5_20 l_6_20 2 0 0 238 332 2 2 0 0 0 1 0 238 332 357 1 0 238 332 357 0 end_operator begin_operator move-car l_5_21 l_4_22 2 0 0 238 333 2 2 0 0 0 1 0 238 333 308 1 0 238 333 308 0 end_operator begin_operator move-car l_5_21 l_5_22 2 0 0 238 333 2 2 0 0 0 1 0 238 333 334 1 0 238 333 334 0 end_operator begin_operator move-car l_5_21 l_6_21 2 0 0 238 333 2 2 0 0 0 1 0 238 333 358 1 0 238 333 358 0 end_operator begin_operator move-car l_5_22 l_5_23 2 0 0 238 334 2 2 0 0 0 1 0 238 334 335 1 0 238 334 335 0 end_operator begin_operator move-car l_5_22 l_6_22 2 0 0 238 334 2 2 0 0 0 1 0 238 334 359 1 0 238 334 359 0 end_operator begin_operator move-car l_5_23 l_4_24 2 0 0 238 335 2 2 0 0 0 1 0 238 335 310 1 0 238 335 310 0 end_operator begin_operator move-car l_5_23 l_5_24 2 0 0 238 335 2 2 0 0 0 1 0 238 335 336 1 0 238 335 336 0 end_operator begin_operator move-car l_5_23 l_6_23 2 0 0 238 335 2 2 0 0 0 1 0 238 335 360 1 0 238 335 360 0 end_operator begin_operator move-car l_5_24 l_5_25 2 0 0 238 336 2 2 0 0 0 1 0 238 336 337 1 0 238 336 337 0 end_operator begin_operator move-car l_5_24 l_6_24 2 0 0 238 336 2 2 0 0 0 1 0 238 336 361 1 0 238 336 361 0 end_operator begin_operator move-car l_5_25 l_4_26 2 0 0 238 337 2 2 0 0 0 1 0 238 337 312 1 0 238 337 312 0 end_operator begin_operator move-car l_5_3 l_4_4 2 0 0 238 338 2 2 0 0 0 1 0 238 338 314 1 0 238 338 314 0 end_operator begin_operator move-car l_5_3 l_5_4 2 0 0 238 338 2 2 0 0 0 1 0 238 338 339 1 0 238 338 339 0 end_operator begin_operator move-car l_5_3 l_6_3 2 0 0 238 338 2 2 0 0 0 1 0 238 338 362 1 0 238 338 362 0 end_operator begin_operator move-car l_5_4 l_5_5 2 0 0 238 339 2 2 0 0 0 1 0 238 339 340 1 0 238 339 340 0 end_operator begin_operator move-car l_5_4 l_6_4 2 0 0 238 339 2 2 0 0 0 1 0 238 339 363 1 0 238 339 363 0 end_operator begin_operator move-car l_5_5 l_4_6 2 0 0 238 340 2 2 0 0 0 1 0 238 340 316 1 0 238 340 316 0 end_operator begin_operator move-car l_5_5 l_5_6 2 0 0 238 340 2 2 0 0 0 1 0 238 340 341 1 0 238 340 341 0 end_operator begin_operator move-car l_5_5 l_6_5 2 0 0 238 340 2 2 0 0 0 1 0 238 340 364 1 0 238 340 364 0 end_operator begin_operator move-car l_5_6 l_5_7 2 0 0 238 341 2 2 0 0 0 1 0 238 341 342 1 0 238 341 342 0 end_operator begin_operator move-car l_5_6 l_6_6 2 0 0 238 341 2 2 0 0 0 1 0 238 341 365 1 0 238 341 365 0 end_operator begin_operator move-car l_5_7 l_4_8 2 0 0 238 342 2 2 0 0 0 1 0 238 342 318 1 0 238 342 318 0 end_operator begin_operator move-car l_5_7 l_5_8 2 0 0 238 342 2 2 0 0 0 1 0 238 342 343 1 0 238 342 343 0 end_operator begin_operator move-car l_5_7 l_6_7 2 0 0 238 342 2 2 0 0 0 1 0 238 342 366 1 0 238 342 366 0 end_operator begin_operator move-car l_5_8 l_5_9 2 0 0 238 343 2 2 0 0 0 1 0 238 343 344 1 0 238 343 344 0 end_operator begin_operator move-car l_5_8 l_6_8 2 0 0 238 343 2 2 0 0 0 1 0 238 343 367 1 0 238 343 367 0 end_operator begin_operator move-car l_5_9 l_4_10 2 0 0 238 344 2 2 0 0 0 1 0 238 344 295 1 0 238 344 295 0 end_operator begin_operator move-car l_5_9 l_5_10 2 0 0 238 344 2 2 0 0 0 1 0 238 344 321 1 0 238 344 321 0 end_operator begin_operator move-car l_5_9 l_6_9 2 0 0 238 344 2 2 0 0 0 1 0 238 344 368 1 0 238 344 368 0 end_operator begin_operator move-car l_6_1 l_5_2 2 0 0 238 345 2 2 0 0 0 1 0 238 345 331 1 0 238 345 331 0 end_operator begin_operator move-car l_6_1 l_7_1 2 0 0 238 345 2 2 0 0 0 1 0 238 345 369 1 0 238 345 369 0 end_operator begin_operator move-car l_6_10 l_5_11 2 0 0 238 346 2 2 0 0 0 1 0 238 346 322 1 0 238 346 322 0 end_operator begin_operator move-car l_6_11 l_5_12 2 0 0 238 347 2 2 0 0 0 1 0 238 347 323 1 0 238 347 323 0 end_operator begin_operator move-car l_6_11 l_7_11 2 0 0 238 347 2 2 0 0 0 1 0 238 347 371 1 0 238 347 371 0 end_operator begin_operator move-car l_6_12 l_5_13 2 0 0 238 348 2 2 0 0 0 1 0 238 348 324 1 0 238 348 324 0 end_operator begin_operator move-car l_6_13 l_5_14 2 0 0 238 349 2 2 0 0 0 1 0 238 349 325 1 0 238 349 325 0 end_operator begin_operator move-car l_6_13 l_7_13 2 0 0 238 349 2 2 0 0 0 1 0 238 349 373 1 0 238 349 373 0 end_operator begin_operator move-car l_6_14 l_5_15 2 0 0 238 350 2 2 0 0 0 1 0 238 350 326 1 0 238 350 326 0 end_operator begin_operator move-car l_6_15 l_5_16 2 0 0 238 351 2 2 0 0 0 1 0 238 351 327 1 0 238 351 327 0 end_operator begin_operator move-car l_6_15 l_7_15 2 0 0 238 351 2 2 0 0 0 1 0 238 351 375 1 0 238 351 375 0 end_operator begin_operator move-car l_6_16 l_5_17 2 0 0 238 352 2 2 0 0 0 1 0 238 352 328 1 0 238 352 328 0 end_operator begin_operator move-car l_6_17 l_5_18 2 0 0 238 353 2 2 0 0 0 1 0 238 353 329 1 0 238 353 329 0 end_operator begin_operator move-car l_6_17 l_7_17 2 0 0 238 353 2 2 0 0 0 1 0 238 353 377 1 0 238 353 377 0 end_operator begin_operator move-car l_6_18 l_5_19 2 0 0 238 354 2 2 0 0 0 1 0 238 354 330 1 0 238 354 330 0 end_operator begin_operator move-car l_6_19 l_5_20 2 0 0 238 355 2 2 0 0 0 1 0 238 355 332 1 0 238 355 332 0 end_operator begin_operator move-car l_6_19 l_7_19 2 0 0 238 355 2 2 0 0 0 1 0 238 355 379 1 0 238 355 379 0 end_operator begin_operator move-car l_6_2 l_5_3 2 0 0 238 356 2 2 0 0 0 1 0 238 356 338 1 0 238 356 338 0 end_operator begin_operator move-car l_6_20 l_5_21 2 0 0 238 357 2 2 0 0 0 1 0 238 357 333 1 0 238 357 333 0 end_operator begin_operator move-car l_6_21 l_5_22 2 0 0 238 358 2 2 0 0 0 1 0 238 358 334 1 0 238 358 334 0 end_operator begin_operator move-car l_6_21 l_7_21 2 0 0 238 358 2 2 0 0 0 1 0 238 358 382 1 0 238 358 382 0 end_operator begin_operator move-car l_6_22 l_5_23 2 0 0 238 359 2 2 0 0 0 1 0 238 359 335 1 0 238 359 335 0 end_operator begin_operator move-car l_6_23 l_5_24 2 0 0 238 360 2 2 0 0 0 1 0 238 360 336 1 0 238 360 336 0 end_operator begin_operator move-car l_6_23 l_7_23 2 0 0 238 360 2 2 0 0 0 1 0 238 360 384 1 0 238 360 384 0 end_operator begin_operator move-car l_6_24 l_5_25 2 0 0 238 361 2 2 0 0 0 1 0 238 361 337 1 0 238 361 337 0 end_operator begin_operator move-car l_6_3 l_5_4 2 0 0 238 362 2 2 0 0 0 1 0 238 362 339 1 0 238 362 339 0 end_operator begin_operator move-car l_6_3 l_7_3 2 0 0 238 362 2 2 0 0 0 1 0 238 362 385 1 0 238 362 385 0 end_operator begin_operator move-car l_6_4 l_5_5 2 0 0 238 363 2 2 0 0 0 1 0 238 363 340 1 0 238 363 340 0 end_operator begin_operator move-car l_6_5 l_5_6 2 0 0 238 364 2 2 0 0 0 1 0 238 364 341 1 0 238 364 341 0 end_operator begin_operator move-car l_6_5 l_7_5 2 0 0 238 364 2 2 0 0 0 1 0 238 364 387 1 0 238 364 387 0 end_operator begin_operator move-car l_6_6 l_5_7 2 0 0 238 365 2 2 0 0 0 1 0 238 365 342 1 0 238 365 342 0 end_operator begin_operator move-car l_6_7 l_5_8 2 0 0 238 366 2 2 0 0 0 1 0 238 366 343 1 0 238 366 343 0 end_operator begin_operator move-car l_6_7 l_7_7 2 0 0 238 366 2 2 0 0 0 1 0 238 366 389 1 0 238 366 389 0 end_operator begin_operator move-car l_6_8 l_5_9 2 0 0 238 367 2 2 0 0 0 1 0 238 367 344 1 0 238 367 344 0 end_operator begin_operator move-car l_6_9 l_5_10 2 0 0 238 368 2 2 0 0 0 1 0 238 368 321 1 0 238 368 321 0 end_operator begin_operator move-car l_6_9 l_7_9 2 0 0 238 368 2 2 0 0 0 1 0 238 368 391 1 0 238 368 391 0 end_operator begin_operator move-car l_7_1 l_6_2 2 0 0 238 369 2 2 0 0 0 1 0 238 369 356 1 0 238 369 356 0 end_operator begin_operator move-car l_7_1 l_7_2 2 0 0 238 369 2 2 0 0 0 1 0 238 369 380 1 0 238 369 380 0 end_operator begin_operator move-car l_7_1 l_8_1 2 0 0 238 369 2 2 0 0 0 1 0 238 369 392 1 0 238 369 392 0 end_operator begin_operator move-car l_7_10 l_7_11 2 0 0 238 370 2 2 0 0 0 1 0 238 370 371 1 0 238 370 371 0 end_operator begin_operator move-car l_7_10 l_8_10 2 0 0 238 370 2 2 0 0 0 1 0 238 370 393 1 0 238 370 393 0 end_operator begin_operator move-car l_7_11 l_6_12 2 0 0 238 371 2 2 0 0 0 1 0 238 371 348 1 0 238 371 348 0 end_operator begin_operator move-car l_7_11 l_7_12 2 0 0 238 371 2 2 0 0 0 1 0 238 371 372 1 0 238 371 372 0 end_operator begin_operator move-car l_7_11 l_8_11 2 0 0 238 371 2 2 0 0 0 1 0 238 371 394 1 0 238 371 394 0 end_operator begin_operator move-car l_7_12 l_7_13 2 0 0 238 372 2 2 0 0 0 1 0 238 372 373 1 0 238 372 373 0 end_operator begin_operator move-car l_7_12 l_8_12 2 0 0 238 372 2 2 0 0 0 1 0 238 372 395 1 0 238 372 395 0 end_operator begin_operator move-car l_7_13 l_6_14 2 0 0 238 373 2 2 0 0 0 1 0 238 373 350 1 0 238 373 350 0 end_operator begin_operator move-car l_7_13 l_7_14 2 0 0 238 373 2 2 0 0 0 1 0 238 373 374 1 0 238 373 374 0 end_operator begin_operator move-car l_7_13 l_8_13 2 0 0 238 373 2 2 0 0 0 1 0 238 373 396 1 0 238 373 396 0 end_operator begin_operator move-car l_7_14 l_7_15 2 0 0 238 374 2 2 0 0 0 1 0 238 374 375 1 0 238 374 375 0 end_operator begin_operator move-car l_7_14 l_8_14 2 0 0 238 374 2 2 0 0 0 1 0 238 374 397 1 0 238 374 397 0 end_operator begin_operator move-car l_7_15 l_6_16 2 0 0 238 375 2 2 0 0 0 1 0 238 375 352 1 0 238 375 352 0 end_operator begin_operator move-car l_7_15 l_7_16 2 0 0 238 375 2 2 0 0 0 1 0 238 375 376 1 0 238 375 376 0 end_operator begin_operator move-car l_7_15 l_8_15 2 0 0 238 375 2 2 0 0 0 1 0 238 375 398 1 0 238 375 398 0 end_operator begin_operator move-car l_7_16 l_7_17 2 0 0 238 376 2 2 0 0 0 1 0 238 376 377 1 0 238 376 377 0 end_operator begin_operator move-car l_7_16 l_8_16 2 0 0 238 376 2 2 0 0 0 1 0 238 376 399 1 0 238 376 399 0 end_operator begin_operator move-car l_7_17 l_6_18 2 0 0 238 377 2 2 0 0 0 1 0 238 377 354 1 0 238 377 354 0 end_operator begin_operator move-car l_7_17 l_7_18 2 0 0 238 377 2 2 0 0 0 1 0 238 377 378 1 0 238 377 378 0 end_operator begin_operator move-car l_7_17 l_8_17 2 0 0 238 377 2 2 0 0 0 1 0 238 377 400 1 0 238 377 400 0 end_operator begin_operator move-car l_7_18 l_7_19 2 0 0 238 378 2 2 0 0 0 1 0 238 378 379 1 0 238 378 379 0 end_operator begin_operator move-car l_7_18 l_8_18 2 0 0 238 378 2 2 0 0 0 1 0 238 378 401 1 0 238 378 401 0 end_operator begin_operator move-car l_7_19 l_6_20 2 0 0 238 379 2 2 0 0 0 1 0 238 379 357 1 0 238 379 357 0 end_operator begin_operator move-car l_7_19 l_7_20 2 0 0 238 379 2 2 0 0 0 1 0 238 379 381 1 0 238 379 381 0 end_operator begin_operator move-car l_7_19 l_8_19 2 0 0 238 379 2 2 0 0 0 1 0 238 379 402 1 0 238 379 402 0 end_operator begin_operator move-car l_7_2 l_7_3 2 0 0 238 380 2 2 0 0 0 1 0 238 380 385 1 0 238 380 385 0 end_operator begin_operator move-car l_7_2 l_8_2 2 0 0 238 380 2 2 0 0 0 1 0 238 380 403 1 0 238 380 403 0 end_operator begin_operator move-car l_7_20 l_7_21 2 0 0 238 381 2 2 0 0 0 1 0 238 381 382 1 0 238 381 382 0 end_operator begin_operator move-car l_7_20 l_8_20 2 0 0 238 381 2 2 0 0 0 1 0 238 381 404 1 0 238 381 404 0 end_operator begin_operator move-car l_7_21 l_6_22 2 0 0 238 382 2 2 0 0 0 1 0 238 382 359 1 0 238 382 359 0 end_operator begin_operator move-car l_7_21 l_7_22 2 0 0 238 382 2 2 0 0 0 1 0 238 382 383 1 0 238 382 383 0 end_operator begin_operator move-car l_7_21 l_8_21 2 0 0 238 382 2 2 0 0 0 1 0 238 382 405 1 0 238 382 405 0 end_operator begin_operator move-car l_7_22 l_7_23 2 0 0 238 383 2 2 0 0 0 1 0 238 383 384 1 0 238 383 384 0 end_operator begin_operator move-car l_7_22 l_8_22 2 0 0 238 383 2 2 0 0 0 1 0 238 383 406 1 0 238 383 406 0 end_operator begin_operator move-car l_7_23 l_6_24 2 0 0 238 384 2 2 0 0 0 1 0 238 384 361 1 0 238 384 361 0 end_operator begin_operator move-car l_7_3 l_6_4 2 0 0 238 385 2 2 0 0 0 1 0 238 385 363 1 0 238 385 363 0 end_operator begin_operator move-car l_7_3 l_7_4 2 0 0 238 385 2 2 0 0 0 1 0 238 385 386 1 0 238 385 386 0 end_operator begin_operator move-car l_7_3 l_8_3 2 0 0 238 385 2 2 0 0 0 1 0 238 385 407 1 0 238 385 407 0 end_operator begin_operator move-car l_7_4 l_7_5 2 0 0 238 386 2 2 0 0 0 1 0 238 386 387 1 0 238 386 387 0 end_operator begin_operator move-car l_7_4 l_8_4 2 0 0 238 386 2 2 0 0 0 1 0 238 386 408 1 0 238 386 408 0 end_operator begin_operator move-car l_7_5 l_6_6 2 0 0 238 387 2 2 0 0 0 1 0 238 387 365 1 0 238 387 365 0 end_operator begin_operator move-car l_7_5 l_7_6 2 0 0 238 387 2 2 0 0 0 1 0 238 387 388 1 0 238 387 388 0 end_operator begin_operator move-car l_7_5 l_8_5 2 0 0 238 387 2 2 0 0 0 1 0 238 387 409 1 0 238 387 409 0 end_operator begin_operator move-car l_7_6 l_7_7 2 0 0 238 388 2 2 0 0 0 1 0 238 388 389 1 0 238 388 389 0 end_operator begin_operator move-car l_7_6 l_8_6 2 0 0 238 388 2 2 0 0 0 1 0 238 388 410 1 0 238 388 410 0 end_operator begin_operator move-car l_7_7 l_6_8 2 0 0 238 389 2 2 0 0 0 1 0 238 389 367 1 0 238 389 367 0 end_operator begin_operator move-car l_7_7 l_7_8 2 0 0 238 389 2 2 0 0 0 1 0 238 389 390 1 0 238 389 390 0 end_operator begin_operator move-car l_7_7 l_8_7 2 0 0 238 389 2 2 0 0 0 1 0 238 389 411 1 0 238 389 411 0 end_operator begin_operator move-car l_7_8 l_7_9 2 0 0 238 390 2 2 0 0 0 1 0 238 390 391 1 0 238 390 391 0 end_operator begin_operator move-car l_7_8 l_8_8 2 0 0 238 390 2 2 0 0 0 1 0 238 390 412 1 0 238 390 412 0 end_operator begin_operator move-car l_7_9 l_6_10 2 0 0 238 391 2 2 0 0 0 1 0 238 391 346 1 0 238 391 346 0 end_operator begin_operator move-car l_7_9 l_7_10 2 0 0 238 391 2 2 0 0 0 1 0 238 391 370 1 0 238 391 370 0 end_operator begin_operator move-car l_7_9 l_8_9 2 0 0 238 391 2 2 0 0 0 1 0 238 391 413 1 0 238 391 413 0 end_operator begin_operator move-car l_8_1 l_7_2 2 0 0 238 392 2 2 0 0 0 1 0 238 392 380 1 0 238 392 380 0 end_operator begin_operator move-car l_8_1 l_9_1 2 0 0 238 392 2 2 0 0 0 1 0 238 392 414 1 0 238 392 414 0 end_operator begin_operator move-car l_8_10 l_7_11 2 0 0 238 393 2 2 0 0 0 1 0 238 393 371 1 0 238 393 371 0 end_operator begin_operator move-car l_8_11 l_7_12 2 0 0 238 394 2 2 0 0 0 1 0 238 394 372 1 0 238 394 372 0 end_operator begin_operator move-car l_8_11 l_9_11 2 0 0 238 394 2 2 0 0 0 1 0 238 394 416 1 0 238 394 416 0 end_operator begin_operator move-car l_8_12 l_7_13 2 0 0 238 395 2 2 0 0 0 1 0 238 395 373 1 0 238 395 373 0 end_operator begin_operator move-car l_8_13 l_7_14 2 0 0 238 396 2 2 0 0 0 1 0 238 396 374 1 0 238 396 374 0 end_operator begin_operator move-car l_8_13 l_9_13 2 0 0 238 396 2 2 0 0 0 1 0 238 396 418 1 0 238 396 418 0 end_operator begin_operator move-car l_8_14 l_7_15 2 0 0 238 397 2 2 0 0 0 1 0 238 397 375 1 0 238 397 375 0 end_operator begin_operator move-car l_8_15 l_7_16 2 0 0 238 398 2 2 0 0 0 1 0 238 398 376 1 0 238 398 376 0 end_operator begin_operator move-car l_8_15 l_9_15 2 0 0 238 398 2 2 0 0 0 1 0 238 398 420 1 0 238 398 420 0 end_operator begin_operator move-car l_8_16 l_7_17 2 0 0 238 399 2 2 0 0 0 1 0 238 399 377 1 0 238 399 377 0 end_operator begin_operator move-car l_8_17 l_7_18 2 0 0 238 400 2 2 0 0 0 1 0 238 400 378 1 0 238 400 378 0 end_operator begin_operator move-car l_8_17 l_9_17 2 0 0 238 400 2 2 0 0 0 1 0 238 400 422 1 0 238 400 422 0 end_operator begin_operator move-car l_8_18 l_7_19 2 0 0 238 401 2 2 0 0 0 1 0 238 401 379 1 0 238 401 379 0 end_operator begin_operator move-car l_8_19 l_7_20 2 0 0 238 402 2 2 0 0 0 1 0 238 402 381 1 0 238 402 381 0 end_operator begin_operator move-car l_8_19 l_9_19 2 0 0 238 402 2 2 0 0 0 1 0 238 402 424 1 0 238 402 424 0 end_operator begin_operator move-car l_8_2 l_7_3 2 0 0 238 403 2 2 0 0 0 1 0 238 403 385 1 0 238 403 385 0 end_operator begin_operator move-car l_8_20 l_7_21 2 0 0 238 404 2 2 0 0 0 1 0 238 404 382 1 0 238 404 382 0 end_operator begin_operator move-car l_8_21 l_7_22 2 0 0 238 405 2 2 0 0 0 1 0 238 405 383 1 0 238 405 383 0 end_operator begin_operator move-car l_8_21 l_9_21 2 0 0 238 405 2 2 0 0 0 1 0 238 405 427 1 0 238 405 427 0 end_operator begin_operator move-car l_8_22 l_7_23 2 0 0 238 406 2 2 0 0 0 1 0 238 406 384 1 0 238 406 384 0 end_operator begin_operator move-car l_8_3 l_7_4 2 0 0 238 407 2 2 0 0 0 1 0 238 407 386 1 0 238 407 386 0 end_operator begin_operator move-car l_8_3 l_9_3 2 0 0 238 407 2 2 0 0 0 1 0 238 407 428 1 0 238 407 428 0 end_operator begin_operator move-car l_8_4 l_7_5 2 0 0 238 408 2 2 0 0 0 1 0 238 408 387 1 0 238 408 387 0 end_operator begin_operator move-car l_8_5 l_7_6 2 0 0 238 409 2 2 0 0 0 1 0 238 409 388 1 0 238 409 388 0 end_operator begin_operator move-car l_8_5 l_9_5 2 0 0 238 409 2 2 0 0 0 1 0 238 409 430 1 0 238 409 430 0 end_operator begin_operator move-car l_8_6 l_7_7 2 0 0 238 410 2 2 0 0 0 1 0 238 410 389 1 0 238 410 389 0 end_operator begin_operator move-car l_8_7 l_7_8 2 0 0 238 411 2 2 0 0 0 1 0 238 411 390 1 0 238 411 390 0 end_operator begin_operator move-car l_8_7 l_9_7 2 0 0 238 411 2 2 0 0 0 1 0 238 411 432 1 0 238 411 432 0 end_operator begin_operator move-car l_8_8 l_7_9 2 0 0 238 412 2 2 0 0 0 1 0 238 412 391 1 0 238 412 391 0 end_operator begin_operator move-car l_8_9 l_7_10 2 0 0 238 413 2 2 0 0 0 1 0 238 413 370 1 0 238 413 370 0 end_operator begin_operator move-car l_8_9 l_9_9 2 0 0 238 413 2 2 0 0 0 1 0 238 413 434 1 0 238 413 434 0 end_operator begin_operator move-car l_9_1 l_10_1 2 0 0 238 414 2 2 0 0 0 1 0 238 414 0 1 0 238 414 0 0 end_operator begin_operator move-car l_9_1 l_8_2 2 0 0 238 414 2 2 0 0 0 1 0 238 414 403 1 0 238 414 403 0 end_operator begin_operator move-car l_9_1 l_9_2 2 0 0 238 414 2 2 0 0 0 1 0 238 414 425 1 0 238 414 425 0 end_operator begin_operator move-car l_9_10 l_10_10 2 0 0 238 415 2 2 0 0 0 1 0 238 415 1 1 0 238 415 1 0 end_operator begin_operator move-car l_9_10 l_9_11 2 0 0 238 415 2 2 0 0 0 1 0 238 415 416 1 0 238 415 416 0 end_operator begin_operator move-car l_9_11 l_10_11 2 0 0 238 416 2 2 0 0 0 1 0 238 416 2 1 0 238 416 2 0 end_operator begin_operator move-car l_9_11 l_8_12 2 0 0 238 416 2 2 0 0 0 1 0 238 416 395 1 0 238 416 395 0 end_operator begin_operator move-car l_9_11 l_9_12 2 0 0 238 416 2 2 0 0 0 1 0 238 416 417 1 0 238 416 417 0 end_operator begin_operator move-car l_9_12 l_10_12 2 0 0 238 417 2 2 0 0 0 1 0 238 417 3 1 0 238 417 3 0 end_operator begin_operator move-car l_9_12 l_9_13 2 0 0 238 417 2 2 0 0 0 1 0 238 417 418 1 0 238 417 418 0 end_operator begin_operator move-car l_9_13 l_10_13 2 0 0 238 418 2 2 0 0 0 1 0 238 418 4 1 0 238 418 4 0 end_operator begin_operator move-car l_9_13 l_8_14 2 0 0 238 418 2 2 0 0 0 1 0 238 418 397 1 0 238 418 397 0 end_operator begin_operator move-car l_9_13 l_9_14 2 0 0 238 418 2 2 0 0 0 1 0 238 418 419 1 0 238 418 419 0 end_operator begin_operator move-car l_9_14 l_10_14 2 0 0 238 419 2 2 0 0 0 1 0 238 419 5 1 0 238 419 5 0 end_operator begin_operator move-car l_9_14 l_9_15 2 0 0 238 419 2 2 0 0 0 1 0 238 419 420 1 0 238 419 420 0 end_operator begin_operator move-car l_9_15 l_10_15 2 0 0 238 420 2 2 0 0 0 1 0 238 420 6 1 0 238 420 6 0 end_operator begin_operator move-car l_9_15 l_8_16 2 0 0 238 420 2 2 0 0 0 1 0 238 420 399 1 0 238 420 399 0 end_operator begin_operator move-car l_9_15 l_9_16 2 0 0 238 420 2 2 0 0 0 1 0 238 420 421 1 0 238 420 421 0 end_operator begin_operator move-car l_9_16 l_10_16 2 0 0 238 421 2 2 0 0 0 1 0 238 421 7 1 0 238 421 7 0 end_operator begin_operator move-car l_9_16 l_9_17 2 0 0 238 421 2 2 0 0 0 1 0 238 421 422 1 0 238 421 422 0 end_operator begin_operator move-car l_9_17 l_10_17 2 0 0 238 422 2 2 0 0 0 1 0 238 422 8 1 0 238 422 8 0 end_operator begin_operator move-car l_9_17 l_8_18 2 0 0 238 422 2 2 0 0 0 1 0 238 422 401 1 0 238 422 401 0 end_operator begin_operator move-car l_9_17 l_9_18 2 0 0 238 422 2 2 0 0 0 1 0 238 422 423 1 0 238 422 423 0 end_operator begin_operator move-car l_9_18 l_10_18 2 0 0 238 423 2 2 0 0 0 1 0 238 423 9 1 0 238 423 9 0 end_operator begin_operator move-car l_9_18 l_9_19 2 0 0 238 423 2 2 0 0 0 1 0 238 423 424 1 0 238 423 424 0 end_operator begin_operator move-car l_9_19 l_10_19 2 0 0 238 424 2 2 0 0 0 1 0 238 424 10 1 0 238 424 10 0 end_operator begin_operator move-car l_9_19 l_8_20 2 0 0 238 424 2 2 0 0 0 1 0 238 424 404 1 0 238 424 404 0 end_operator begin_operator move-car l_9_19 l_9_20 2 0 0 238 424 2 2 0 0 0 1 0 238 424 426 1 0 238 424 426 0 end_operator begin_operator move-car l_9_2 l_10_2 2 0 0 238 425 2 2 0 0 0 1 0 238 425 11 1 0 238 425 11 0 end_operator begin_operator move-car l_9_2 l_9_3 2 0 0 238 425 2 2 0 0 0 1 0 238 425 428 1 0 238 425 428 0 end_operator begin_operator move-car l_9_20 l_10_20 2 0 0 238 426 2 2 0 0 0 1 0 238 426 12 1 0 238 426 12 0 end_operator begin_operator move-car l_9_20 l_9_21 2 0 0 238 426 2 2 0 0 0 1 0 238 426 427 1 0 238 426 427 0 end_operator begin_operator move-car l_9_21 l_8_22 2 0 0 238 427 2 2 0 0 0 1 0 238 427 406 1 0 238 427 406 0 end_operator begin_operator move-car l_9_3 l_10_3 2 0 0 238 428 2 2 0 0 0 1 0 238 428 13 1 0 238 428 13 0 end_operator begin_operator move-car l_9_3 l_8_4 2 0 0 238 428 2 2 0 0 0 1 0 238 428 408 1 0 238 428 408 0 end_operator begin_operator move-car l_9_3 l_9_4 2 0 0 238 428 2 2 0 0 0 1 0 238 428 429 1 0 238 428 429 0 end_operator begin_operator move-car l_9_4 l_10_4 2 0 0 238 429 2 2 0 0 0 1 0 238 429 14 1 0 238 429 14 0 end_operator begin_operator move-car l_9_4 l_9_5 2 0 0 238 429 2 2 0 0 0 1 0 238 429 430 1 0 238 429 430 0 end_operator begin_operator move-car l_9_5 l_10_5 2 0 0 238 430 2 2 0 0 0 1 0 238 430 15 1 0 238 430 15 0 end_operator begin_operator move-car l_9_5 l_8_6 2 0 0 238 430 2 2 0 0 0 1 0 238 430 410 1 0 238 430 410 0 end_operator begin_operator move-car l_9_5 l_9_6 2 0 0 238 430 2 2 0 0 0 1 0 238 430 431 1 0 238 430 431 0 end_operator begin_operator move-car l_9_6 l_10_6 2 0 0 238 431 2 2 0 0 0 1 0 238 431 16 1 0 238 431 16 0 end_operator begin_operator move-car l_9_6 l_9_7 2 0 0 238 431 2 2 0 0 0 1 0 238 431 432 1 0 238 431 432 0 end_operator begin_operator move-car l_9_7 l_10_7 2 0 0 238 432 2 2 0 0 0 1 0 238 432 17 1 0 238 432 17 0 end_operator begin_operator move-car l_9_7 l_8_8 2 0 0 238 432 2 2 0 0 0 1 0 238 432 412 1 0 238 432 412 0 end_operator begin_operator move-car l_9_7 l_9_8 2 0 0 238 432 2 2 0 0 0 1 0 238 432 433 1 0 238 432 433 0 end_operator begin_operator move-car l_9_8 l_10_8 2 0 0 238 433 2 2 0 0 0 1 0 238 433 18 1 0 238 433 18 0 end_operator begin_operator move-car l_9_8 l_9_9 2 0 0 238 433 2 2 0 0 0 1 0 238 433 434 1 0 238 433 434 0 end_operator begin_operator move-car l_9_9 l_10_9 2 0 0 238 434 2 2 0 0 0 1 0 238 434 19 1 0 238 434 19 0 end_operator begin_operator move-car l_9_9 l_8_10 2 0 0 238 434 2 2 0 0 0 1 0 238 434 393 1 0 238 434 393 0 end_operator begin_operator move-car l_9_9 l_9_10 2 0 0 238 434 2 2 0 0 0 1 0 238 434 415 1 0 238 434 415 0 end_operator 0
yosys -import if { [info procs integrateinv] == {} } { plugin -i integrateinv } yosys -import ;# ingest plugin commands read_verilog -icells $::env(DESIGN_TOP).v hierarchy -check -auto-top debug integrateinv select t:\$_NOT_ -assert-count 1 select t:box r:INV_A=1'b1 %i -assert-count 3
syntax = "proto3"; package clutch.api.v1; option go_package = "github.com/lyft/clutch/backend/api/api/v1;apiv1"; import "google/protobuf/descriptor.proto"; import "api/v1/schema.proto"; extend google.protobuf.MessageOptions { // Use a random high number that won't conflict with annotations from other // libraries. Reference reference = 58901; Identifier id = 58902; bool redacted = 58903; } extend google.protobuf.MethodOptions { // Use a random high number that won't conflict with annotations from other // libraries. Action action = 58901; bool disable_audit = 58902; }
--- layout: redirect target: https://open-innovations.github.io/government-organisation-website-emissions/org/EA26.html ---
# # Sample lipsrc file. # # $Id$ # (setq gcgag t) (setq verboseflg t) (setq histmax 25) # aliases (alias .. cd ..) (alias a man -k) (alias cl progn (rm *~ *.~*~ .?*~) (/bin/rm -f core a.out)) (alias cn click -n) (alias exp untmp -as ~/.del) (alias f fortune) (alias fig /usr/local/src/fig/fig) (alias fo fortune -o) (alias l /bin/ls -F) (alias ll ls -l) (alias ls ls -xFCA) (alias ls ls -xFCA) (alias omega ~leihe/bin/omega) (alias q1 lpq -Pxlp-e-1tr) (alias qa lpq -Palw) (alias qe lpq -Pxlp-e-bv) (alias rm myrm -v) (alias rmcore /bin/rm core) (alias rn progn (cp ~/.newsrc ~/.newsrc~) (rn -d~/news -N)) (alias sl ls -s) (alias su print '(close call)) (alias t less) (alias y /usr/local/emacs/etc/yow) (reclaim 1) (reclaim 1)
<?php /** * Handling database connection * * @author Dominik Scherm * */ class DbConnect { private $conn; function __construct() { } /** * Establishing database connection * @return database connection handler */ function connect() { include_once dirname(__FILE__) . '/Config.php'; // Connecting to mysql database $this->conn = new mysqli(DB_HOST, DB_USERNAME, DB_PASSWORD, DB_NAME); // Check for database connection error if (mysqli_connect_errno()) { echo "Failed to connect to MySQL: " . mysqli_connect_error(); } $this->conn->set_charset("utf8"); // returing connection resource return $this->conn; } } ?>
USE `essentialmode`; INSERT INTO `addon_account` (name, label, shared) VALUES ('society_ambulance', 'EMS', 1) ; INSERT INTO `addon_inventory` (name, label, shared) VALUES ('society_ambulance', 'EMS', 1) ; INSERT INTO `datastore` (name, label, shared) VALUES ('society_ambulance', 'EMS', 1) ; INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES ('ambulance',0,'ambulance','Jr. EMT',20,'{\"tshirt_2\":0,\"hair_color_1\":5,\"glasses_2\":3,\"shoes\":9,\"torso_2\":3,\"hair_color_2\":0,\"pants_1\":24,\"glasses_1\":4,\"hair_1\":2,\"sex\":0,\"decals_2\":0,\"tshirt_1\":15,\"helmet_1\":8,\"helmet_2\":0,\"arms\":92,\"face\":19,\"decals_1\":60,\"torso_1\":13,\"hair_2\":0,\"skin\":34,\"pants_2\":5}','{\"tshirt_2\":3,\"decals_2\":0,\"glasses\":0,\"hair_1\":2,\"torso_1\":73,\"shoes\":1,\"hair_color_2\":0,\"glasses_1\":19,\"skin\":13,\"face\":6,\"pants_2\":5,\"tshirt_1\":75,\"pants_1\":37,\"helmet_1\":57,\"torso_2\":0,\"arms\":14,\"sex\":1,\"glasses_2\":0,\"decals_1\":0,\"hair_2\":0,\"helmet_2\":0,\"hair_color_1\":0}'), ('ambulance',1,'doctor','EMT',40,'{\"tshirt_2\":0,\"hair_color_1\":5,\"glasses_2\":3,\"shoes\":9,\"torso_2\":3,\"hair_color_2\":0,\"pants_1\":24,\"glasses_1\":4,\"hair_1\":2,\"sex\":0,\"decals_2\":0,\"tshirt_1\":15,\"helmet_1\":8,\"helmet_2\":0,\"arms\":92,\"face\":19,\"decals_1\":60,\"torso_1\":13,\"hair_2\":0,\"skin\":34,\"pants_2\":5}','{\"tshirt_2\":3,\"decals_2\":0,\"glasses\":0,\"hair_1\":2,\"torso_1\":73,\"shoes\":1,\"hair_color_2\":0,\"glasses_1\":19,\"skin\":13,\"face\":6,\"pants_2\":5,\"tshirt_1\":75,\"pants_1\":37,\"helmet_1\":57,\"torso_2\":0,\"arms\":14,\"sex\":1,\"glasses_2\":0,\"decals_1\":0,\"hair_2\":0,\"helmet_2\":0,\"hair_color_1\":0}'), ('ambulance',2,'chief_doctor','Sr. EMT',60,'{\"tshirt_2\":0,\"hair_color_1\":5,\"glasses_2\":3,\"shoes\":9,\"torso_2\":3,\"hair_color_2\":0,\"pants_1\":24,\"glasses_1\":4,\"hair_1\":2,\"sex\":0,\"decals_2\":0,\"tshirt_1\":15,\"helmet_1\":8,\"helmet_2\":0,\"arms\":92,\"face\":19,\"decals_1\":60,\"torso_1\":13,\"hair_2\":0,\"skin\":34,\"pants_2\":5}','{\"tshirt_2\":3,\"decals_2\":0,\"glasses\":0,\"hair_1\":2,\"torso_1\":73,\"shoes\":1,\"hair_color_2\":0,\"glasses_1\":19,\"skin\":13,\"face\":6,\"pants_2\":5,\"tshirt_1\":75,\"pants_1\":37,\"helmet_1\":57,\"torso_2\":0,\"arms\":14,\"sex\":1,\"glasses_2\":0,\"decals_1\":0,\"hair_2\":0,\"helmet_2\":0,\"hair_color_1\":0}'), ('ambulance',3,'boss','EMT Supervisor',80,'{\"tshirt_2\":0,\"hair_color_1\":5,\"glasses_2\":3,\"shoes\":9,\"torso_2\":3,\"hair_color_2\":0,\"pants_1\":24,\"glasses_1\":4,\"hair_1\":2,\"sex\":0,\"decals_2\":0,\"tshirt_1\":15,\"helmet_1\":8,\"helmet_2\":0,\"arms\":92,\"face\":19,\"decals_1\":60,\"torso_1\":13,\"hair_2\":0,\"skin\":34,\"pants_2\":5}','{\"tshirt_2\":3,\"decals_2\":0,\"glasses\":0,\"hair_1\":2,\"torso_1\":73,\"shoes\":1,\"hair_color_2\":0,\"glasses_1\":19,\"skin\":13,\"face\":6,\"pants_2\":5,\"tshirt_1\":75,\"pants_1\":37,\"helmet_1\":57,\"torso_2\":0,\"arms\":14,\"sex\":1,\"glasses_2\":0,\"decals_1\":0,\"hair_2\":0,\"helmet_2\":0,\"hair_color_1\":0}') ; INSERT INTO `jobs` (name, label) VALUES ('ambulance','EMS') ; INSERT INTO `items` (name, label, weight) VALUES ('bandage','Bandage', 2), ('medikit','Medikit', 2) ; ALTER TABLE `users` ADD `is_dead` TINYINT(1) NULL DEFAULT '0' ;
package message import ( "github.com/frolFomich/abstract-document" "time" ) const ( //IdPropertyName - message id property name IdPropertyName = "id" //TimestampPropertyName - message timestamp property name TimestampPropertyName = "timestamp" //TypePropertyName - message type property name TypePropertyName = "type" //DataTypePropertyName - message data type property name DataTypePropertyName = "dataType" //DataPropertyName - message data property name DataPropertyName = "data" ) type messageImpl struct { abstract_document.AbstractDocument } func (m *messageImpl) Id() string { v, err := m.String(IdPropertyName) if err != nil { panic(err) } return v } func (m *messageImpl) Timestamp() time.Time { v, err := m.Integer(TimestampPropertyName) if err != nil { panic(err) } return time.Unix(0, v*int64(time.Millisecond)) } func (m *messageImpl) Type() string { v, err := m.String(TypePropertyName) if err != nil { panic(err) } return v } func (m *messageImpl) DataType() string { v, err := m.String(DataTypePropertyName) if err != nil { panic(err) } return v } func (m *messageImpl) Data() interface{} { return m.Get(DataPropertyName) }
-module(wsite_sup). -behaviour(supervisor). -export([start_link/0]). -export([init/1]). start_link() -> supervisor:start_link({local, ?MODULE}, ?MODULE, []). init([]) -> Procs = [], {ok, {{one_for_one, 1, 5}, Procs}}.
open nat notation `⟦`:max a `⟧`:0 := cast (by simp) a inductive vector (α : Type) : nat → Type | nil {} : vector 0 | cons : Π {n}, α → vector n → vector (succ n) namespace vector local attribute [simp] add_succ succ_add add_comm variable {α : Type} def app : Π {n m : nat}, vector α n → vector α m → vector α (n + m) | 0 m nil w := ⟦ w ⟧ | (succ n) m (cons a v) w := ⟦ cons a (app v w) ⟧ lemma app_nil_right {n : nat} (v : vector α n) : app v nil == v := begin induction v, reflexivity, {[smt] ematch_using [app, add_comm, zero_add, add_zero] }, end def smt_cfg : smt_config := { cc_cfg := {ac := ff}} lemma app_assoc {n₁ n₂ n₃ : nat} (v₁ : vector α n₁) (v₂ : vector α n₂) (v₃ : vector α n₃) : app v₁ (app v₂ v₃) == app (app v₁ v₂) v₃ := begin intros, induction v₁, {[smt] ematch_using [app, zero_add] }, {[smt] with smt_cfg, repeat { ematch_using [app, add_succ, succ_add, add_comm, add_assoc] }} end def rev : Π {n : nat}, vector α n → vector α n | 0 nil := nil | (n+1) (cons x xs) := app (rev xs) (cons x nil) lemma rev_app : ∀ {n₁ n₂ : nat} (v₁ : vector α n₁) (v₂ : vector α n₂), rev (app v₁ v₂) == app (rev v₂) (rev v₁) := begin intros, induction v₁, {[smt] repeat {ematch_using [app, rev, zero_add, add_zero, add_comm, app_nil_right]}}, {[smt] repeat {ematch_using [app, rev, zero_add, add_zero, add_comm, app_assoc, add_one_eq_succ]} } end end vector
<%-- $This file is distributed under the terms of the license in LICENSE$ --%> <%@ taglib prefix="form" uri="http://vitro.mannlib.cornell.edu/edit/tags" %> <tr class="editformcell"> <td> <b>Condition type</b><br/> <select name="conditionType"> <option value="necessary">necessary</option> <option value="necessaryAndSufficient">necessary and sufficient</option> </select> </td> </tr> <tr class="editformcell"> <td> <b>Property to restrict</b><br/> <select name="onProperty"> <form:option name="onProperty"/> </select> </td> </tr> <jsp:include page="${specificRestrictionForm}"/>
(ns pay-it-forward.popup.db) (def default-db {:affiliates {} :selected-affiliate "" :active-panel :index})
#type vertex #version 330 layout (location=0) in vec2 pos; layout (location=1) in vec2 tex; uniform mat4 worldMatrix; uniform mat4 viewMatrix; uniform int plusShift; uniform int minusShift; out vec2 uv; void main() { uv = vec2(tex.x + (gl_VertexID > 3 ? plusShift : minusShift), tex.y); gl_Position = viewMatrix * (worldMatrix * vec4(pos.x, pos.y, 0.0, 1.0)); } #type fragment #version 330 in vec2 uv; uniform sampler2D uTexture; uniform int plusShift; out vec4 FragColor; void main(){ FragColor = texture(uTexture, vec2(uv.x / 4, uv.y / 2)); }
<?xml version="1.0" encoding="utf-8" ?> <dataset Transactions="1"><dataset_header DisableRI="yes" DatasetObj="1004928896.09" DateFormat="mdy" FullHeader="no" SCMManaged="yes" YearOffset="1950" DatasetCode="RYCSO" NumericFormat="AMERICAN" NumericDecimal="." OriginatingSite="91" NumericSeparator=","/> <dataset_records><dataset_transaction TransactionNo="1" TransactionType="DATA"><contained_record DB="icfdb" Table="ryc_smartobject" version_date="05/19/2003" version_time="54147" version_user="admin" deletion_flag="no" entity_mnemonic="rycso" key_field_value="124240.9875" record_version_obj="124241.9875" version_number_seq="3.9875" secondary_key_value="gsmffsuprp#CHR(1)#0" import_version_number_seq="3.9875"><smartobject_obj>124240.9875</smartobject_obj> <object_filename>gsmffsuprp</object_filename> <customization_result_obj>0</customization_result_obj> <object_type_obj>493</object_type_obj> <product_module_obj>1004874683.09</product_module_obj> <layout_obj>0</layout_obj> <object_description>Field Security Super Procedure</object_description> <object_path>af/obj2</object_path> <object_extension>p</object_extension> <static_object>yes</static_object> <generic_object>no</generic_object> <template_smartobject>no</template_smartobject> <system_owned>no</system_owned> <deployment_type>CLN</deployment_type> <design_only>no</design_only> <runnable_from_menu>no</runnable_from_menu> <container_object>no</container_object> <disabled>no</disabled> <run_persistent>no</run_persistent> <run_when>ANY</run_when> <shutdown_message_text></shutdown_message_text> <required_db_list></required_db_list> <sdo_smartobject_obj>0</sdo_smartobject_obj> <extends_smartobject_obj>0</extends_smartobject_obj> <security_smartobject_obj>124240.9875</security_smartobject_obj> <object_is_runnable>yes</object_is_runnable> </contained_record> </dataset_transaction> </dataset_records> </dataset>
#!/bin/bash ############################################ # Instructions # 1 - Be in root directory of the project: # ~/Development/ResearchAsst2019/AndroidPolicyAutomation/ExtractedJars # # 2 - Run with: ../Scripts/decompile.sh [Path/APK] # Example:>> ../Scripts/decompile.sh ../APKs/Ibotta_com.ibotta.android.apk ############################################ ############################################ # Part 0: Get APK Name # ############################################ # Parse the input filename to strip path and # extension function getfilename { apk=$1 filename=${apk##*/} filename=${filename%.apk} echo "filename name: $filename" # filename=$(echo $1 | sed -n "s/.apk//p") } # end function getfilename # Create a directory to store the output in, # based on the input APK name function outputdir { echo "Creating/Replacing directory: $filename" rm -rf "$filename" mkdir "$filename" } # end function outputdir ############################################ # Part 1:The APK # ############################################ # Decompile the .apk using dex2jar, and move # the output into the corresponding dir. function decompileapk { tail="-dex2jar.jar" err="-error.zip" echo "Decompiling $apk" ../Tools/dex2jar-2.0/d2j-dex2jar.sh $apk # Move the results to the designated directory echo "Attempting to move: ${filename}$tail" "${filename}/" if [ -f ${filename}$tail ] then mv "${filename}$tail" "${filename}/" fi echo "Attempting to move: ${filename}$err" "${filename}/" if [ -f ${filename}$err ] then mv "${filename}$err" "${filename}/" fi } # end function decompileapk # Manifest.xml is not available through dex2jar. Therefore use Apktool to get # the manifest and all other resources it can. Will strip down for efficiency # later. function getmanifest { echo "Running Apktool" apktool d -o "$filename" --no-res $apk } # end function getmanifest ########################################### # Part 2: The Jar # ########################################### # The jar must be decompiled. Unzip them # with standard unzip command and put the # resulting .class files in the # corresponding directory. function decompilejar { echo "Unzipping ${filename}/$filename$tail" echo "A" | unzip -qqj "$filename/*.jar" -d "$filename/classfiles" } # end function decompilejar # The class files need to be decompiled # into .java files for searching function decompileclass { echo "A" # In response to "replace filename/classfiles/a.class? [y]es, [n]o, [A]ll, [N]one, [r]ename:" echo "Decompiling the class files in $filename/classfiles, results in $filename/javafiles" # Decompile every class file into its original .java form for file in "${filename}/classfiles/"*[^$]*".class"; do echo "Applying jad to "$file # Check flags with >> jad --help jad -sjava -a -o -r -safe -t -d "$filename/javafiles/" $file # response to jad parsing asking to overwrite done } # end function decompileclass ########################################### # Part 3: Code Analysis # ########################################### # Call modules to analyze the code ########################################### # Finally: Put it all together # ########################################## getfilename $1 getmanifest # outputdir # remove this to test if `getmanifest` will do this in place decompileapk decompilejar decompileclass
--- title: "Dynamic role of soil and terrestrial ecosystems in the global C cycle" author: "Susan E. Crow" layout: post output: word_document tags: global warming level1: "1. global context" level2: "a. " level3: "i. global issues" --- <!-- Start Writing Below in Markdown --> # Global carbon cycle The global carbon cycle is a balance of fluxes between reservoirs. Currently there is an imbalance as a result of burning fossil fuels sending an enormous amount of CO<sub>2</sub> into the atmosphere. But, only about half of what is sent to the atmosphere accumulates there and the rest is taken into reservoirs, some into the ocean and a lot into terrestrial component – through vegetation and into soils. Any process that increases the net movement into stable soil pools is a benefit and any process that increases net movement into the atmosphere is a cost. There is a large range in both pools and fluxes indicating the uncertainty in our understanding of these processes and how to represent them accurately in earth systems models that generate these numbers. ![GCC](IPCC_2014_carbon cycle.jpg) [From Intergovernmental Panel on Climate Change (IPCC) 2013](http://www.ipcc.ch/report/ar5/wg1/) # Global maps of soil C stocks Soil organic carbon is distributed globally on land surfaces and total carbon stock is dependent on carbon concentration and depth of soil profile. Detecting change in carbon stock on a regional or site-level is challenging because we rarely sample all the way to bedrock, and land use, management, or vegetation can impact the bulk density of soil and therefore the carbon stock if measured on a volumetric basis only at the surface of the soil profile. One solution is to remove volume from the carbon stock equation and calculate carbon stock on an equivalent mass basis instead of volume basis. * References Carbon Stocks * (Köchy et al. 2015) [doi: 10.5194/soil-1-351-2015](http://www.soil-journal.net/1/351/2015/) * Equivalent Soil Mass method * (Davidson and Ackerman 1993) doi: 10.1007/BF00000786 * (Ellert and Bettany 1995) doi: 10.4141/cjss95-075 * (Gifford and Roderick 2003) doi: 10.1046/j.1365-2486.2003.00677.x * (Wendt and Hauser 2013) doi: 10.1111/ejss.12002 * (Crow et al. 2016) [doi: 10.1080/17583004.2016.1213140](https://www.researchgate.net/publication/306433614_Carbon_balance_implications_of_land_use_change_from_pasture_to_managed_eucalyptus_forest_in_Hawaii) # Soil horizons and soil carbon in profiles Soil carbon persists throughout the soil profile, typically in higher concentration at the surface and lower concentration in deeper horizons of mineral soils. Permafrost and peat soils, particularly abundant in high latitudes, may have homogenous, high organic carbon concentrations throughout very deep profiles. ![GCC](soil_carbon cross_section.jpg) [From EPA CLU-IN content on terrestrial carbon sequestration](https://clu-in.org/ecotools/seq.cfm) # Transport of organic C into and through soils Multiple soil processes act to transform and transport organic matter in soil resulting in additions and losses throughout the profile. ![Processes](FAO Year of Soils_soil processes.png) [From FOA International Year of Soils 2015](http://www.fao.org/global-soil-partnership/overview/why-the-partnership/en/) # Soil as an ecosystem * **Ecosystem:** A community of organisms interacting with their environment and functioning as a system linked together by nutrient and energy flows * High *biological diversity* is considered an indicator of high soil quality * *Species diversity* – number of species, distribution of numbers * *Functional diversity* –value and range of organismal traits that influence ecosystem functioning * Functional group – a set of species that have similar traits and thus are likely to have similar effects on ecosystem functioning * Functions of soil ecosystem? Nutrient cycling (specifically, biological N fixation, nitrification, denitrification, etc), decomposition, water relations, etc. From a human perspective, these are “ecosystem services”. * *Functional redundancy* – multiple organisms have same functionality, provides stability and resilience * *Stability* – the ability of soils to continue to perform functions of nutrient cycling, use of organic wastes, maintenance of soil structure * *Resilience* – ability to recover following severe disturbance ![Soil organisms](Soil organisms_lecture slides1.png) ![Soil organisms](Soil organisms_lecture slides2.png) ![Soil organisms](Soil organisms_lecture slides3.png) ![Soil organisms](Soil organisms_lecture slides4.png) ![Soil organisms](Soil organisms_lecture slides5.png) ![Soil organisms](Soil organisms_lecture slides6.png) ![Soil organisms](Soil organisms_lecture slides7.png) ![Soil organisms](Soil organisms_lecture slides8.png) From [NREM](https://www.ctahr.hawaii.edu/nrem/) 304 Fundamentals of Soil Science, University of Hawaii Manoa
/** * SPDX-License-Identifier: LicenseRef-Aktionariat * * MIT License with Automated License Fee Payments * * Copyright (c) 2020 Aktionariat AG (aktionariat.com) * * Permission is hereby granted to any person obtaining a copy of this software * and associated documentation files (the "Software"), to deal in the Software * without restriction, including without limitation the rights to use, copy, * modify, merge, publish, distribute, sublicense, and/or sell copies of the * Software, and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * - The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * - All automated license fee payments integrated into this and related Software * are preserved. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ pragma solidity >=0.7; import "./SafeMath.sol"; import "./IERC20.sol"; /** * @title Acquisition Attempt * @author Benjamin Rickenbacher, b.rickenbacher@intergga.ch * @author Luzius Meisser, luzius@meissereconomics.com * */ contract Acquisition { using SafeMath for uint256; uint256 public constant VOTING_PERIOD = 60 days; // 2months/60days uint256 public constant VALIDITY_PERIOD = 90 days; // 3months/90days uint256 public quorum; // Percentage of votes needed to start drag-along process address private parent; // the parent contract address payable public buyer; // the person who made the offer address public currency; uint256 public price; // the price offered per share uint256 public timestamp; // the timestamp of the block in which the acquisition was created uint256 public noVotes; // number of tokens voting for no uint256 public yesVotes; // number of tokens voting for yes enum Vote { NONE, YES, NO } // Used internally, represents not voted yet or yes/no vote. mapping (address => Vote) private votes; // Who votes what event VotesChanged(uint256 newYesVotes, uint256 newNoVotes); constructor (address payable buyer_, address currency_, uint256 price_, uint256 quorum_) { require(price_ > 0, "invalid price"); parent = msg.sender; buyer = buyer_; currency = currency_; price = price_; quorum = quorum_; timestamp = block.timestamp; } function isWellFunded(uint256 sharesToAcquire) public view returns (bool) { IERC20 cur = IERC20(currency); uint256 buyerBalance = cur.balanceOf(buyer); uint256 buyerAllowance = cur.allowance(buyer, parent); uint256 xchfNeeded = sharesToAcquire.mul(price); return xchfNeeded <= buyerBalance && xchfNeeded <= buyerAllowance; } function isQuorumReached() public view returns (bool) { if (isVotingOpen()) { // is it already clear that 75% will vote yes even though the vote is not over yet? return yesVotes.mul(10000).div(IERC20(parent).totalSupply()) >= quorum; } else { // did 75% of all cast votes say 'yes'? return yesVotes.mul(10000).div(yesVotes.add(noVotes)) >= quorum; } } function quorumHasFailed() public view returns (bool) { if (isVotingOpen()) { // is it already clear that 25% will vote no even though the vote is not over yet? return (IERC20(parent).totalSupply().sub(noVotes)).mul(10000).div(IERC20(parent).totalSupply()) < quorum; } else { // did 25% of all cast votes say 'no'? return yesVotes.mul(10000).div(yesVotes.add(noVotes)) < quorum; } } function adjustVotes(address from, address to, uint256 value) public parentOnly() { if (isVotingOpen()) { Vote fromVoting = votes[from]; Vote toVoting = votes[to]; update(fromVoting, toVoting, value); } } function update(Vote previousVote, Vote newVote, uint256 votes_) internal { if (previousVote != newVote) { if (previousVote == Vote.NO) { noVotes = noVotes.sub(votes_); } else if (previousVote == Vote.YES) { yesVotes = yesVotes.sub(votes_); } if (newVote == Vote.NO) { noVotes = noVotes.add(votes_); } else if (newVote == Vote.YES) { yesVotes = yesVotes.add(votes_); } emit VotesChanged(yesVotes, noVotes); } } function isVotingOpen() public view returns (bool) { uint256 age = block.timestamp.sub(timestamp); return age <= VOTING_PERIOD; } function hasExpired() public view returns (bool) { uint256 age = block.timestamp.sub(timestamp); return age > VALIDITY_PERIOD; } modifier votingOpen() { require(isVotingOpen(), "The vote has ended."); _; } function voteYes(address sender, uint256 votes_) public parentOnly() votingOpen() { vote(Vote.YES, votes_, sender); } function voteNo(address sender, uint256 votes_) public parentOnly() votingOpen() { vote(Vote.NO, votes_, sender); } function vote(Vote newVote, uint256 votes_, address voter) internal { Vote previousVote = votes[voter]; votes[voter] = newVote; update(previousVote, newVote, votes_); } function hasVotedYes(address voter) public view returns (bool) { return votes[voter] == Vote.YES; } function hasVotedNo(address voter) public view returns (bool) { return votes[voter] == Vote.NO; } function kill() public parentOnly() { selfdestruct(buyer); } modifier parentOnly () { require(msg.sender == parent, "not parent"); _; } }
%name LemonParseXML %include { #include "hyprdomInt.h" } %parse_accept { printf("LemonParseXML succeeded\n"); } %parse_failure { fprintf(stderr, "LemonParseXML failed\n"); } %start_symbol document %syntax_error { fprintf(stderr, "LemonParseXML syntax error\n"); } %token_prefix LTK_ %extra_argument { struct parse_context } document ::= prolog element misctail. misctail ::=. misctail ::= misctail misc. misc ::= Comment. misc ::= PI. misc ::= WS. prolog ::= misctail. prolog ::= XMLDecl misctail. //prolog ::= XMLDecl misctail doctypedecl misctail. element ::= EmptyElemTag. element ::= STag content ETag. content ::=. content ::= content CharData. content ::= content element. content ::= content Reference. content ::= content CDSect. content ::= content PI. content ::= content Comment. /* cp ::= Name cpsuffix. cp ::= choice cpsuffix. cp ::= seq cpsuffix. cpsuffix ::=. cpsuffix ::= Question. cpsuffix ::= Star. cpsuffix ::= Plus. choice ::= OpenParen optspace cp choiceopts optspace CloseParen. choiceopt ::= optspace Pipe optspace cp. choiceopts ::= choiceopt. choiceopts ::= choiceopts choiceopt. optspace ::=. optspace ::= WS. children ::= choice cpsuffix. children ::= seq cpsuffix. seq ::= OpenParen optspace cp seqopts optspace CloseParen. seqopt ::= optspace Comma optspace cp. seqopts ::=. seqopts ::= seqopt. seqopts ::= seqopts seqopt. contentspec ::= Empty. contentspec ::= Any. contentspec ::= Mixed. contentspec ::= children. elementdecl ::= StartElementDecl WS Name WS contentspec optspace Gt. markupdecl ::= elementdecl. markupdecl ::= AttlistDecl. markupdecl ::= EntityDecl. markupdecl ::= NotationDecl. markupdecl ::= PI. markupdecl ::= Comment. extSubsetDecl_elem ::= markupdecl. extSubsetDecl_elem ::= conditionalSect. extSubsetDecl_elem ::= DeclSep. extSubsetDecl ::=. extSubsetDecl ::= extSubsetDecl_elem. extSubsetDecl ::= extSubsetDecl extSubsetDecl_elem. intSubset_elem ::= markupdecl. intSubset_elem ::= DeclSep. intSubset ::=. intSubset ::= intSubset_elem. intSubset ::= intSubset intSubset_elem. conditionalSect ::= includeSect. conditionalSect ::= ignoreSect. includeSect ::= StartSect optspace INCLUDE optspace OpenBracket extSubsetDecl CloseSect. ignoreSect ::= StartSect optspace IGNORE optspace OpenBracket ignoreSectContents_list CloseSect. ignoreSectContents_list ::=. ignoreSectContents_list ::= ignoreSectContents. ignoreSectContents_list ::= ignoreSectContents_list ignoreSectContents. ignoreSectContents ::= Ignore ignore_tail. ignore_tail ::=. ignore_tail ::= StartSect ignoreSectContents CloseSect Ignore. ignore_tail ::= ignore_tail StartSect ignoreSectContents CloseSect Ignore. doctypedecl ::= StartDoctype WS Name opt_externalid optspace int_subset_part Gt. opt_externalid ::=. opt_externalid ::= WS ExternalID. int_subset_part ::=. int_subset_part ::= OpenBracket intSubset CloseBracket optspace. extSubset ::= extSubsetDecl. extSubset ::= TextDecl extSubsetDecl. extParsedEnt ::= content. extParsedEnt ::= TextDecl content. */ // vim: ft=lemon
name: parser-all version: 1.103 description: The whole stream parser author: Joe Leslie-Hurd <joe@gilith.com> license: MIT requires: base requires: parser-comb requires: parser-stream show: "Data.Bool" show: "Data.List" show: "Data.Option" show: "Data.Pair" show: "Number.Natural" show: "Parser" show: "Parser.Stream" def { package: parser-all-def-1.94 } thm { import: def package: parser-all-thm-1.105 } main { import: def import: thm }
<?php namespace App\Repository; use App\Entity\Lieu; use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; use Symfony\Bridge\Doctrine\RegistryInterface; /** * @method Lieu|null find($id, $lockMode = null, $lockVersion = null) * @method Lieu|null findOneBy(array $criteria, array $orderBy = null) * @method Lieu[] findAll() * @method Lieu[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) */ class LieuRepository extends ServiceEntityRepository { public function __construct(RegistryInterface $registry) { parent::__construct($registry, Lieu::class); } // /** // * @return Lieu[] Returns an array of Lieu objects // */ /* public function findByExampleField($value) { return $this->createQueryBuilder('p') ->andWhere('p.exampleField = :val') ->setParameter('val', $value) ->orderBy('p.id', 'ASC') ->setMaxResults(10) ->getQuery() ->getResult() ; } */ /* public function findOneBySomeField($value): ?Lieu { return $this->createQueryBuilder('p') ->andWhere('p.exampleField = :val') ->setParameter('val', $value) ->getQuery() ->getOneOrNullResult() ; } */ }
# Generated by default/object.tt package Paws::CloudFront::FunctionAssociation; use Moose; has EventType => (is => 'ro', isa => 'Str', required => 1); has FunctionARN => (is => 'ro', isa => 'Str', required => 1); 1; ### main pod documentation begin ### =head1 NAME Paws::CloudFront::FunctionAssociation =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::CloudFront::FunctionAssociation object: $service_obj->Method(Att1 => { EventType => $value, ..., FunctionARN => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::CloudFront::FunctionAssociation object: $result = $service_obj->Method(...); $result->Att1->EventType =head1 DESCRIPTION A CloudFront function that is associated with a cache behavior in a CloudFront distribution. =head1 ATTRIBUTES =head2 B<REQUIRED> EventType => Str The event type of the function, either C<viewer-request> or C<viewer-response>. You cannot use origin-facing event types (C<origin-request> and C<origin-response>) with a CloudFront function. =head2 B<REQUIRED> FunctionARN => Str The Amazon Resource Name (ARN) of the function. =head1 SEE ALSO This class forms part of L<Paws>, describing an object used in L<Paws::CloudFront> =head1 BUGS and CONTRIBUTIONS The source code is located here: L<https://github.com/pplu/aws-sdk-perl> Please report bugs to: L<https://github.com/pplu/aws-sdk-perl/issues> =cut
#= # 5: Flow around cylinder ```@raw html <img src='../assets/cylinder.png' width="50%" height="50%" alt='missing' /><br> ``` ```@raw html A simulation of flow around cylinder. All parameters of this benchmark can be found <a href="http://www.mathematik.tu-dortmund.de/~featflow/en/benchmarks/cfdbenchmarking/flow/dfg_benchmark1_re20.html">here.</a> ``` =# module cylinder using Printf using SmoothedParticles const folder_name = "results/cylinder" #= Declare constants =# #geometry parameters const dr = 3.9e-3 #average particle distance (decrease to make finer simulation) const h = 2.5*dr #size of kernel support const chan_l = 0.8 #2.2 #length of the channel const chan_w = 0.41 #width of the channel const cyl1 = dr*round(0.2/dr) #x coordinate of the cylinder const cyl2 = dr*round(0.2/dr) #y coordinate of the cylinder const cyl_r = 0.05 #radius of the cylinder const wall_w = 2.5*dr #width of the wall const inflow_l = 3.0*dr #width of inflow layer #physical parameters const U_max = 1.0 #maximum inflow velocity const rho0 = 1.0 #referential fluid density const m = rho0*dr^2 #particle mass const c = 40.0*U_max #numerical speed of sound const mu = 1.0e-3 #dynamic viscosity of water const nu = 1.0e-3 #pressure stabilization const P0 = 1.2 #anti-clump term #temporal parameters const dt = 0.2*h/c #time step const dt_frame = 0.02 #how often data is saved const t_end = 5.0 #end of simulation const t_acc = 0.5 #time to accelerate to full speed #particle types const FLUID = 0. const WALL = 1. const INFLOW = 2. const OBSTACLE = 3. #= Declare variables to be stored in a Particle =# mutable struct Particle <: AbstractParticle x::RealVector #position v::RealVector #velocity a::RealVector #acceleration rho::Float64 #density Drho::Float64 #rate of density P::Float64 #pressure type::Float64 #particle type Particle(x,type) = begin return new(x, VEC0, VEC0, rho0, 0., 0., type) end end function make_system() domain = Rectangle(-inflow_l, -10*wall_w, chan_l, chan_w + 10*wall_w) sys = ParticleSystem(Particle, domain, h) grid = Grid(dr, :square) #define geometry obstacle = Circle(cyl1, cyl2, cyl_r) pipe = Rectangle(-inflow_l, 0., chan_l, chan_w) wall = BoundaryLayer(pipe, grid, wall_w) wall = Specification(wall, x -> (-inflow_l <= x[1] <= chan_l)) inflow = Specification(pipe - obstacle, x -> x[1] < 0.0) fluid = Specification(pipe - obstacle, x -> x[1] >= 0.0) #generate particles generate_particles!(sys, grid, fluid, x -> Particle(x, FLUID)) generate_particles!(sys, grid, inflow, x -> Particle(x, INFLOW)) generate_particles!(sys, grid, wall, x -> Particle(x, WALL)) generate_particles!(sys, grid, obstacle, x -> Particle(x, OBSTACLE)) return sys end #Inflow function function set_inflow_speed!(p::Particle, t::Float64) if p.type == INFLOW s = min(1.0, t/t_acc) v1 = 4.0*s*U_max*p.x[2]*(chan_w - p.x[2])/chan_w^2 p.v = v1*VECX end end #Define interactions between particles @inbounds function balance_of_mass!(p::Particle, q::Particle, r::Float64) ker = m*rDwendland2(h,r) p.Drho += ker*(dot(p.x-q.x, p.v-q.v) + 2*nu*(p.rho-q.rho)) end function find_pressure!(p::Particle) p.rho += p.Drho*dt p.Drho = 0.0 p.P = rho0*c^2*((p.rho/rho0)^7 - 1.0)/7 end @inbounds function internal_force!(p::Particle, q::Particle, r::Float64) ker = m*rDwendland2(h,r) p.a += -ker*(p.P/rho0^2 + q.P/rho0^2)*(p.x - q.x) p.a += +2*ker*mu/rho0^2*(p.v - q.v) ker = m*rDwendland2(h/2,r) p.a += -2*ker*P0/rho0^2*(p.x - q.x) end function move!(p::Particle) p.a = VEC0 if p.type == FLUID || p.type == INFLOW p.x += dt*p.v end end function accelerate!(p::Particle) if p.type == FLUID p.v += 0.5*dt*p.a end end function add_new_particles!(sys::ParticleSystem) new_particles = Particle[] for p in sys.particles if p.type == INFLOW && p.x[1] >= 0 p.type = FLUID x = p.x - inflow_l*VECX push!(new_particles, Particle(x, INFLOW)) end end append!(sys.particles, new_particles) end function calculate_force(sys::ParticleSystem)::RealVector F = VEC0 for p in sys.particles if p.type == OBSTACLE F += m*p.a end end C = 2.0*F/((2.0*U_max/3.0)^2*(2.0*cyl_r)) return C end function main() sys = make_system() out = new_pvd_file(folder_name) C_D = Float64[] C_L = Float64[] #a modified Verlet scheme for k = 0 : Int64(round(t_end/dt)) t = k*dt apply!(sys, move!) add_new_particles!(sys) for p in sys.particles set_inflow_speed!(p,t) end create_cell_list!(sys) apply!(sys, balance_of_mass!) apply!(sys, find_pressure!) apply!(sys, internal_force!) apply!(sys, accelerate!) #save data at selected frames if (k % Int64(round(dt_frame/dt)) == 0) @show t C = calculate_force(sys) push!(C_D, C[1]) push!(C_L, C[2]) save_frame!(out, sys, :v, :P, :type) end apply!(sys, accelerate!) end save_pvd_file(out) println() C_SPH = RealVector(sum(C_D[end-9:end]/10), sum(C_L[end-9:end]/10), 0.) C_exact = RealVector(5.57953523384, 0.010618948146, 0.) relative_error = norm(C_SPH - C_exact)/norm(C_exact) @show C_SPH @show C_exact println("relative error = ",100*relative_error,"%") end end
defmodule LaFamiglia.Mechanics do @moduledoc """ All resource gains are specified in resource/hour. """ def resource_gains(villa) do %{ resource_1: 30 + :math.pow(villa.building_3, 2.5), resource_2: 30 + :math.pow(villa.building_4, 2.5), resource_3: 30 + :math.pow(villa.building_5, 2.5) } end def storage_capacity(villa) do (100 + 200 * villa.building_2 + :math.pow(villa.building_2, 2.1)) |> round end def max_supply(villa) do (100 + 100 * villa.building_2 + :math.pow(villa.building_2, 1.4)) |> round end def unit_for_occupation, do: :unit_2 end
;;; seq-autoloads.el --- automatically extracted autoloads ;; ;;; Code: (add-to-list 'load-path (or (file-name-directory #$) (car load-path))) ;;;### (autoloads nil nil ("seq-24.el" "seq-25.el" "seq-pkg.el" "seq.el") ;;;;;; (22524 22322 349040 46000)) ;;;*** ;; Local Variables: ;; version-control: never ;; no-byte-compile: t ;; no-update-autoloads: t ;; End: ;;; seq-autoloads.el ends here
cadnano\.views\.outlinerview\.nucleicacidpartitem module ======================================================== .. automodule:: cadnano.views.outlinerview.nucleicacidpartitem :members: :undoc-members: :show-inheritance:
<?php /** * (c) shopware AG <info@shopware.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace SwagImportExport\Tests\Unit\Setup\DefaultProfiles; use PHPUnit\Framework\TestCase; use Shopware\Setup\SwagImportExport\DefaultProfiles\OrderMainDataProfile; use Shopware\Setup\SwagImportExport\DefaultProfiles\ProfileMetaData; class OrderMainDataProfileTest extends TestCase { use DefaultProfileTestCaseTrait; public function test_it_can_be_created() { $orderMainDataProfile = new OrderMainDataProfile(); static::assertInstanceOf(OrderMainDataProfile::class, $orderMainDataProfile); static::assertInstanceOf(ProfileMetaData::class, $orderMainDataProfile); static::assertInstanceOf(\JsonSerializable::class, $orderMainDataProfile); } public function test_it_should_return_valid_profile() { $orderMainDataProfile = new OrderMainDataProfile(); $this->walkRecursive($orderMainDataProfile->jsonSerialize(), function ($node) { $this->assertArrayHasKey('id', $node, 'Current array: ' . print_r($node, true)); $this->assertArrayHasKey('type', $node, 'Current array: ' . print_r($node, true)); $this->assertArrayHasKey('name', $node, 'Current array: ' . print_r($node, true)); }); } }
----------------------------------- -- Area: Selbina -- NPC: Yulon-Polon -- Type: Title Change NPC -- !pos 45.998 -16.273 15.739 248 ----------------------------------- require("scripts/globals/titles") ----------------------------------- local eventId = 10001 local titleInfo = { { cost = 200, title = { tpz.title.CORDON_BLEU_FISHER, tpz.title.ECOLOGIST, tpz.title.LIL_CUPID, tpz.title.ACE_ANGLER, tpz.title.GOLD_HOOK, tpz.title.MYTHRIL_HOOK, tpz.title.SILVER_HOOK, tpz.title.COPPER_HOOK, }, }, { cost = 300, title = { tpz.title.SAVIOR_OF_LOVE, tpz.title.HONORARY_CITIZEN_OF_SELBINA, tpz.title.THE_LOVE_DOCTOR, tpz.title.LU_SHANGLIKE_FISHER_KING, tpz.title.ORCISH_SERJEANT, tpz.title.BRONZE_QUADAV, tpz.title.YAGUDO_INITIATE, tpz.title.MOBLIN_KINSMAN, tpz.title.TEAM_PLAYER, tpz.title.DYNAMIS_VALKURM_INTERLOPER, tpz.title.DISTURBER_OF_SLUMBER, tpz.title.INTERRUPTER_OF_DREAMS, }, }, { cost = 400, title = { tpz.title.FODDERCHIEF_FLAYER, tpz.title.WARCHIEF_WRECKER, tpz.title.DREAD_DRAGON_SLAYER, tpz.title.OVERLORD_EXECUTIONER, tpz.title.DARK_DRAGON_SLAYER, tpz.title.ADAMANTKING_KILLER, tpz.title.BLACK_DRAGON_SLAYER, tpz.title.MANIFEST_MAULER, tpz.title.BEHEMOTHS_BANE, tpz.title.ARCHMAGE_ASSASSIN, tpz.title.HELLSBANE, tpz.title.GIANT_KILLER, tpz.title.LICH_BANISHER, tpz.title.JELLYBANE, tpz.title.BOGEYDOWNER, tpz.title.BEAKBENDER, tpz.title.SKULLCRUSHER, tpz.title.MORBOLBANE, tpz.title.GOLIATH_KILLER, tpz.title.MARYS_GUIDE, }, }, { cost = 500, title = { tpz.title.SIMURGH_POACHER, tpz.title.ROC_STAR, tpz.title.SERKET_BREAKER, tpz.title.CASSIENOVA, tpz.title.THE_HORNSPLITTER, tpz.title.TORTOISE_TORTURER, tpz.title.MON_CHERRY, tpz.title.BEHEMOTH_DETHRONER, tpz.title.THE_VIVISECTOR, tpz.title.DRAGON_ASHER, tpz.title.EXPEDITIONARY_TROOPER, }, }, { cost = 600, title = { tpz.title.ADAMANTKING_USURPER, tpz.title.OVERLORD_OVERTHROWER, tpz.title.DEITY_DEBUNKER, tpz.title.FAFNIR_SLAYER, tpz.title.ASPIDOCHELONE_SINKER, tpz.title.NIDHOGG_SLAYER, tpz.title.MAAT_MASHER, tpz.title.KIRIN_CAPTIVATOR, tpz.title.CACTROT_DESACELERADOR, tpz.title.LIFTER_OF_SHADOWS, tpz.title.TIAMAT_TROUNCER, tpz.title.VRTRA_VANQUISHER, tpz.title.WORLD_SERPENT_SLAYER, tpz.title.XOLOTL_XTRAPOLATOR, tpz.title.BOROKA_BELEAGUERER, tpz.title.OURYU_OVERWHELMER, tpz.title.VINEGAR_EVAPORATOR, tpz.title.VIRTUOUS_SAINT, tpz.title.BYEBYE_TAISAI, tpz.title.TEMENOS_LIBERATOR, tpz.title.APOLLYON_RAVAGER, tpz.title.WYRM_ASTONISHER, tpz.title.NIGHTMARE_AWAKENER, }, }, } function onTrade(player,npc,trade) end function onTrigger(player,npc) tpz.title.changerOnTrigger(player, eventId, titleInfo) end function onEventUpdate(player,csid,option) end function onEventFinish(player,csid,option) tpz.title.changerOnEventFinish(player, csid, option, eventId, titleInfo) end