blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
410
content_id
stringlengths
40
40
detected_licenses
sequencelengths
0
51
license_type
stringclasses
2 values
repo_name
stringlengths
5
132
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
80
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
131 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
9.45M
extension
stringclasses
32 values
content
stringlengths
3
9.45M
authors
sequencelengths
1
1
author_id
stringlengths
0
313
ea4c3484d22293e48283154035e1be10ec5f9a22
1145274b99f60bbdb836202fbf92d74d3fb1db4f
/gradle-demo-todo/src/main/java/com/futurecode/gradle_demo_todo/TodoItem.java
459b8f61e90f19a68b29f93303463764f66bd920
[]
no_license
yromeMfOtuO/SpringBootDemo
da906b894500040e44e9f67b190b7d4ee5f9f44d
f629397494f255c31c84ded35fdfca171a267a70
refs/heads/master
2021-03-16T05:55:27.599827
2018-12-02T16:24:43
2018-12-02T16:24:43
115,523,993
0
0
null
null
null
null
UTF-8
Java
false
false
978
java
package com.futurecode.gradle_demo_todo; /** * @author :[email protected] * @description: * @date :create in 23:19 18.5.3 * @modify by : */ public class TodoItem { /** * 待办事项名称 */ private String todoName; /** * 是否完成的标志 */ private Boolean hasDone; public TodoItem(String todoName, Boolean hasDone) { this.todoName = todoName; this.hasDone = hasDone; } public TodoItem() { } public String getTodoName() { return todoName; } public void setTodoName(String todoName) { this.todoName = todoName; } public Boolean getHasDone() { return hasDone; } public void setHasDone(Boolean hasDone) { this.hasDone = hasDone; } @Override public String toString() { return "TodoItem{" + "todoName='" + todoName + '\'' + ", hasDone=" + hasDone + '}'; } }
d63a3636c14e00dde27c5948ac8fe16c6b84a360
466922848a19234b05a61c7fce5745bd1b20da6c
/GOSUIC/src/gosuic/dao/user/UserDao.java
1a4b56be6fbe43abad14e53eb17f3f8f383a23ec
[]
no_license
Taewan93/GOSUIC_final
55b6b9c679467962148a0be5f20ed22ea149ac2a
eae44d204a8dbff793b5c11ed654ff4e34755e80
refs/heads/master
2021-01-24T03:29:55.848031
2018-02-26T08:19:10
2018-02-26T08:19:10
122,891,517
0
0
null
null
null
null
UHC
Java
false
false
1,704
java
package gosuic.dao.user; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.dao.EmptyResultDataAccessException; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.stereotype.Repository; import gosuic.vo.UserVo; @Repository public class UserDao { @Autowired JdbcTemplate jdbcTemplate; public JdbcTemplate getJdbcTemplate() { return jdbcTemplate; } //회원가입 public boolean insertUser(UserVo user) { int n = getJdbcTemplate().update("insert into userinfo values(?,?,?,?,?,?)" , new Object[] {user.getUserEmail(),user.getUserID(),user.getPassword1(),user.getUserName(),user.getUserBirthday(),user.getUserGender()}); return (n>0) ? true : false; } //로그인 public boolean login(UserVo vo) { System.out.println("록인dao들어옴"); System.out.println("다오의 " + vo.getUserEmail()); try { String str= getJdbcTemplate().queryForObject("select useremail from userinfo where useremail=? and userpassword=?", new Object[] {vo.getUserEmail(),vo.getPassword1()}, String.class); System.out.println("str을 찍어보자" +str); }catch(EmptyResultDataAccessException e) { System.out.println("결과없음"); return false; } return true; } // 아이디중복 체크 public int checkId(String userEmail) { try { System.out.println("아이디 중복체크 다오 : " + userEmail ); String check = getJdbcTemplate().queryForObject("select userID from userinfo where useremail=?", new Object[] {userEmail},String.class); System.out.println( "======== "+check); }catch(EmptyResultDataAccessException e) { e.printStackTrace(); return 0; } return 1; } }
210ce432db3989508bc780ef78af931a8b180f42
73fbb958958e2cc62a3935cd06bc96e7024b7d9d
/app/src/main/java/com/example/hp/thesiswork/PredictionActivity.java
c2f34dfcbb716a3c8fdc9c926b9d24882cfb9706
[]
no_license
BayMakarov/MyMovieApp
b22ab096df6723b2bde5e5e9c987629a58986463
6b3f6103934a03261270ceead8caba5adb1185b7
refs/heads/master
2021-05-09T03:18:13.117261
2018-02-06T13:35:33
2018-02-06T13:35:33
119,237,803
0
0
null
null
null
null
UTF-8
Java
false
false
8,713
java
package com.example.hp.thesiswork; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; import android.util.Log; import android.view.View; import android.widget.ArrayAdapter; import android.widget.EditText; import android.widget.Spinner; import android.widget.TextView; import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.nio.charset.Charset; import java.util.ArrayList; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.content.Intent; import android.view.View; import android.widget.ArrayAdapter; import android.widget.EditText; import android.widget.Spinner; import android.widget.TextView; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import android.support.v7.widget.Toolbar; import android.view.Window; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.ArrayList; import java.util.HashMap; import java.util.Vector; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.DatabaseErrorHandler; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; import static java.lang.Double.NaN; public class PredictionActivity extends AppCompatActivity { //Creating Initial objects TextView Actor1; TextView Actor2; TextView Director; TextView runTime; Spinner spinnerGenre; //Creating Arraylist for spinners ArrayList<String> listGenre = new ArrayList<String>() {{ add("Action"); add("Adventure"); add("Animation"); add("Biography"); add("Comedy"); add("Crime"); add("Documentary"); add("Drama"); add("Family"); add("Fantasy"); add("Film-Noir"); add("History"); add("Horror"); add("Music"); add("Mystery"); add("Romance"); add("Sci-Fi"); add("Sport"); add("Thriller"); add("War"); add("Western"); }}; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_prediction2); readMovieData(); Actor1 = (EditText) findViewById(R.id.txtName); Actor2 = (EditText) findViewById(R.id.txtName2); Director = (EditText) findViewById(R.id.txtNameDirector); runTime = (EditText) findViewById(R.id.txtNameruntime); spinnerGenre = (Spinner) findViewById(R.id.spinnerGenre); ArrayAdapter<String> dataAdapter3 = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item, listGenre); dataAdapter3.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); spinnerGenre.setAdapter(dataAdapter3); } //this is Arraylist to hold datas of movie_metadata.csv private List<Movies> MovieList = new ArrayList<Movies>(); //This method is used to read datas from movie_metadata.csv and write to Arraylist private void readMovieData() { InputStream is = getResources().openRawResource(R.raw.movie_metadata); BufferedReader reader = new BufferedReader( new InputStreamReader(is, Charset.forName("UTF-8")) ); String line = ""; try { reader.readLine(); while ((line = reader.readLine()) != null) { String[] tokens = line.split(","); Movies movies = new Movies(); movies.setDirectorName(tokens[0]); if (tokens[1].length() > 0) { movies.setDuration(Integer.parseInt(tokens[1])); } movies.setActor2(tokens[2]); movies.setGenre(tokens[3]); movies.setActor1(tokens[4]); movies.setMovieTitle(tokens[5]); movies.setActor3(tokens[6]); movies.setImdbLink(tokens[7]); movies.setLanguage(tokens[8]); movies.setCountry(tokens[9]); if (tokens[10].length() > 0) { movies.setYear(Integer.parseInt(tokens[10])); } movies.setGrade(Double.parseDouble(tokens[11])); MovieList.add(movies); } } catch (IOException e) { Log.wtf("My Activity", "Error handling on file on line " + line, e); e.printStackTrace(); } } //This is button to make grade prediction protected void Prediction1(View e) { TextView IMDB = (TextView) findViewById(R.id.imdbGrade); //if (Actor1.getText().toString().isEmpty() || Actor2.getText().toString().isEmpty() || // Director.getText().toString().isEmpty()) { // Log.d("noluyore", Actor1.getText().toString() +" "+ Actor2.getText().toString()+ " " + // Director.getText().toString() + " " + runTime.getText().toString()); // IMDB.setText("You gave wrong inputs");} //else{ double s = predictorForActor1(); double f = predictorForActor2(); double x = predictorForDirector(); double r = predictionForGenre(); if (runTime.getText().toString().matches("")) { double result = ((s*1.1) + (f*1.1) + (x*1.3) + (r*0.5)) / 4; result = Math.floor(result * 10) / 10; IMDB.setText(Double.toString(result)); } else { double v = predictorForRunTime(); double result = ((s*1.4) + (f*1.4) + (x*1.6) + (v*0.5) + (r*0.5)) / 5; result = Math.floor(result * 10) / 10; IMDB.setText(Double.toString(result)); } } /*These are some methods; They ared used to read data according to user input **They calculates and average grade for each input */ private double predictionForGenre() { double a = 0; double b = 0; for (int i = 0; i < MovieList.size(); i++) { String[] parts = MovieList.get(i).getGenre().split("\\|"); List<String> itemList = Arrays.asList(parts); //Log.d("neoldu", itemList.toString() + " " +spinnerGenre.getSelectedItem().toString() // + " " + a + " " + b ); if ((itemList.contains(spinnerGenre.getSelectedItem().toString()))) { a = a + MovieList.get(i).getGrade(); b++; } } return a / b; } private double predictorForRunTime() { double a = 0; double b = 0; double[] runtimes = new double[MovieList.size()]; double[] grades = new double[MovieList.size()]; for (int i = 0; i < MovieList.size(); i++) { runtimes[i] = MovieList.get(i).getDuration(); grades[i] = MovieList.get(i).getGrade(); } LinearRegression lin = new LinearRegression(runtimes, grades); double s = Double.parseDouble(runTime.getText().toString()); return lin.predict(s); } private double predictorForDirector() { double a = 0; double b = 0; for (int i = 0; i < MovieList.size(); i++) { if (Director.getText().toString().equalsIgnoreCase(MovieList.get(i).getDirectorName())) { a = a + MovieList.get(i).getGrade(); b++; } } return a / b; } private double predictorForActor2() { double a = 0; double b = 0; for (int i = 0; i < MovieList.size(); i++) { if (Actor2.getText().toString().equalsIgnoreCase(MovieList.get(i).getActor1()) || Actor2.getText().toString().equalsIgnoreCase(MovieList.get(i).getActor2()) || Actor2.getText().toString().equalsIgnoreCase(MovieList.get(i).getActor3())) { a = a + MovieList.get(i).getGrade(); b++; } } return a / b; } private double predictorForActor1() { double a = 0; double b = 0; for (int i = 0; i < MovieList.size(); i++) { if (Actor1.getText().toString().equalsIgnoreCase(MovieList.get(i).getActor1()) || Actor1.getText().toString().equalsIgnoreCase(MovieList.get(i).getActor2()) || Actor1.getText().toString().equalsIgnoreCase(MovieList.get(i).getActor3())) { a = a + MovieList.get(i).getGrade(); b++; } } return a / b; } }
1d9a2e3fe0df4aa2c6706a4ce1c2105da5d3174d
4e1c86f91f38bc039b2d6fd605327824dd08c26d
/cz.mzk.recordmanager.server/src/test/java/cz/mzk/recordmanager/server/oai/dao/DedupRecordDAOTest.java
d231b2ed8d8005ea098f8a7b198d9ffc747818da
[]
no_license
paulusova/RecordManager2
78df7dfe35ca119162212664fe392fcc84559610
827edbdd34565c739461770070a42426ff0dd5a8
refs/heads/master
2021-01-21T02:21:45.085793
2015-11-04T08:51:42
2015-11-04T08:51:42
45,531,874
0
0
null
2015-11-04T10:32:14
2015-11-04T10:32:14
null
UTF-8
Java
false
false
470
java
package cz.mzk.recordmanager.server.oai.dao; import org.springframework.beans.factory.annotation.Autowired; import org.testng.annotations.Test; import cz.mzk.recordmanager.server.AbstractTest; import cz.mzk.recordmanager.server.model.DedupRecord; public class DedupRecordDAOTest extends AbstractTest { @Autowired private DedupRecordDAO dedupRecordDao; @Test public void test() { DedupRecord record = new DedupRecord(); dedupRecordDao.persist(record); } }
e5ec72d6be5f3cb1f10025e8c93e21e8f839c975
c80d04bb25dd52a772a49b856b1224fb559cfc3e
/src/main/java/com/darksci/pardot/api/parser/visitor/VisitorQueryResponseParser.java
5667c46e2dd9a2cc688e0fa633ce137ffdfe0a94
[ "MIT" ]
permissive
Crim/pardot-java-client
dca416acdd2618235d7217ab63f242a24a0826a5
7356eb7d7b29f0c93d0b597711ccb8c2a412d892
refs/heads/master
2023-04-06T18:37:41.896406
2022-03-23T10:11:46
2022-03-23T10:11:46
99,991,340
90
19
MIT
2023-03-31T14:55:47
2017-08-11T04:24:37
Java
UTF-8
Java
false
false
1,810
java
/** * Copyright 2017, 2018, 2019, 2020 Stephen Powis https://github.com/Crim/pardot-java-client * * 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. */ package com.darksci.pardot.api.parser.visitor; import com.darksci.pardot.api.parser.JacksonFactory; import com.darksci.pardot.api.parser.ResponseParser; import com.darksci.pardot.api.response.visitor.VisitorQueryResponse; import java.io.IOException; /** * Handles parsing Visitor Query API responses into POJOs. */ public class VisitorQueryResponseParser implements ResponseParser<VisitorQueryResponse.Result> { @Override public VisitorQueryResponse.Result parseResponse(final String responseStr) throws IOException { return JacksonFactory.newInstance().readValue(responseStr, VisitorQueryResponse.class).getResult(); } }
efcb2c088d63a79d5be395a47790784b2dc63853
7bb07f40c5a62e300ae4e83bf789e5aa1f1b70f7
/core/tags/1.5.1/1.3.1/src/com/vividsolutions/jump/workbench/ui/plugin/analysis/SpatialJoinPlugIn.java
d097a22ecd268f313069d1f89d7b924ea69f93a2
[]
no_license
abcijkxyz/jump-pilot
a193ebf9cfb3f082a467c0cfbe0858d4e249d420
3b6989a88e5c8e00cd55c3148f00a7bf747574c7
refs/heads/master
2022-12-18T15:22:44.594948
2020-09-23T10:46:11
2020-09-23T10:46:11
297,995,218
0
0
null
2020-09-23T15:27:25
2020-09-23T14:23:54
null
UTF-8
Java
false
false
7,808
java
/* * The Unified Mapping Platform (JUMP) is an extensible, interactive GUI * for visualizing and manipulating spatial features with geometry and attributes. * * Copyright (C) 2003 Vivid Solutions * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * For more information, contact: * * Vivid Solutions * Suite #1A * 2328 Government Street * Victoria BC V8T 5G5 * Canada * * (250)385-6040 * www.vividsolutions.com */ package com.vividsolutions.jump.workbench.ui.plugin.analysis; import java.util.*; import java.awt.event.*; import javax.swing.*; import com.vividsolutions.jump.I18N; import com.vividsolutions.jump.feature.*; import com.vividsolutions.jump.task.*; import com.vividsolutions.jump.workbench.WorkbenchContext; import com.vividsolutions.jump.workbench.model.*; import com.vividsolutions.jump.workbench.plugin.*; import com.vividsolutions.jump.workbench.plugin.util.*; import com.vividsolutions.jump.workbench.ui.*; import com.vividsolutions.jump.workbench.ui.plugin.FeatureInstaller; /** * Queries a layer by a spatial predicate. */ public class SpatialJoinPlugIn extends AbstractPlugIn implements ThreadedPlugIn { private Layer srcLayerA; private Layer srcLayerB; private JTextField paramField; private Collection functionNames; private MultiInputDialog dialog; private String funcNameToRun; private GeometryPredicate functionToRun = null; private boolean exceptionThrown = false; private double[] params = new double[2]; public SpatialJoinPlugIn() { functionNames = GeometryPredicate.getNames(); } private String categoryName = StandardCategoryNames.RESULT; public String getName(){ //-- exchanged plugin with SIGLE plugin //return I18N.get("ui.plugin.analysis.SpatialJoinPlugIn.Spatial-Join"); return I18N.get("org.openjump.sigle.plugin.SpatialJoinPlugIn.Transfer-Attributes"); } public void setCategoryName(String value) { categoryName = value; } public void initialize(PlugInContext context) throws Exception { FeatureInstaller featureInstaller = new FeatureInstaller(context.getWorkbenchContext()); featureInstaller.addMainMenuItem( this, //exe new String[] {MenuNames.TOOLS, MenuNames.TOOLS_EDIT_ATTRIBUTES}, //menu path this.getName() + "...", //name methode .getName recieved by AbstractPlugIn false, //checkbox null, //icon createEnableCheck(context.getWorkbenchContext())); //enable check } public static MultiEnableCheck createEnableCheck(WorkbenchContext workbenchContext) { EnableCheckFactory checkFactory = new EnableCheckFactory(workbenchContext); return new MultiEnableCheck() .add(checkFactory.createWindowWithLayerNamePanelMustBeActiveCheck()) .add(checkFactory.createAtLeastNLayersMustExistCheck(2)); } public boolean execute(PlugInContext context) throws Exception { dialog = new MultiInputDialog(context.getWorkbenchFrame(), getName(), true); setDialogValues(dialog, context); GUIUtil.centreOnWindow(dialog); dialog.setVisible(true); if (! dialog.wasOKPressed()) { return false; } getDialogValues(dialog); return true; } public void run(TaskMonitor monitor, PlugInContext context) throws Exception { monitor.allowCancellationRequests(); // input-proofing if (functionToRun == null) return; if (srcLayerA == null) return; if (srcLayerB == null) return; monitor.report(I18N.get("ui.plugin.analysis.SpatialJoinPlugIn.Executing-join")+ " " + functionToRun.getName() + "..."); FeatureCollection srcAFC = srcLayerA.getFeatureCollectionWrapper(); FeatureCollection srcBFC = srcLayerB.getFeatureCollectionWrapper(); //-- [sstein 28.Mar.2008] reversed order of input (to be able to read from top to down the spatial relations) SpatialJoinExecuter executer = new SpatialJoinExecuter(srcBFC, srcAFC); FeatureCollection resultFC = executer.getResultFC(); executer.execute(monitor, functionToRun, params, resultFC); if (monitor.isCancelRequested()) return; String outputLayerName = I18N.get("ui.plugin.analysis.SpatialJoinPlugIn.Join")+ "-" + funcNameToRun; context.getLayerManager().addCategory(categoryName); context.addLayer(categoryName, outputLayerName, resultFC); if (exceptionThrown) { context.getWorkbenchFrame().warnUser("Errors found while executing query"); } } private final static String LAYER_A = GenericNames.LAYER_A + " (" + GenericNames.TARGET_LAYER + ")"; private final static String LAYER_B = GenericNames.LAYER_B + " (" + GenericNames.SOURCE_LAYER + ")"; private final static String PREDICATE = GenericNames.RELATION; private final static String PARAM = GenericNames.PARAMETER; private void setDialogValues(MultiInputDialog dialog, PlugInContext context) { //dialog.setSideBarImage(new ImageIcon(getClass().getResource("DiffSegments.png"))); //-- [sstein 31March2008] replaced sidebar description by better description use in SIGLE plugin /* dialog.setSideBarDescription( I18N.get("ui.plugin.analysis.SpatialJoinPlugIn.Joins-two-layers-on-a-given-spatial-relationship") + " (" + I18N.get("ui.plugin.analysis.SpatialJoinPlugIn.example") +")"); */ dialog.setSideBarDescription(I18N.get("org.openjump.sigle.plugin.SpatialJoinPlugIn.Transfers-the-attributes-of-Layer-B-to-Layer-A-using-a-spatial-criterion")); //Set initial layer values to the first and second layers in the layer list. //In #initialize we've already checked that the number of layers >= 1. [Jon Aquino] Layer initLayer1 = (srcLayerA == null)? context.getCandidateLayer(0) : srcLayerA; Layer initLayer2 = (srcLayerB == null)? context.getCandidateLayer(1) : srcLayerB; dialog.addLayerComboBox(LAYER_A, initLayer1, context.getLayerManager()); JComboBox functionComboBox = dialog.addComboBox(PREDICATE, funcNameToRun, functionNames, null); functionComboBox.addItemListener(new MethodItemListener()); paramField = dialog.addDoubleField(PARAM, params[0], 10); dialog.addLayerComboBox(LAYER_B, initLayer2, context.getLayerManager()); updateUIForFunction(funcNameToRun); } private void getDialogValues(MultiInputDialog dialog) { srcLayerA = dialog.getLayer(LAYER_A); srcLayerB = dialog.getLayer(LAYER_B); funcNameToRun = dialog.getText(PREDICATE); functionToRun = GeometryPredicate.getPredicate(funcNameToRun); params[0] = dialog.getDouble(PARAM); } private void updateUIForFunction(String funcName) { boolean paramUsed = false; GeometryPredicate func = GeometryPredicate.getPredicate(funcName); if (func != null) { paramUsed = func.getParameterCount() > 0; } paramField.setEnabled(paramUsed); // this has the effect of making the background gray (disabled) paramField.setOpaque(paramUsed); } private class MethodItemListener implements ItemListener { public void itemStateChanged(ItemEvent e) { updateUIForFunction((String) e.getItem()); } } }
[ "edso@d6f7b87f-2e33-0410-8384-f77abc8d64da" ]
edso@d6f7b87f-2e33-0410-8384-f77abc8d64da
2c063d2fa871e593b8b858fb6356b8d448a256fa
9acc8899b66713c475e0504807fa70dffde8a71b
/Cryptography/keyword_cipher_encryption.java
53d01e2e5771d601814c6278852b834fc2f7f269
[ "MIT" ]
permissive
pratikshakj/HacktoberFest2020-Contributions
05b9d080bffb5921f8bb10d3ef52618021656a25
a925218708c0739554d6f34ce9e4104541b27a3f
refs/heads/master
2022-12-30T14:23:49.539114
2020-10-24T16:33:43
2020-10-24T16:33:43
306,925,378
3
0
MIT
2020-10-24T16:33:44
2020-10-24T16:31:36
null
UTF-8
Java
false
false
2,233
java
//encoding the string using classical cipher class GFG { // Function generates the encoded text static String encoder(char[] key) { String encoded = ""; // This array represents the // 26 letters of alphabets boolean[] arr = new boolean[26]; // This loop inserts the keyword // at the start of the encoded string for (int i = 0; i < key.length; i++) { if (key[i] >= 'A' && key[i] <= 'Z') { // To check whether the character is inserted // earlier in the encoded string or not if (arr[key[i] - 65] == false) { encoded += (char) key[i]; arr[key[i] - 65] = true; } } else if (key[i] >= 'a' && key[i] <= 'z') { if (arr[key[i] - 97] == false) { encoded += (char) (key[i] - 32); arr[key[i] - 97] = true; } } } // This loop inserts the remaining // characters in the encoded string. for (int i = 0; i < 26; i++) { if (arr[i] == false) { arr[i] = true; encoded += (char) (i + 65); } } return encoded; } // Function that generates encodes(cipher) the message static String cipheredIt(String msg, String encoded) { String cipher = ""; // This loop ciphered the message. // Spaces, special characters and numbers remain same. for (int i = 0; i < msg.length(); i++) { if (msg.charAt(i) >= 'a' && msg.charAt(i) <= 'z') { int pos = msg.charAt(i) - 97; cipher += encoded.charAt(pos); } else if (msg.charAt(i) >= 'A' && msg.charAt(i) <= 'Z') { int pos = msg.charAt(i) - 65; cipher += encoded.charAt(pos); } else { cipher += msg.charAt(i); } } return cipher; } // Driver code public static void main(String[] args) { // Hold the Keyword String key; key = "Computer"; System.out.println("Keyword : " + key); // Function call to generate encoded text String encoded = encoder(key.toCharArray()); // Message that need to encode String message = "GeeksforGeeks"; System.out.println("Message before Ciphering : " + message); // Function call to print ciphered text System.out.println("Ciphered Text : " + cipheredIt(message, encoded)); } }
baf6b465011372e49de65f3f8b3285b97754c6ec
8bbb79066adb67aa9089a2efc2be66bcbfd79d75
/src/main/java/org/study/cinema/exceptions/DataNotFound.java
cf96fe3f729f14682be2866bf39ffdc2a849c76a
[]
no_license
AnnaMakarchuk/cinema_spring
b42a2c44bc52d0af3a7f0d7cd61ff31d96e0b354
284e282ac34bbbfc261c8ac6a6efd8e51a115e2f
refs/heads/master
2022-02-11T09:35:09.681682
2019-09-17T09:33:55
2019-09-17T09:33:55
201,637,272
2
0
null
2022-01-21T23:28:57
2019-08-10T13:58:21
Java
UTF-8
Java
false
false
166
java
package org.study.cinema.exceptions; public class DataNotFound extends RuntimeException { public DataNotFound(String message) { super(message); } }
4dcf122cbd01a69b4c9ec1569d8b92ee2271d912
ba2eef5e3c914673103afb944dd125a9e846b2f6
/AL-Game/data/scripts/system/handlers/quest/rider_quests/_24013PoisonIntheWaters.java
49085adce6eae3751508b0274b2b8eed6ce61055
[]
no_license
makifgokce/Aion-Server-4.6
519d1d113f483b3e6532d86659932a266d4da2f8
0a6716a7aac1f8fe88780aeed68a676b9524ff15
refs/heads/master
2022-10-07T11:32:43.716259
2020-06-10T20:14:47
2020-06-10T20:14:47
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,467
java
/** * This file is part of Aion-Lightning <aion-lightning.org>. * * Aion-Lightning is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Aion-Lightning is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Aion-Lightning. * If not, see <http://www.gnu.org/licenses/>. */ package quest.rider_quests; import com.aionemu.gameserver.model.DialogAction; import com.aionemu.gameserver.model.gameobjects.Item; import com.aionemu.gameserver.model.gameobjects.player.Player; import com.aionemu.gameserver.questEngine.handlers.HandlerResult; import com.aionemu.gameserver.questEngine.handlers.QuestHandler; import com.aionemu.gameserver.questEngine.model.QuestEnv; import com.aionemu.gameserver.questEngine.model.QuestState; import com.aionemu.gameserver.questEngine.model.QuestStatus; import com.aionemu.gameserver.world.zone.ZoneName; /** * @author pralinka */ public class _24013PoisonIntheWaters extends QuestHandler { private final static int questId = 24013; private final static int[] mobs = { 210455, 210456, 214039, 210458, 214032 }; public _24013PoisonIntheWaters() { super(questId); } @Override public void register() { qe.registerOnEnterZoneMissionEnd(questId); qe.registerOnLevelUp(questId); qe.registerQuestNpc(203631).addOnTalkEvent(questId); qe.registerQuestNpc(203621).addOnTalkEvent(questId); for (int mob : mobs) { qe.registerQuestNpc(mob).addOnKillEvent(questId); } qe.registerQuestItem(182215359, questId); } @Override public boolean onDialogEvent(QuestEnv env) { final Player player = env.getPlayer(); final QuestState qs = player.getQuestStateList().getQuestState(questId); if (qs == null) { return false; } final int var = qs.getQuestVarById(0); int targetId = env.getTargetId(); if (qs.getStatus() == QuestStatus.START) { switch (targetId) { case 203631: { // Nokir switch (env.getDialog()) { case QUEST_SELECT: { if (var == 0) { return sendQuestDialog(env, 1011); } } case SELECT_ACTION_1012: { playQuestMovie(env, 63); return sendQuestDialog(env, 1012); } case SETPRO1: { return defaultCloseDialog(env, 0, 1); // 1 } default: break; } break; } case 203621: { // Shania switch (env.getDialog()) { case QUEST_SELECT: { if (var == 1) { return sendQuestDialog(env, 1352); } } case SETPRO2: { giveQuestItem(env, 182215359, 1); return defaultCloseDialog(env, 1, 2); // 2 } default: break; } break; } } } else if (qs.getStatus() == QuestStatus.REWARD) { if (targetId == 203631) { // Nokir if (env.getDialog() == DialogAction.QUEST_SELECT) { return sendQuestDialog(env, 2375); } else { return sendQuestEndDialog(env); } } } return false; } @Override public boolean onKillEvent(QuestEnv env) { Player player = env.getPlayer(); QuestState qs = player.getQuestStateList().getQuestState(questId); if (qs == null) { return false; } int var = qs.getQuestVarById(0); if (var >= 3 && var < 7) { qs.setQuestVarById(0, var + 1); updateQuestStatus(env); return true; } else if (var == 7) { qs.setStatus(QuestStatus.REWARD); updateQuestStatus(env); return true; } return false; } @Override public HandlerResult onItemUseEvent(QuestEnv env, Item item) { Player player = env.getPlayer(); if (player.isInsideZone(ZoneName.get("DF1A_ITEMUSEAREA_Q2016"))) { return HandlerResult.fromBoolean(useQuestItem(env, item, 2, 3, false)); // 3 } return HandlerResult.FAILED; } @Override public boolean onZoneMissionEndEvent(QuestEnv env) { return defaultOnZoneMissionEndEvent(env); } @Override public boolean onLvlUpEvent(QuestEnv env) { return defaultOnLvlUpEvent(env, 24010, true); } }
[ "Falke_34@080676fd-0f56-412f-822c-f8f0d7cea3b7" ]
Falke_34@080676fd-0f56-412f-822c-f8f0d7cea3b7
bf28c3e9fdb50079aedf379051b0499bf9dfa57f
b335ae753da57f458f8b5bbca7f06821ef153220
/src/StringManipulation/Sorting.java
0ce382820e991e9b8b69559c4b4989138c6b20be
[]
no_license
PKavyaSri/ListOfJavaPrgrms-Kavya
e6ded5e6a2297e0ec0bfaa2445a472ebf1ceca82
04ac35ece691941492558263f9c891a0346a9e87
refs/heads/master
2020-07-24T16:29:31.947351
2019-09-17T15:57:49
2019-09-17T15:57:49
null
0
0
null
null
null
null
UTF-8
Java
false
false
527
java
package StringManipulation; import java.util.Arrays; public class Sorting { public static void main(String[] args) { // TODO Auto-generated method stub int a[] = {1,10,6,2,8,5}; int n=a.length; /*Arrays.sort(a); for(int i=0;i<a.length;i++) { System.out.println(a[i]); }*/ int temp= 0; for(int i=0;i<n;i++) { for(int j=i+1;j<n;j++) { if(a[i]>a[j]) { temp =a[i]; a[i]=a[j]; a[j]=temp; } } System.out.println(a[i]); } } }
ad1ecf4c0a1dbdfcabec695d7b9b6eae67437129
611e9f82df8069ed4e6c6f7bff9506fa1d171bd0
/src/main/java/me/zoon20x/skyenvoys/files/AsyncFileCache.java
b4b58d603b17f44fc888a34d5fbad83733082440
[]
no_license
Zoon20X/SkyEnvoys
6d65fc3fde62908c71a1cc029c324caf91256026
ae83cc32461ce265dbc834da26dc6634b452ea6b
refs/heads/master
2023-02-21T17:09:35.693203
2021-01-24T23:48:51
2021-01-24T23:48:51
330,643,574
0
0
null
null
null
null
UTF-8
Java
false
false
6,851
java
package me.zoon20x.skyenvoys.files; import me.zoon20x.skyenvoys.Containers.EnvoyContainer; import me.zoon20x.skyenvoys.Containers.settings.*; import me.zoon20x.skyenvoys.SkyEnvoys; import me.zoon20x.skyenvoys.utils.ChestStates; import me.zoon20x.skyenvoys.utils.EnvoyList; import me.zoon20x.skyenvoys.utils.MessagesUtil; import org.bukkit.Effect; import org.bukkit.Material; import org.bukkit.configuration.file.FileConfiguration; import org.bukkit.configuration.file.YamlConfiguration; import org.bukkit.inventory.ItemStack; import org.bukkit.plugin.Plugin; import org.bukkit.scheduler.BukkitRunnable; import java.io.File; import java.util.ArrayList; import java.util.UUID; public class AsyncFileCache { private static File getFile(String id){ return new File(SkyEnvoys.getInstance().getDataFolder(), id + ".yml"); } private static File getEnvoyTypesFile(String id){ return new File(SkyEnvoys.getEnvoyTypesFolder(), "/"+id); } private static FileConfiguration getConfig(File file){ return YamlConfiguration.loadConfiguration(file); } public static void startAsyncCreate() { FileCache.createFile(getFile("lang"),getConfig(getFile("lang")), "lang.yml", "lang.yml", "lang"); FileCache.createFile(getFile("/GUIS/SettingsGUI.yml"), getConfig(getFile("/GUIS/SettingsGUI.yml")), "/GUIS/SettingsGUI.yml", "GUIS/SettingsGUI.yml", "SettingsGUI"); startAsyncCache(); } public static void startAsyncCache() { new BukkitRunnable(){ @Override public void run() { FileCache.addFileToCache("lang", getConfig(getFile("lang"))); FileCache.addFileToCache("settingsGUI", getConfig(getFile("/GUIS/SettingsGUI"))); LoadLangData(); } }.runTaskAsynchronously(SkyEnvoys.getInstance()); LoadEnvoys(); } public static void LoadLangData(){ LangContainer container = new LangContainer(); container.setAdminCreatorCreated(FileCache.getConfig("lang").getString("EnvoysCommand.Admin.Creator.AlreadyCreated.Message")); container.setAdminCreatorNeedName(FileCache.getConfig("lang").getString("EnvoysCommand.Admin.Creator.NoName.Message")); container.setAdminEditorNeedName(FileCache.getConfig("lang").getString("EnvoysCommand.Admin.Editor.NoName.Message")); container.setAdminEditorNoExist(FileCache.getConfig("lang").getString("EnvoysCommand.Admin.Editor.NoExist.Message")); MessagesUtil.setLangData(container); } public static void LoadEnvoys(){ new BukkitRunnable() { @Override public void run() { File dir = SkyEnvoys.getEnvoyTypesFolder(); for(String x : dir.list()){ File settings = getEnvoyTypesFile(x + "/Settings.yml"); File items = getEnvoyTypesFile(x + "/Items.yml"); File locations = getEnvoyTypesFile(x + "/Locations.yml"); FileConfiguration settingsConfig = null; FileConfiguration itemsConfig = null; FileConfiguration locationsConfig = null; if(settings.exists() && items.exists() && locations.exists()){ settingsConfig = getConfig(settings); itemsConfig = getConfig(items); locationsConfig = getConfig(locations); }else{ System.out.println(MessagesUtil.basicColor("&c" + x + " &4could not be loaded, please check you have all the files")); } if(settingsConfig !=null && itemsConfig !=null && locationsConfig !=null){ EnvoyEffects effects = new EnvoyEffects(settingsConfig.getBoolean("Effects.Lightning"), settingsConfig.getBoolean("FallingBlock.Enabled"), settingsConfig.getInt("FallingBlock.DropHeight")); EnvoyMessages messages = new EnvoyMessages(settingsConfig.getString("Message.Summon"), settingsConfig.getString("Message.Finish")); EnvoyEvents events = new EnvoyEvents( settingsConfig.getBoolean("SummonEvent.Message-Enabled"), settingsConfig.getBoolean("FinishEvent.Message-Enabled"), ChestStates.valueOf(settingsConfig.getString("FinishEvent.ChestOption"))); Boolean summonTime = settingsConfig.getBoolean("Time.Summon.Enabled"); Boolean finishTime = settingsConfig.getBoolean("Time.Finish.Enabled"); EnvoyTime time = null; if (summonTime && finishTime) { String summonUnits = settingsConfig.getString("Time.Summon.Units"); String finishUnits = settingsConfig.getString("Time.Finish.Units"); Integer summonAmount = settingsConfig.getInt("Time.Summon.Amount"); Integer finishAmount = settingsConfig.getInt("Time.Finish.Amount"); time = new EnvoyTime(true, true, summonUnits, finishUnits, summonAmount, finishAmount); }else if(!summonTime && !finishTime){ time = new EnvoyTime(); }else{ String units; Integer amount = 0; if(summonTime){ units = settingsConfig.getString("Time.Summon.Units"); amount = settingsConfig.getInt("Time.Summon.Amount"); time = new EnvoyTime(true, false, units, amount); }else if(finishTime){ units = settingsConfig.getString("Time.Finish.Units"); amount = settingsConfig.getInt("Time.Finish.Amount"); time = new EnvoyTime(false, true, units, amount); } } ItemStack item = new ItemStack(Material.valueOf(settingsConfig.getString("EnvoyBlock.Type")), 1, (short) settingsConfig.getInt("EnvoyBlock.Data")); EnvoyContainer container = new EnvoyContainer(x,item, new ArrayList<>(), effects, messages, time, events); EnvoyList.addEnvoy(x, container); }else{ System.out.println(MessagesUtil.basicColor("&c" + x + " &4could not be loaded, please check you have all the files")); } } } }.runTaskAsynchronously(SkyEnvoys.getSkyEnvoys()); } }
8e3a707b8f0dc2d4898c73678e2e3ea80c7ee4ec
f45c917240d04cc8211eb2ffe6060b60076de3de
/android/app/src/main/java/com/stateunion/p2p/etongdai/Splash.java
211614810b70304be88da21fa938a47be359900f
[]
no_license
xingyinruoxi/rn
9d85fd662d5f03e939c2717339135bef3cbfe91e
08b18142320e6ea570e3dd19da16423b07ca0950
refs/heads/master
2023-01-08T20:55:45.053664
2019-05-29T02:44:59
2019-05-29T02:44:59
157,500,241
0
1
null
2023-01-03T15:39:07
2018-11-14T06:14:05
Makefile
UTF-8
Java
false
false
2,745
java
package com.stateunion.p2p.etongdai; import android.app.Activity; import android.app.Dialog; import com.stateunion.p2p.etongdai.utils.LogUtils; import java.lang.ref.WeakReference; import me.weyye.hipermission.HiPermission; import me.weyye.hipermission.PermissionCallback; /** * the boot page */ public class Splash { private static Dialog mSplashDialog; private static WeakReference<Activity> mActivity; /** * the splash is show * @param activity * @param fullScreen */ public static void show(final Activity activity,final boolean fullScreen) { LogUtils.e("activity:",activity," | fullScreen"); mActivity = new WeakReference<Activity>(activity); activity.runOnUiThread(new Runnable() { @Override public void run() { if (!activity.isFinishing()) { mSplashDialog = new Dialog(activity,fullScreen? R.style.SplashScreen_Fullscreen: R.style.SplashScreen_SplashTheme); mSplashDialog.setContentView(R.layout.view_splash); mSplashDialog.setCancelable(false); if (!mSplashDialog.isShowing()) { mSplashDialog.show(); } } } }); } /** * this splash is show and default the fullscreen * @param activity */ public static void show(final Activity activity) { HiPermission.create(activity).checkSinglePermission(android.Manifest.permission.SYSTEM_ALERT_WINDOW, new PermissionCallback() { @Override public void onClose() { LogUtils.e("onClose"); } @Override public void onFinish() { LogUtils.e("onFinish"); } @Override public void onDeny(String permission, int position) { LogUtils.e("onDeny~permission:",permission," | position:",position); hide(activity); } @Override public void onGuarantee(String permission, int position) { LogUtils.e("onGuarantee~permission:",permission," | position:",position); show(activity,true); } }); } /** * this splash is hide * @param activity */ public static void hide(Activity activity) { LogUtils.e("activity:",activity); activity = mActivity.get(); activity.runOnUiThread(new Runnable() { @Override public void run() { if (mSplashDialog != null && mSplashDialog.isShowing()) { mSplashDialog.dismiss(); } } }); } }
550e8ed79f1507d41046763808edef27c731932b
96d71f73821cfbf3653f148d8a261eceedeac882
/external/decompiled/blackberry/WhatsApp OS6 V2.8.1914/decompiled/WhatsApp-28/com/rim/resources/WhatsAppRIMResourcesPopulator45.java
6f5a0c82a69ded4bff29ddf47ecdcb78b256613f
[]
no_license
JaapSuter/Niets
9a9ec53f448df9b866a8c15162a5690b6bcca818
3cc42f8c2cefd9c3193711cbf15b5304566e08cb
refs/heads/master
2020-04-09T19:09:40.667155
2012-09-28T18:11:33
2012-09-28T18:11:33
5,751,595
2
1
null
null
null
null
UTF-8
Java
false
false
233,231
java
// ####################################################### // Decompiled by : coddec // Module : WhatsApp-40.cod // Module version : 2.8.1914 // Class ID : 21 // ######################################################## package com.rim.resources; abstract final class WhatsAppRIMResourcesPopulator45 extends Object { // @@@@@@@@@@@@@ Static routines static final populate( java.util.Hashtable ); // address: 0 { enter_narrow arrayinit [-74, 66, -40, 118, -2, -24, -97, 125, -20, 99, -69, -127, -21, -66, -9, -35, -17, -106, -118, -91, -30, 117, -71, 92, 46, -27, -70, 46, 99, -29, -29, -9, -95, -11, -41, 57, -118, 10, 39, 19, 60, 62, -97, -97, -6, 121, 56, 64, -70, 122, 122, -80, 76, 70, 17, 117, 66, 40, 54, 114, 0, -82, 15, 92, 69, -87, -86, -49, -118, 27, 40, 21, 125, 78, 36, 18, -111, 83, 123, -104, 127, -62, -3, 99, -74, 101, 47, 51, 45, 115, -103, 82, -22, 60, -83, -11, -105, -42, -82, -3, -59, -5, -34, -13, -98, 63, -36, -52, 81, 82, -93, -61, -49, 1, -54, -83, -39, -37, 114, -92, 35, -121, 127, -25, -15, -86, -6, -6, 59, -77, 34, 8, 16, -39, 76, -110, 116, 38, -58, -41, -106, -57, 101, 42, -99, -26, -30, -101, 55, 59, -64, 61, 48, 126, -49, -33, -98, -85, -84, 90, 65, -84, -63, -80, -33, -110, -50, -75, -68, 113, -46, 15, 78, 86, 90, -25, 76, 41, 72, 100, -102, -24, -56, -75, -78, 115, -53, 22, 124, -33, 33, -100, -43, -106, -127, -35, 3, -108, -53, 85, -86, -91, 124, -28, -60, 88, 42, 21, 65, -7, 40, 47, 24, -11, -99, -22, 61, 78, -91, -12, -49, 95, -2, -75, 115, 63, -64, -27, 111, 109, -106, -90, 97, 82, 115, 42, -8, -98, 55, 13, -49, -34, 57, -95, 126, 31, -3, -9, 25, -16, -2, -17, -118, 101, -107, 52, -51, -117, -49, 45, -106, -66, 56, -6, -44, -45, -49, -34, 120, -29, -115, -65, 5, -106, 54, -64, -114, 46, -32, 29, 114, -92, -51, -71, -63, 72, 121, -128, -78, -56, 108, -8, -66, 81, 81, 94, 102, -61, -42, 13, -53, -6, 0, 41, -115, -7, 126, 9, 109, 56, 113, -80, 125, -32, 6, 51, 14, 80, 71, -52, 54, -93, -47, 26, -14, 39, -103, -127, 104, -65, -5, -12, 67, 95, 62, -17, -72, -21, -33, -12, -78, 5, 23, -11, -60, -53, -92, -38, 91, 104, 117, -63, 28, 40, -66, 15, -72, 99, 102, 64, -98, -1, 41, 5, -56, 89, -25, 43, 104, -72, -50, -75, 16, 120, 125, 50, -76, 103, -127, 31, -124, -27, 74, -22, -104, -91, 75, 123, 66, -120, -65, 39, -105, -51, 46, 12, 63, -73, 37, -110, -55, -92, 97, 24, 73, -33, -9, 1, -86, -114, -29, 84, 67, 96, 115, 44, 63, 53, 53, 24, -126, -72, 3, 125, 125, 125, -69, -9, -83, 107, 56, -90, 83, 79, -3, -70, -87, 89, 109, 29, -59, -117, 75, 55, 88, 99, -98, 107, -128, 83, -12, -104, 8, 33, -38, 127, 121, 100, -124, 103, 78, 107, -27, -20, -107, 77, 44, 107, 79, 17, -117, -5, 16, 15, 32, -90, -64, 12, -64, -80, 125, -92, -14, 17, 74, 34, 2, -127, 54, 77, 48, -61, 20, 73, 16, 8, 60, 45, 8, 20, -44, 20, 76, -108, -76, -1, -36, -128, -65, -25, -111, 29, -63, -70, 39, 123, -3, 7, -128, -47, -58, -33, -78, -65, 103, -31, 80, -6, 4, 79, 60, -15, -60, 103, -13, -7, -4, -43, 103, -100, 113, 70, 103, 88, -114, 71, 101, -66, 101, 89, -52, -64, 19, 51, -48, -117, -108, 50, 50, 32, 90, -33, 8, 80, -124, -37, 71, -37, -124, -96, 17, 119, -33, 125, -9, -3, -31, 117, -7, 38, 71, 73, -61, -49, 109, -8, -84, 87, 45, 94, -67, 60, -101, -18, 52, 58, -70, -104, -127, 103, 95, -110, 54, 62, -58, -42, 59, -41, -34, -17, 20, 11, 71, 36, -1, 95, -5, -22, 87, -33, 113, -43, 85, 87, 95, 119, -61, -115, 63, 58, -1, -84, -77, -49, -14, 79, 123, -11, -85, 115, -15, 92, 78, -6, -62, -94, 20, -64, -34, -79, 60, 119, -36, 122, 83, 121, 96, 87, -33, -28, -42, -57, -41, -3, -59, 127, -2, -24, 95, 22, 2, 77, -128, 7, -56, 89, -49, -114, 95, 95, -17, 31, -32, -6, -21, 89, -90, 34, 59, -12, 40, -76, -123, -39, 19, -115, -59, 55, 92, -70, -102, 121, 72, 125, 41, 93, 5, 110, 61, -8, 78, 105, -17, -57, 40, -8, -33, 99, 107, 30, 86, -26, -70, 56, 12, -86, -43, 24, -14, 125, -73, -57, -74, 45, 18, 73, 3, -4, 96, 25, -121, 65, -1, 12, -9, 17, -39, 33, 73, -46, -96, 95, 92, 113, 17, -121, -84, -73, 63, -60, -116, 110, -5, 37, 71, 66, -14, 64, -3, -128, 57, -6, -78, -94, 110, 122, 63, 117, -125, 110, 72, -25, -22, -29, 105, 14, 66, -85, -105, 44, 120, -27, -48, -56, 40, 69, 119, -2, -128, -4, -73, -97, -38, 50, 1, 92, 120, -55, -110, -26, 111, 103, 124, -3, 71, 41, -97, -13, -109, -126, 101, -74, 0, 91, 78, -101, -87, -12, 11, 63, 82, 52, 116, 118, 12, 3, 35, -111, -28, -79, -55, 26, 85, 63, 0, -32, -63, 124, -107, -73, 118, -73, 81, -82, 120, 4, 120, -11, 31, 39, 8, -22, -64, -123, 31, -63, 121, -32, -23, -48, 20, -44, 116, 104, -118, 66, 89, -21, -37, -53, 110, 112, -13, -41, -98, -17, -65, -101, -125, 84, 5, -66, 0, 92, -15, 69, -8, 42, -80, -2, 80, -64, -50, 91, 54, 112, -34, -94, -10, -31, 59, -49, 59, -9, -23, -42, -18, -18, 19, 49, 83, 54, -24, 0, -76, -113, 63, -74, 19, 119, -30, 9, 122, 55, -35, -63, 45, 119, 112, -3, -38, 62, 62, 63, 2, 69, -26, 41, 33, 124, -115, 50, 52, -16, 107, -124, -66, -38, -78, -52, -65, -80, 99, -31, -97, 109, 35, 13, 99, -80, 92, -82, -4, 77, 111, -17, -82, -33, 105, 45, 12, 45, 64, 10, 52, 16, 126, 20, 17, -11, 34, 16, 74, 11, 64, -93, 4, 8, 109, 8, 80, -77, -26, -69, -117, -66, 87, 2, 41, 65, 71, -1, 10, 13, 34, -30, -8, -76, -106, -5, 82, 45, -112, 82, 48, -115, 53, 11, -55, -26, -51, -37, 126, -73, 114, -27, -118, -49, -39, -74, -11, -107, -80, -49, -77, 48, -120, 34, -83, 106, 71, 85, 43, -1, 80, 13, 95, -16, 69, -47, -94, -108, -48, 28, 126, -87, 106, -75, -70, -31, -31, -121, 31, -34, 103, -1, -44, -47, -47, -15, -86, -41, -68, -26, 53, -25, -66, -22, 85, -81, 122, 93, 111, 111, -17, -28, -38, -75, 107, -65, 49, 50, 50, -14, 91, -114, -80, -62, -70, -3, 63, 66, 39, -121, -105, -123, -19, -125, -97, -91, 82, -87, -27, 51, -114, 14, 117, -25, -100, -103, 8, -77, -115, 32, 109, -93, 69, -37, -72, -82, -117, -25, 121, 63, 114, 28, -25, 2, 126, -65, -46, 0, -123, 66, 17, -53, 50, -119, -59, -90, 39, 13, -87, 57, 14, -51, 77, -51, -92, -110, 73, 16, 98, -26, 119, -123, -21, 107, 17, 52, 27, -62, -45, -52, 0, -60, -96, 103, -6, -63, 17, -76, 99, 24, 6, 33, 91, 77, 120, -83, -62, -3, 83, -72, -82, 19, -99, -117, -103, -74, 20, 47, 68, -14, -45, -13, 112, -104, -44, -122, 52, -126, 112, -33, -24, 120, 115, -55, -13, 60, 66, 104, 51, 26, 95, 80, 74, 69, 121, -37, -97, -126, 32, -120, -94, 49, -43, -105, -93, 124, 29, 40, -78, 97, -40, 126, -117, 126, -81, -17, -5, -52, -95, 40, 111, -47, -17, 11, -13, 58, -113, 114, 120, -9, 32, -100, 123, -17, 115, -123, 107, -121, 11, -43, -113, -97, -48, -35, 65, 71, 83, 18, -85, -18, -12, 27, 104, 65, -43, 13, -40, 61, 82, 96, -21, -48, 40, 15, 15, -87, 59, -2, 27, -98, 5, 78, 1, -36, 99, -37, 19, -19, 91, 55, -82, -1, -90, -109, -20, -68, -15, -2, -33, -84, -5, -69, 15, 126, -32, -113, -113, 29, -101, -52, 15, -81, -3, -113, 31, -59, 0, 9, 4, -115, -19, -4, 3, -12, -63, 56, -110, 64, 109, 16, 4, -119, -48, -71, 31, 32, -70, -41, 43, -107, 74, 9, 120, -124, 23, -108, 3, 38, 0, -105, -93, -89, -57, -108, -17, -106, -79, 50, -87, 82, 127, -118, -14, -128, -119, -14, 115, 8, 43, 70, 34, 107, 33, -91, -96, 90, 85, 104, 63, 64, -7, 53, 98, -23, 34, -79, -123, 125, -40, 105, -113, 92, 115, 51, 45, -83, 77, 52, -27, -78, -60, 19, 9, -124, 105, -31, 75, -119, -89, 64, -94, 105, -108, -98, -107, 58, -127, 34, 97, 72, 76, 65, 116, 108, -89, -20, 80, 28, 30, 31, 5, 113, -1, -36, -27, -1, -1, -68, 40, 110, -75, -60, -13, 55, 127, -104, -42, -79, -69, -55, -103, 85, -70, 98, 96, 27, -96, -27, -12, -10, 18, 48, 37, 36, 108, -112, -90, -51, -18, -36, 121, -12, 45, -3, 24, -79, -98, -45, -94, -5, 43, 110, -66, 0, -51, 38, 45, 25, 125, -74, -115, 35, 17, 109, -10, -24, -21, 117, -81, 60, -91, 37, -68, 62, -25, 55, -73, -74, -45, -37, -69, 59, 15, -69, 57, 92, -70, -10, -119, -54, -109, 31, 41, 88, -1, -25, 117, 47, -53, -34, 38, 125, 65, 121, -92, 68, -128, -120, -32, 87, -108, -117, -46, -32, 7, 26, 93, 47, -9, 53, -110, -64, 87, 40, -91, 81, 72, 84, -32, -125, 6, -83, 102, -56, -28, -23, -24, -77, -109, -59, -128, -2, 124, -80, 45, 4, 115, -66, 114, -21, -82, -32, 103, -4, 47, -112, 105, 74, 8, 124, 106, 21, 7, 68, 84, -7, -41, 39, -118, 48, 17, 66, -121, 22, -52, -38, -34, 66, 72, -125, 0, 48, -45, 57, -68, 64, -95, 61, 31, 33, 5, 53, 63, 32, -48, 96, 72, 19, 25, -11, -93, 13, -112, -110, -63, 114, -111, -38, -60, 116, -124, 88, -63, 52, 116, -20, 22, 3, -20, 102, 83, -40, 49, -61, -86, 76, 57, 35, -52, -88, -31, -35, -15, 126, 84, 63, -57, 10, -128, -89, -42, 63, -55, -116, 34, -120, -39, -97, -98, -48, -54, 8, 2, 2, -49, 7, -88, -49, -26, 95, 99, 102, 25, -120, -66, 115, 29, 103, -70, -114, -10, -125, 104, -33, -39, -57, 83, 40, -44, 28, -7, -48, -121, -117, 56, -41, 90, -124, 127, 22, 64, 16, 69, -15, 117, -15, -107, -94, -26, 6, 32, -120, -58, 44, -27, -116, -93, -106, 97, 76, -41, 25, -5, 62, 75, -48, 2, 16, -47, 120, 69, -29, 8, -65, -28, -16, 75, -68, -4, -40, -29, 94, 47, -123, 120, -105, -46, 122, -89, 31, 4, -49, -108, 106, -43, -25, 67, -112, 105, 2, 96, -1, -29, 127, -111, 49, 43, -94, 43, 7, 3, -94, 46, 104, 109, 109, 89, -48, -36, -6, -15, -18, -114, -10, -49, -89, 19, -119, -8, -98, -79, -47, -15, -15, 66, -31, 79, -53, -75, 90, -27, 80, -32, -35, 122, -98, -6, -22, 64, -90, 92, -34, -42, 30, 95, -77, 104, -15, -103, -57, -74, 119, -2, -27, -54, -114, -82, 102, -91, -75, 23, 40, -75, -91, -30, -70, 27, 10, 78, 109, -128, 119, 51, 120, -128, -15, 49, 81, 55, -103, -119, -59, -19, 87, 31, -77, 124, 77, 42, -98, 56, -87, -91, 57, -9, -106, 16, -90, 60, 59, -16, -4, 74, -17, -13, -49, 95, -79, 118, -61, 83, 55, 29, -127, -70, 47, 124, 110, -4, -105, -91, -30, -23, 95, 44, 94, -66, -96, 99, 120, -17, 36, 97, -76, -40, 82, 46, 103, -51, -122, 62, -30, 39, 118, 54, -67, 63, -12, 1, 105, 78, -89, 99, -124, 80, 66, -41, -86, -10, -36, -126, 45, -93, -7, -111, -3, 68, -97, -51, 45, -22, 104, -66, 124, -47, -78, 5, 56, 85, -121, 103, -97, -34, 49, 94, 40, 85, 126, 11, -44, -22, -64, 110, -86, 86, -42, -105, 47, 93, -35, 18, 51, 98, 38, 67, 123, 39, -58, -83, -104, 124, -26, 48, 85, 35, 86, -40, 22, -3, 116, 8, -27, 54, -115, 79, 78, 33, 16, -79, -70, -61, -16, -62, -104, 101, 17, -74, 65, 79, 11, -95, -97, 92, 8, -69, -106, 15, 4, -69, -122, -33, 25, -106, 101, 47, 13, -33, -55, -36, 106, 90, 102, 123, -79, 84, -38, -22, 121, -34, 15, 1, -73, 17, -44, 5, -84, 68, 44, -79, 80, 79, 59, 32, -89, 14, 53, -33, -89, -99, -2, -54, -13, 86, -97, 116, -14, -5, -124, -124, -87, -55, -87, 61, 64, 0, 8, -61, 52, -102, 91, 59, -38, 9, 51, -11, -22, -123, -35, -35, -23, -16, -34, 46, 71, -9, -19, -117, -33, -1, -79, 87, -66, -6, 53, -97, 89, 126, -20, -54, -107, 65, -32, 50, 50, -68, -9, 81, -64, -83, -61, -125, -122, 29, 70, -66, 11, -37, 40, -96, 105, 1, -28, 124, -95, -45, 120, 80, 74, -75, 59, -69, 62, 27, -77, -28, -78, -82, 102, -69, -89, -77, 57, -42, -71, 116, 113, 15, -69, -85, 14, -23, -95, -22, -35, -10, -44, -122, -117, 91, 51, -79, 116, 107, -68, 25, -53, -108, 104, -19, 86, -14, 86, -41, -122, 57, -38, -111, 118, 79, 101, -45, 69, 18, 117, -62, -126, -42, 88, -53, -86, -91, 45, -81, -117, -57, 4, 27, -121, 125, 54, -11, -106, 110, 41, -74, -98, 114, 13, 80, -83, 3, -88, 102, 83, 105, -57, -119, 113, 93, -66, -80, -93, 37, 93, 74, 25, 43, 50, 19, 83, 83, 12, 14, -113, -36, 95, 49, -101, -14, -52, 67, -115, 16, 110, 103, -50, 120, -1, 113, -85, -113, -17, 26, 30, -24, -29, -39, -25, 54, -1, 8, -16, -22, -37, -104, -128, 37, 12, 51, -64, -80, -39, -75, 123, -49, -82, 66, 77, 62, -73, 47, 15, -5, 57, -106, -84, -101, -35, -45, 106, -35, 122, -36, -54, -107, -19, 72, -109, -37, -17, -6, -51, -19, -49, -17, 45, -1, 41, -32, -50, -20, 23, -90, 42, -36, -89, 8, -26, -33, 0, -119, 16, -12, -66, -2, -8, -109, 79, 95, 124, -33, -125, 15, 71, -128, -16, 75, 0, 103, 77, 32, 25, 2, -89, -17, -21, 104, -17, -70, 52, 17, 79, -59, -61, -2, -108, -106, 66, -120, -47, -111, 97, 6, -5, 122, 63, -90, 3, 111, 52, -107, 109, -7, 68, 38, -99, -95, -77, 43, 75, 8, -126, 81, 46, 21, -23, -21, -37, 67, -87, 84, -90, 107, -31, 2, -46, -39, -20, 52, -68, 23, -101, -18, 51, 13, 15, -113, 48, -78, 119, -120, -86, 83, 101, -55, -30, 99, -104, 24, 25, -95, 86, 42, 55, 62, 3, 28, 2, 40, 30, -27, -7, 77, 111, 126, -13, 71, 114, -71, -36, -102, 61, -69, -5, -118, -61, 35, 35, 31, 3, 106, 64, 12, -56, -123, -114, -21, -25, 120, -114, 75, -95, 84, -4, 87, -64, -99, 11, -100, 5, 108, 32, 29, 94, -57, -21, -102, -102, -101, 50, 59, 119, 108, -13, 6, -5, 7, 62, -70, 117, -53, -106, -83, -31, -67, -18, -51, -111, 15, 25, 15, 41, 69, -37, -74, -15, -107, -102, -77, 25, 27, -126, -85, -5, 28, -91, -35, -116, 74, -83, 47, -113, 85, -34, 62, 82, 24, -70, -70, -46, -111, 126, 91, -83, -22, -112, -6, -65, -20, -99, 9, -108, 93, 85, -103, -17, -1, -5, -52, 119, -84, -86, 123, 107, 76, -91, -122, 84, 6, 72, 2, 9, -120, 76, 2, -62, 3, -124, -106, 32, -115, -46, 77, -117, -19, 83, 81, -124, 110, -106, 3, 42, 79, 109, 31, 13, -118, 96, 35, -24, 19, -63, 118, -96, 91, -102, 65, -122, -41, -52, 66, 24, 66, -62, 96, 66, 18, 32, 9, 25, -88, 76, 85, -107, -102, -85, 110, -35, -70, -13, 116, -26, -67, -33, -31, -28, 84, 123, -42, 93, -107, -94, 50, -95, -10, 122, -1, -75, -66, 117, -50, 29, -49, -66, -5, -18, -77, -9, 62, -5, 124, -65, -17, -117, -124, 32, 74, 2, 20, -17, -38, -106, 19, 5, 4, 107, -61, 0, 24, 106, 66, 49, 55, -8, -77, -92, -121, 0, -62, -64, -84, -3, -13, 14, 73, -111, 81, 46, 20, -95, -107, 53, 48, -41, 87, -113, 66, 87, 13, -108, 10, 37, 24, 37, 13, 102, 89, -49, 27, 57, -29, -42, 56, -119, -3, 6, 64, -39, 57, -66, -115, 67, 80, 49, 93, -74, -6, 119, -18, 67, 98, 112, 12, -15, -122, 24, -10, -19, 77, 35, 49, 60, -114, -6, -71, -11, -120, -60, 35, -88, 20, -54, 52, 42, 7, 54, 14, -68, -47, -9, -97, 106, -78, -12, 123, 7, 14, -20, -57, 17, -110, 32, -15, -19, -55, 109, 99, 63, -84, 105, -83, -3, -120, 86, -47, -12, 64, 36, -80, 32, -65, 47, 123, 11, -119, -16, 87, -100, 119, -63, 105, -89, 57, 89, 106, 55, -30, 48, -12, -52, -67, 55, 61, -24, 64, -76, -101, -53, -27, -54, 99, 45, 45, 13, 75, -62, -95, 16, 42, 26, -125, -24, 6, -20, -110, -63, -104, 23, -64, 11, -52, -3, 127, -87, 109, -125, -128, -62, 48, 13, 55, -88, -100, -23, 60, 6, 101, -80, 25, 5, -31, -127, 64, 48, 8, -98, -29, 65, 8, -112, 73, 39, -79, -87, -89, -41, -74, 9, 121, -54, 57, 73, 79, 113, 32, -85, -10, 96, 77, 24, 98, 86, -2, 36, 53, -83, 7, 1, 60, 53, -13, 116, -52, -70, 30, -76, -12, 99, 106, 20, 97, -23, 58, -120, 11, -15, 82, 112, 68, 3, 15, 19, 90, 121, -1, -38, -121, 36, 114, -112, 5, 2, 57, 36, -71, 62, -88, -5, 19, 53, 81, 68, 35, 10, 68, 73, 5, -88, 6, -58, 81, 16, 65, 71, 49, 99, 32, 63, -103, 65, 40, -54, 35, 24, 38, -32, 56, 10, 70, 45, 8, 33, 30, -103, -100, -119, 82, -63, 64, 46, -85, 33, -101, -45, -111, 46, -24, -56, -28, 77, 36, -77, -122, -77, 111, -90, 74, -86, -11, 115, -61, 96, 119, -20, 25, -87, -24, -121, 9, -74, -122, -25, 119, 53, -33, -38, -40, 60, -65, 43, -109, 26, -64, 100, -86, -12, 124, 40, 40, -51, 105, -99, -37, -11, -34, -68, 14, -108, -102, -31, 35, 48, -114, -117, 13, -15, -48, -30, -7, -117, -106, 125, -121, -25, 101, -108, -117, -103, 4, 0, -61, -55, 62, -53, -100, 50, 112, -110, -56, -41, 45, 88, -80, -12, -17, 29, 95, 64, 112, 28, 87, -121, 35, 39, -2, 83, -105, 94, 120, 74, -52, -119, 22, -96, -87, 46, -60, 48, 23, -5, 69, 36, 89, 105, 22, 69, 25, -111, 104, -8, 92, 0, 27, 102, 88, -125, 18, 62, 121, -23, -7, -25, 47, 94, -78, -12, 122, -45, 50, 48, 60, 60, -74, 14, -128, 49, 77, -58, 90, 94, -106, -27, 14, 48, -128, -29, 73, -51, -111, 7, 103, 93, -109, -70, 66, -83, -97, 67, -88, -26, 28, 61, 61, -14, 17, 0, -38, 20, 60, -21, -68, -121, 3, 32, 11, 114, -24, 124, -128, -17, -42, -87, -31, -127, -75, 71, 79, 30, -48, -54, 3, -112, 101, -111, 119, -70, -8, -8, -123, -107, 82, -39, 30, 24, 78, -36, 8, -128, -100, -72, -96, -7, -30, 72, 109, -68, -34, 50, 116, -108, 43, -22, 26, 0, -26, 97, 28, 103, 106, -100, 9, 45, -21, 106, -2, 92, -76, -74, -82, -55, 98, 4, -109, -39, -30, -35, -34, 58, 87, 8, 64, 52, 16, 14, -43, -37, -122, -123, 114, 73, -35, -18, 62, 127, -120, -30, 25, -5, 90, -48, 33, 91, -54, -71, 44, 44, -45, -108, -10, 67, -80, -31, 43, -75, 124, 10, 122, -87, 24, 33, 64, -13, 108, 51, -73, -81, -70, -23, -14, -50, 64, 40, -12, -73, -90, -86, -94, 92, 40, -72, -96, 99, 32, 28, -67, 65, -110, 36, -116, 15, -10, 89, -44, -78, -78, 31, 80, -112, -60, 125, -86, -86, 118, -29, -3, -43, -29, 0, 65, 47, 8, -126, 112, -95, -37, 47, 30, 125, 93, 11, 32, 60, 67, -64, 74, -43, 9, 106, -3, 45, 0, 47, 56, -103, -6, 46, 112, 30, 39, 60, -8, 118, 61, -90, -111, -109, 89, -10, -105, 78, 80, 77, -117, 49, -74, -90, -75, -75, -11, 2, -25, 113, 6, -114, 6, 6, 6, -36, -28, 79, 56, 124, -43, 57, -11, -72, 110, -59, -118, 21, -123, -101, 110, -70, 105, 37, 124, -102, 1, -92, -35, 3, -32, 95, -32, -40, 117, 117, -84, -114, 81, -38, -54, 49, 68, -64, 40, -79, 109, 90, -95, 12, 9, -25, 61, 9, 28, -100, 86, 62, -4, -16, -61, -73, 45, 91, -74, 108, -35, 19, 79, 60, 113, -62, 101, -105, 93, -106, -59, 127, 35, -51, -28, 119, -107, -38, -111, 55, -14, -117, -43, 66, 46, -105, 107, 40, -87, 89, -40, -52, -126, 101, -37, -48, 43, 22, 18, 19, 69, -93, -25, -11, -119, 55, 1, -4, 15, 0, 49, 56, 102, 20, -84, 90, -57, 106, -68, -64, 88, 65, 111, 94, 42, 120, -33, 103, 123, 62, 37, -86, -105, -3, 56, 111, 107, 52, -105, -40, 92, -40, 51, -87, 20, -73, -117, 17, -98, 31, -115, -26, 53, 33, 36, 126, -59, 58, -42, 108, 117, 124, -41, 97, 14, 26, -24, 31, -23, 65, 58, -101, 66, 69, 55, -52, 98, -86, -110, -10, 65, -87, 51, 5, -83, 36, 7, -14, 91, 114, -38, -11, 118, -57, 111, -25, 50, -25, -1, -4, -100, 3, -117, 95, -27, 4, -50, -17, 116, -26, -45, -82, 95, -95, 32, 8, -45, 5, 16, 61, 96, 22, 90, -53, -78, 92, -104, -36, -87, 31, 56, 1, -12, -33, 116, -32, -39, 95, 58, -63, 103, 95, -11, -5, 78, 84, -107, -63, -14, 61, 95, -107, 8, 97, -26, -14, 79, 20, -19, -35, 91, 70, -40, -25, -33, 29, 51, -119, 106, 67, -93, -116, 105, -25, -75, -53, -33, 62, -89, 43, -16, -111, -18, 9, 99, -20, -66, 119, 43, 55, -27, 12, 38, -7, 63, 51, 109, 61, 121, -56, -56, -90, 49, -21, 55, 61, -87, -94, 121, -27, -15, -63, 27, -113, 107, -110, 90, 94, -35, -89, 110, 92, 53, -96, -1, -108, 39, -112, 3, 2, 81, 76, -54, -24, 120, -103, -18, 62, -40, -14, 43, -118, 44, -41, 68, 34, 72, -91, 39, 17, -115, -42, -72, 7, -37, 127, -97, -110, -7, 50, 124, 90, 110, -3, -102, -90, 33, -29, 16, -28, -16, 95, 91, 28, -56, 31, -96, -44, 93, -5, 12, -121, -62, -18, -3, -88, 68, 34, -127, -127, -63, -95, -60, -66, -127, -63, -53, -107, 64, 32, -45, -39, -34, 89, -54, -26, -13, 97, 69, 18, 92, -128, 86, -111, 37, -73, 12, -59, 98, -55, 5, 105, 41, -104, -123, -61, 84, -57, -62, -91, -49, 28, -77, -20, -8, -123, 123, -74, 111, -101, 36, -124, -77, 80, -91, 80, -76, -18, -118, -128, 34, -55, 34, 79, 16, 12, 70, -50, 125, 63, -128, -74, 117, -63, -46, 95, -97, 125, -47, -118, 47, -66, -11, -6, -85, 125, 95, 125, 96, -32, 117, 84, -119, 23, -92, -27, -44, 50, 81, 46, -107, 27, 113, 4, -28, -127, -84, -100, 3, -75, 114, 0, 24, 47, -16, 69, 37, 20, 120, 38, 44, -41, -84, -28, 85, 94, 52, 68, 51, 84, 34, -107, -59, 54, 103, -99, 37, 4, -27, 37, -126, -60, 47, -31, 56, -82, -106, 19, -7, 14, -30, -35, -81, -92, 2, 93, -20, 6, 43, -74, -20, 44, 53, -20, 126, -85, 98, -68, -54, 49, 110, -89, 68, -60, 109, 115, -108, 57, 111, -119, 33, -95, -32, -99, -9, -42, 123, -80, -82, 115, 76, 25, 117, -68, -75, -7, -47, -11, -10, -91, 119, 125, -106, 109, -70, -17, 13, -68, -97, 60, -112, 117, -35, 45, -33, -65, -71, -98, 23, -124, 37, 2, 47, -76, 113, 60, -89, 56, 101, -47, 5, -127, 55, -77, -39, -84, -29, 75, 22, -3, 88, 52, 26, 61, 95, -106, 101, -59, 5, 105, 5, 17, 95, -2, -46, 85, -128, 35, 67, 51, -32, -44, -103, 11, -50, -22, -70, -82, 57, 0, -10, -22, 124, -66, -16, -78, 101, 89, 19, -74, 109, -117, -114, -55, -116, 50, -51, -78, -52, 97, 103, 127, -25, 13, -33, -65, 49, -123, 89, 74, -64, 81, 80, -113, 26, -39, -50, 90, 79, -4, 116, -23, -124, -123, -80, 117, 19, 67, 27, -34, 69, 127, 101, -21, 59, 71, 117, 0, -104, 30, 22, 20, -85, 64, 70, -59, -21, -40, 3, -98, 41, 94, 103, 31, -14, -74, 17, 111, 63, -20, 123, 93, 4, 64, -34, -66, 119, -73, 85, 127, 76, -19, -45, 45, -89, -44, 47, -113, 52, -121, -69, -20, -9, -82, 74, -96, -128, -89, -128, -83, 83, 16, -41, -17, -127, 119, 7, -103, -78, 101, -82, 45, 24, -22, -113, 54, -36, -13, -26, -22, -86, 50, -78, -93, 62, 24, -122, 113, 93, 56, -84, 8, -107, -78, -58, -84, 17, -36, -118, -4, 65, 28, 115, 15, 40, 62, 64, 109, -37, -109, -7, -7, 50, 102, -1, -62, 50, -83, -65, -54, -91, 83, 95, 72, 78, -90, 46, 105, 105, -102, -108, -94, -47, 48, 66, -47, 8, 20, 81, -128, 101, 82, -108, 74, 25, 20, 10, 42, -14, -123, 50, 38, 51, -109, 70, 42, -103, -3, 125, 54, -105, -65, -17, -83, -18, -28, -54, -93, 9, -50, 86, -125, 59, -45, 65, -125, 126, 8, -61, -33, -50, 124, 22, -10, -38, 84, -64, -37, 87, 54, 102, 54, -77, -13, 42, -105, 62, 115, -61, -68, -81, -99, 121, 113, -61, -123, 115, -96, -43, 67, 51, 53, 24, -106, 14, 19, 38, -110, 44, 101, -4, 50, -1, -17, -101, -97, -98, 124, -31, 97, -101, -39, 49, 111, 65, 44, -29, 77, 62, -4, 30, 14, 116, -70, 114, 86, -63, 79, 82, 85, 70, 27, -9, 28, -16, -75, -7, -80, -41, -18, 35, -3, -125, -55, -80, 99, -29, -118, 34, 61, -41, -46, 84, -73, -96, -93, -67, -79, -93, -39, -15, -92, -81, -85, -77, -107, -70, -38, 16, 111, -104, 20, 106, 69, 71, 42, 61, -22, 70, 83, 55, 45, -26, -20, -25, 29, 85, -10, 76, 76, 22, 95, -23, -37, -105, 120, -87, 92, -47, -57, -89, 22, -4, 124, -50, -23, -66, 27, 60, 51, -41, -1, 12, -32, -41, -12, -112, -114, 119, -98, 122, -37, -32, 63, 61, 107, -89, 1, -4, -28, -28, 118, -78, -12, -100, 99, 112, -26, -94, -10, -55, -29, 27, 98, -95, 122, 81, -92, -96, -84, -128, 112, -108, -128, 112, 1, -16, -126, -77, 101, -70, -69, 85, 85, 27, -78, 76, 96, -24, 12, 18, -49, -95, 92, -95, 80, -53, 64, 95, 2, -85, -65, -7, 59, -74, 9, 64, -99, 87, -17, -26, 76, 0, -104, 111, -53, -3, -3, -73, 94, 76, -34, -14, -115, 83, 47, 89, -74, -92, -11, 1, 7, 14, 57, -45, 29, 112, 0, 55, 106, 91, 106, 60, -125, -28, 100, 69, 3, 48, 15, -128, -28, -121, -64, -86, -2, 55, -23, -35, -2, 74, -64, 49, 11, -64, 38, -114, 67, 119, 75, 76, -86, -97, -37, 32, 53, 54, 68, -123, -9, -2, -110, -80, 36, -68, 55, -112, -128, 19, 56, -9, 51, 22, 1, 84, -54, -112, -43, 45, 58, 90, -42, -24, 80, -82, 100, -9, 109, -35, 87, -23, -99, -52, 91, 121, 0, -90, -49, 65, -42, -14, -74, -58, -116, 48, -61, -12, -112, -99, -65, 93, -55, -98, 73, -66, -1, -62, -33, -81, -70, -10, -64, -85, -91, -95, -91, 45, -54, 35, -83, 13, 56, -82, 45, 70, -38, 104, 69, 11, -113, 83, -111, -89, 38, -113, -34, 113, -77, 66, 13, -106, 50, 24, 122, 119, 12, -22, 91, -5, 38, 10, -69, -68, -29, -52, -9, -78, 32, 21, -67, -6, 55, 60, 51, -3, -114, -35, 51, 0, 11, -68, 103, -110, -65, -1, 127, -29, -119, 124, 16, -64, -77, -83, -117, -92, -79, -6, -71, -62, 21, 114, -120, 59, -119, -25, 33, 114, 62, -9, 74, 83, 103, 105, 93, -91, 73, 70, -63, -108, 32, -41, 36, 72, 36, -114, 41, 80, 121, 127, 118, 95, -45, 80, -23, -42, 92, -110, 62, 49, -72, 83, 127, -35, 59, -58, 2, 0, -70, -49, -86, 50, -51, 85, 65, 52, -77, 108, -1, 59, 55, -21, -18, 111, -111, 100, 34, 38, -122, 109, -127, 49, 72, 96, 76, 38, 28, 9, 50, -122, -48, 111, 127, -106, 127, -123, 82, -10, -10, -4, -59, -30, -94, -29, 79, -47, -1, -106, 72, -42, 113, -87, 100, 42, 24, 8, 113, 40, 20, 41, 12, -67, -124, 64, 48, -32, -35, -104, 54, 0, -58, -69, -50, -108, 64, 25, 0, 49, 57, -101, -97, 40, -25, -28, -83, -101, -33, -96, -49, 12, -12, 24, -69, -67, 38, -47, -24, -53, 62, 101, -51, 4, -62, 31, 108, -3, -5, -38, -122, -37, 55, 126, 115, 36, -29, 108, 33, 7, 57, -14, -37, 115, 34, -127, 83, 22, -119, -30, -87, 53, -60, -98, 3, 16, -64, 11, 76, 97, 2, -107, 113, -45, -36, -75, 73, 53, 94, -37, -82, 26, 123, 0, -100, 12, 96, -119, -41, 39, 86, -68, 31, -93, 30, 116, -3, -49, -100, 89, -109, -1, 87, 43, 93, 2, 112, -62, 119, -60, -58, -37, 99, -124, -69, 58, 72, 56, -16, 83, 47, -6, 28, 36, 109, 48, -104, -114, -23, -116, -71, 39, 96, -122, 81, -20, -92, -22, 3, -85, 104, -23, 57, 0, 109, 0, -8, 110, 53, 111, 56, -10, 31, 4, -72, -65, 83, 14, 45, -86, -27, -91, -50, 0, -57, 55, -15, 4, -68, -59, -112, -47, 41, -19, 75, -24, -22, -26, 49, 67, -19, -13, 126, -117, 56, 13, -48, 67, 103, -66, -8, -86, 30, 11, 102, -122, 89, -4, -16, -111, 103, -78, -49, 36, -1, -66, 31, 126, 57, -128, -45, -78, 120, -3, -93, -55, -11, -1, 43, -71, -90, -7, -72, 99, -22, 23, 4, -105, -38, 88, -9, -50, 64, 18, 64, 61, -128, 44, -128, 74, 21, 0, 60, 35, -80, 57, 67, -65, -61, 123, 101, 18, 125, -27, 83, 124, 22, -16, -9, 63, -2, -79, -41, -77, -87, -33, 64, 95, -39, -72, -57, 34, -52, 90, 83, -88, -104, 31, -99, -65, 96, -66, 36, 75, 18, 114, -71, 44, -6, -6, -121, -77, -101, -69, 71, 126, -6, -56, 11, -37, 119, 3, -88, -13, 103, 97, -101, -66, -1, -87, 110, 75, 51, 59, 116, -5, -54, 46, 85, -107, -69, -70, -20, 97, -33, 28, 34, -104, -42, 108, 101, -35, 104, 105, 44, 38, -13, -49, -49, -115, -120, -13, 27, 67, 82, 107, -128, -25, -93, -118, -56, -69, 37, 33, 28, -96, -103, 54, 44, -101, 21, 84, -37, 90, -97, 81, -83, 95, 109, 75, 105, -81, -5, -2, 123, 123, 22, 0, -52, 76, -48, 47, 63, -61, 88, 44, -5, -52, 63, 14, -56, 35, -59, -110, 50, -78, 107, -41, 91, -118, 32, -20, 60, 54, 94, -69, 120, 81, 67, -3, -46, -50, -70, -122, 5, 97, 89, -118, 18, 16, 2, 30, 32, 12, 16, 5, -114, 48, 66, -75, -73, -5, -10, -3, -21, 35, -35, 59, -97, -15, 29, 107, 26, 64, -52, 119, -66, -6, 96, -34, -22, -15, -55, 103, 1, -97, 5, -85, -21, -41, -77, -128, 13, 72, 111, 14, 38, -123, -117, -66, -9, -48, -8, -46, -114, -70, 55, 126, -3, -7, 99, -49, 19, 77, 77, -48, 74, 37, 34, -14, 60, -89, 68, -61, 48, 120, 121, 119, -65, -86, -36, -11, -39, -37, -42, -84, -4, -31, 23, 78, -114, 93, 124, 122, -8, 36, -109, -95, -75, -29, -78, 123, 126, 82, 117, -114, 30, 113, 93, -9, -51, 111, 102, 14, 16, -99, -21, 46, 7, 10, -5, -60, -8, -8, -72, 88, 40, 20, -112, -53, -25, -81, -69, -6, -102, 107, 6, -31, -23, 31, -82, -67, -10, -34, -97, -1, -20, -50, 13, -119, 68, -30, 76, -114, -29, -121, 5, -127, 127, -39, -127, 112, 109, 124, -128, -78, 76, -13, -84, -82, -82, 121, 75, 68, 73, 114, -57, 81, 119, 49, -59, 48, -35, -120, 80, 83, 17, 110, -35, 76, 5, -106, -23, -18, -77, -3, 81, -83, -89, 28, -89, -36, 72, 83, -116, 49, 56, -117, 95, 110, 64, -120, -87, 108, -75, -102, -90, 45, 113, -78, 35, -99, 5, 96, 23, -2, 116, 98, 127, 14, -2, -111, -1, -5, -9, 19, -20, -58, 11, -93, -56, -25, 13, -46, -44, 18, -126, 40, -14, 16, 121, 19, 63, -7, 116, 7, 103, -103, -122, 59, 15, -8, -34, 83, 9, 19, -64, 91, -5, 45, 113, -13, -9, -50, 36, -19, -111, -38, -16, 114, 38, 73, 103, -107, 51, -23, 51, 7, -69, -69, -99, 27, -84, 124, -115, 77, 25, -94, -75, 35, -18, -51, 71, -54, 56, 11, -106, 49, 74, 25, 118, -91, 83, -39, 45, 1, -123, -33, -96, -105, -44, -51, -33, 127, -99, -114, -69, -57, 61, 63, 68, 4, 73, 38, 4, 0, 33, 46, -108, -31, 58, 4, -34, -16, -20, 36, -3, 83, 95, -65, 3, -80, 42, -106, -91, 62, 118, -33, -3, 91, -68, -79, -24, 12, 0, 105, 111, 63, -21, -51, 49, 43, -66, 121, -66, 57, 13, 4, -58, 14, 5, -100, -83, -18, -13, -3, 125, -67, -17, -79, -24, 91, 112, 102, 85, -48, -102, -31, -33, 122, 102, -7, -53, -23, 7, 55, -3, 54, 3, 4, 52, -21, -116, -29, -77, 24, 7, 68, -49, -86, -57, -75, -22, 107, 78, -1, 56, 87, 61, -81, -32, 1, -112, 42, 39, 57, -4, -24, -79, -67, -87, 68, 70, 91, 125, -59, -71, -13, -50, -81, -73, 120, -92, 13, -118, -79, -116, -66, -43, -5, -97, -75, 25, -100, 69, 40, 28, 77, 11, -46, 122, 16, -19, -44, 24, -90, -86, 106, -63, -55, -110, -104, 4, -80, -83, 10, -74, -30, -32, -55, 87, -105, -90, 111, -21, -81, 115, -77, 26, -102, -99, 37, 56, -53, -86, -10, -87, 103, -2, 44, -41, 21, -17, 58, 40, 9, 32, -76, 39, -113, 94, -57, 86, -58, 100, -76, 47, -88, -63, 73, 29, 17, 28, -33, 20, -62, -100, 120, 0, -79, -112, 12, -39, 101, 82, 93, 124, 124, -65, -93, 3, 17, 108, 80, -114, -125, -63, -120, -91, -103, -100, -103, 81, -111, 77, 20, 89, 98, 32, -115, 61, 61, 9, -70, 101, 44, 71, 123, -4, 25, 103, 61, -45, 61, -77, 125, -65, 13, -121, 9, -107, -29, -79, -57, 30, -69, -1, -84, -77, -50, 90, -75, 97, -61, -122, -53, -99, -101, 112, 43, -100, 104, -96, -53, -100, 108, -76, -115, 77, 77, 77, 36, 22, -117, -71, -127, 20, -68, 108, -29, 110, -1, 62, 5, 7, -108, 74, 37, 119, -95, -36, -71, 89, -89, -11, -11, -11, 13, 56, 55, 43, -42, 59, -29, -40, 19, -78, 44, -65, -16, -28, -109, 79, 50, 124, 64, 58, -3, -73, 43, -17, 95, -3, 55, 103, -84, 26, -33, -74, -3, -14, 80, 67, -3, -118, -70, -74, -114, 101, -114, 53, 70, -38, 58, -120, -40, 48, 7, -104, -126, 106, -59, -120, 31, -97, 4, 50, 73, 96, 116, 4, -107, -63, 94, 109, -94, 103, -9, 64, -70, 111, -49, 122, 53, -101, 125, -126, 23, -59, 23, -50, -72, 127, 21, 59, 74, -128, 97, -41, 119, -65, -5, -99, 85, -97, -70, -20, 111, -44, 117, -21, -42, 95, -71, -69, -73, 63, -73, -24, -8, 19, 72, -84, 125, -98, 92, 54, 44, -7, -75, 23, -98, -41, 71, -6, -9, 21, 55, -83, 121, -31, -41, -39, 84, -14, 24, 0, 93, -66, -75, -90, 81, 31, -120, 14, 111, 95, -9, 95, 15, 86, -11, 83, -43, -13, 74, -26, -5, -116, -123, -65, 36, 17, 18, 67, 70, -121, 3, -49, -98, -120, -69, 58, 39, 112, 4, 100, -108, 49, 104, -24, -42, -55, -95, -88, 2, 81, 17, -128, -96, -47, -119, 63, 31, 81, -25, -36, 83, -90, 110, 22, 18, 66, -16, -25, -68, -17, -107, -107, -62, 83, 85, -80, 28, -47, 119, 77, 21, -12, -51, -11, 101, -17, 117, -8, -6, 52, 29, -128, 81, 21, 68, -61, -14, -103, 93, 53, -106, 86, -49, -15, -56, -5, -11, -25, 78, -92, -33, 115, -73, -18, 77, -64, 96, -40, -124, -125, -44, 109, -125, -39, 29, 0, 118, 124, -85, -114, -5, -105, 32, -63, 5, 10, -63, -39, 10, -113, 83, 101, -54, -26, -117, 28, -119, -13, 96, 16, 24, 5, 15, 14, 28, 121, 111, -97, -72, -5, 6, 47, -29, -75, -55, 36, -90, -76, 57, 83, 66, -97, -51, 65, -30, 5, 24, 0, -88, 13, -40, -5, -41, -80, -36, -83, 69, 1, -109, -78, -110, -63, -40, -80, 110, 99, -117, 70, -39, -38, 10, -61, -86, -37, -77, 70, -1, -95, -6, 127, 126, 27, -40, -4, 99, -32, -73, -73, 1, 127, 13, -32, -39, -17, 30, 6, 76, 63, 9, -68, -7, -85, 53, 56, 55, -105, -19, -71, -21, -100, -113, -12, -100, -35, -39, 126, 12, 2, -63, 22, -24, 38, -59, -24, -16, 54, -21, -83, 77, -7, -43, -81, -82, -59, 29, 43, 25, 94, 57, 120, -89, 23, -117, 50, 38, 10, 28, 7, -62, 24, -3, -123, -90, -22, -65, -46, 84, -125, -49, -25, -14, 28, 92, -66, -43, -26, 56, -114, -25, 24, 99, 4, -108, -127, 122, 115, 33, 71, 28, 37, 96, -124, -126, 114, 100, 127, -50, 100, 10, -62, 56, -54, 81, 27, 4, -124, -38, -52, -33, 36, 40, 15, 48, -54, 17, -114, 80, -50, 101, 26, 121, 103, -97, -70, -12, -83, -13, -3, -18, -35, 72, -9, 91, -90, 46, -47, 9, 33, 108, 79, 111, -17, 107, -124, -30, 85, -58, -39, 54, -95, 2, 5, -88, -53, -98, 16, 87, 54, 7, 16, 27, 71, 87, 5, 7, -106, 93, -11, -12, -45, 79, -65, 103, 65, -33, -7, -15, 65, 56, 116, -80, 84, 42, -11, 14, -128, 5, -47, 104, -12, -26, 112, 56, 124, -67, 40, -118, -127, -87, 64, 27, -2, 76, -76, 126, -104, -106, 49, -26, 66, -98, -122, 97, -12, 59, -10, 13, 74, -23, 51, 83, 115, 81, 103, 94, 97, 106, -102, 102, 121, 80, -87, 103, 31, -120, 84, -58, -104, 65, 8, -111, 44, -37, -122, 89, 46, 77, 69, 54, 119, 97, -39, -118, -90, 2, -34, 99, -65, 3, 71, 69, 85, 93, -125, 35, 127, 31, -56, 113, -100, -21, -44, -22, 124, -42, -5, 14, -35, 125, -99, 25, 6, -120, -90, 77, -67, 111, -86, -98, -10, 2, 40, 96, 102, -103, 21, -75, -78, -58, 113, 122, -24, -68, -14, -54, 47, -117, -106, 109, -67, 111, -74, -17, -11, 27, -34, -62, 108, 117, -1, 3, 15, 97, 54, -70, -8, 19, -105, -50, -108, -35, -63, -123, -103, 120, 65, -46, -99, 58, 89, 63, -101, 118, -72, 27, -48, 29, -69, -10, -68, 97, -13, -59, -2, -28, -24, 13, -83, 113, -15, -28, -6, 72, 16, -78, 32, 64, 53, 45, 36, 11, 37, -20, 78, 59, -9, 71, 76, -84, -22, 7, -42, 3, 8, 77, 93, -81, -11, 76, -86, 25, 102, -110, -17, -10, -10, -113, 110, 0, 32, -3, -18, -95, -121, 123, 0, -104, -2, -75, 40, 111, 31, -45, -84, -53, 114, 31, 68, 118, 18, -61, 48, 94, 86, 85, -11, 61, -89, 6, -24, -70, 62, 106, 89, -42, 53, 85, -9, 7, -65, 2, -32, 30, 124, -128, -102, 124, -19, 91, -93, -115, -97, 120, 102, -79, 77, -28, -37, -111, 13, 95, -62, -121, -125, 65, 41, 40, -70, 25, -92, 76, -99, -63, 118, 51, -50, 26, -32, 72, -111, 6, 26, -57, 56, 46, 60, 1, 41, 28, 69, 77, 60, -122, -38, 88, 13, 106, 107, 34, -18, -67, 10, 65, -110, 64, -35, -79, -118, -71, -111, -61, 109, -101, 122, -29, 21, -123, 101, 88, -18, -102, -111, 106, 83, 16, 70, 33, 112, 28, 2, -110, 0, -125, 0, 21, -51, 64, 118, 50, 55, 57, 57, 56, 122, 31, -43, 43, -73, 14, -36, -4, -39, 60, 102, -48, 116, 60, 94, 38, -47, 15, 109, -9, 83, -56, 74, 0, 11, 120, -48, -84, -20, 24, 113, -52, -125, 110, -53, 124, 51, 54, -57, -1, 1, -23, -123, 95, -124, 20, 110, 64, -108, 7, 2, 34, -121, -80, 68, 16, -111, 56, 103, -97, -72, -114, -34, -126, 123, 62, -5, -114, -11, 23, 46, 83, 43, 31, -93, 5, 2, -101, 19, -29, -29, -65, -105, 68, -18, 14, 28, 97, -35, -69, -41, 124, 44, 28, 46, -97, -107, -55, -22, 79, 118, 53, -119, 13, 1, 89, 0, -13, 50, -4, 82, 70, -36, 72, -15, -90, 101, -125, 82, -128, 48, 11, -108, 113, 94, 38, 90, 3, 60, 8, 40, 1, -88, -59, 92, 16, 114, -78, 72, -111, -56, -39, 47, 101, 43, -20, -25, -113, 12, 88, 47, -4, -119, 28, 19, 121, 95, -96, 76, -55, -21, 99, -84, 104, 80, 58, 41, 94, 31, 69, 77, 88, 70, 50, -103, 71, -79, 40, 34, 90, 102, 24, 31, -33, 5, -53, 6, 64, 41, -4, -46, -51, 36, 50, -39, 113, -108, 77, 32, 91, 54, 96, 81, 6, 70, 92, 78, 22, 5, -43, 6, 81, 53, -25, -77, 123, -111, -53, -27, -95, -22, 58, 114, -7, 34, -118, 5, 27, 19, -86, 5, -58, 17, 16, 14, -32, -68, -7, 5, -47, 25, 8, 71, -63, 50, 118, 35, 124, 98, -116, -70, -26, -105, -1, -75, -60, -48, 4, -44, -18, 20, 86, -9, 60, -29, -98, -121, 35, -7, 52, 94, 36, -81, -71, -25, -76, 105, 24, -80, 121, 14, -19, -15, 70, -4, -26, -1, -4, -50, 13, -100, -89, 107, 127, -52, 64, -21, 60, -25, -66, -106, 54, 42, -96, 54, 117, 63, -13, -30, -29, -81, 97, -28, -83, 49, -68, -76, -25, 41, -16, 28, -121, 124, 41, 15, 99, 41, -113, 69, 11, 23, -52, 88, -114, 35, 36, 19, 64, 2, 64, -60, -90, 20, 101, -61, -128, 97, 51, -108, 52, -51, -51, 112, 87, -35, 73, -48, -1, 10, -36, -63, -96, -71, -27, -80, -31, 83, -7, 40, 101, -29, 103, -101, 123, -10, -82, 93, 48, -89, 117, 103, 36, 24, 60, 71, 116, 28, -82, 99, -111, -24, -62, -40, 49, -47, 38, 2, 68, 9, 67, 47, -128, -68, 69, -23, 14, -54, 88, -42, -78, -83, 65, -58, 64, 44, 106, -25, 29, -32, -87, -41, 55, -65, -103, -23, -38, -123, -64, -79, -74, -122, -122, -70, 120, 36, 122, -114, 3, -94, -98, -17, 56, 65, 94, -94, 72, 98, -83, 105, -37, 24, 74, 36, -74, 58, -16, -20, 63, -18, 30, 25, -34, 122, 36, 50, -105, 121, 89, 101, 109, 15, -54, -46, -6, 82, -109, -49, 1, 120, 17, 0, -73, -68, -75, 45, -70, -80, -79, -15, -20, -120, -94, 92, 18, 13, 40, 109, 95, 56, -19, -116, -7, 32, -60, -12, -83, -31, 26, 54, 101, 3, -126, 40, 46, -14, 82, -122, 43, -78, 36, 47, 112, 3, 113, 114, -60, -42, 29, -16, 118, 104, 112, -24, -18, -2, -55, -119, 123, -34, 26, -20, -17, 3, -96, -69, -32, -28, -111, -53, 62, 43, 100, 11, 86, 75, -87, -124, -17, -76, 52, -123, 27, 43, 69, 13, -5, -6, 39, -10, -58, 91, -8, -113, 115, -68, 48, 10, -64, -10, -96, 88, 62, 42, -117, 13, 29, -115, 117, 87, 55, -49, -119, 33, -109, 42, 98, -33, 120, -26, 46, 7, -98, -19, -81, -126, 103, 93, 56, -74, -85, -82, -10, 26, 74, -124, 56, -43, 12, -20, -36, -34, -17, 64, -112, -119, 27, -9, 100, 11, 15, 123, 107, 45, 98, 62, 103, -50, -105, -126, -95, 83, -93, -15, 26, -20, -21, 25, -57, 68, -66, 124, 71, 87, 87, 112, -37, -111, -56, 62, 11, 32, -32, -24, -17, -54, 21, 13, -59, 82, 113, 29, 3, -101, 4, -32, 84, -79, 120, -78, 11, -108, 107, -38, 38, 74, -87, 48, -61, 119, -72, -32, -87, 40, -16, 55, -123, 35, -31, -27, -7, 108, 46, 87, -86, -108, 31, 1, -96, 58, -64, 45, -11, -67, 71, 42, -107, 43, 95, -116, -57, -30, 75, 38, 38, -109, -81, 11, -126, 48, 113, 56, -39, 56, 21, -103, -113, 6, -60, -54, -113, 42, 101, 21, 59, -69, -69, 7, -53, -27, -30, 27, -34, 57, 45, -88, -23, -98, 19, 70, -122, 22, -94, -112, 43, 84, -30, -15, -6, -26, -79, -47, -47, -39, 28, -117, -97, 55, 39, 112, 98, 67, 67, -12, -122, 108, 38, -125, -79, 29, 35, 69, 93, -41, -41, 1, -80, -90, -78, -35, 70, 20, -5, -26, 66, 46, -113, -111, -31, 97, -27, 96, -22, 62, 98, -91, 91, -26, -50, 105, -8, -31, -121, -106, 117, -95, 37, 38, -127, 42, -11, 72, -85, 34, -34, -39, -10, -44, -29, 28, 23, -56, 116, -60, -8, 27, 78, 57, 46, -114, -90, -42, 86, 84, 114, -93, 72, -90, -14, 25, 63, 68, 90, 45, -119, -86, -127, -106, -6, -64, -113, 79, 56, -15, 56, -91, -83, 94, -126, 18, 109, 64, 111, -49, 0, 118, 13, -115, -65, 82, -120, 30, -13, 53, 0, 101, -25, -77, 116, -22, 119, 73, -76, -14, -43, 15, 29, -33, -2, -59, 101, 75, -70, 16, -24, 56, 29, 125, -29, -109, -56, -28, -118, -113, 2, 53, -6, -20, 6, 50, 26, 59, -9, -44, 69, -49, -75, -76, -76, -58, 26, -22, 99, 45, -47, 112, 8, -113, 61, -15, -12, -90, -66, -92, -7, 61, 0, 22, 99, 76, 57, -25, -92, -50, -25, -101, -102, -25, 52, -55, -78, 52, -105, 23, 68, 12, 14, 13, -65, 115, -128, 58, 34, 109, 49, -15, 27, -57, 45, -18, -4, -78, 40, 42, 118, 123, 91, -13, 98, -117, 73, 120, -27, -75, 117, 47, 118, -9, 103, 62, 3, 64, 119, -53, -18, 3, 110, 59, -22, -123, -122, 57, 115, -102, 30, -18, -22, -100, -41, -39, 54, -73, -71, -103, 99, 20, -67, -61, -87, -69, 15, -31, -6, -115, -117, -124, -62, -117, 69, 73, 126, -80, 109, -34, -4, 101, -95, 80, 24, -123, 76, 6, -13, -70, -26, -109, 98, -71, -116, -47, -111, -127, -83, -44, 54, -9, -60, -21, 27, 126, -39, -40, 50, -9, 83, -15, 88, 3, -38, 59, 59, -63, 11, 2, 116, 93, 115, 51, 77, -107, 29, 3, 33, -48, 53, 13, -71, 74, 22, 14, 116, 11, -25, 126, 43, 50, -23, 20, 106, 106, 107, -48, -44, -46, -118, -84, -77, -81, 22, -46, 79, -26, 115, -103, -97, 30, 42, 64, -21, -121, -70, 63, 118, -31, -123, 23, -43, -43, -42, 94, 94, 87, 95, -1, 87, -87, -55, -92, 61, -48, 63, -16, -11, -73, 54, -66, -7, 102, 83, 115, 115, -8, -124, 15, -99, -8, -77, -102, -38, -38, -29, 9, 88, -57, -40, 120, -30, 89, -25, -7, -43, 0, -84, 3, 124, 31, 127, -46, -55, 39, -49, 107, -101, 59, -9, -89, 97, -121, 56, -116, -59, -29, 103, -116, 12, 15, -95, 123, -5, -114, -17, 111, -39, -14, -50, -53, -17, 83, 86, -2, -44, -45, 79, 59, 86, -106, -107, 79, -37, -74, 13, -75, 88, 124, -33, 76, -106, 94, -10, 87, -61, 113, -102, -34, 29, -46, 113, 69, 118, 40, 119, 73, 33, -111, -69, -71, -74, 53, 54, 79, 8, -56, 8, -43, 6, 33, -54, 18, -126, -95, 16, -64, 17, 80, -117, 66, -43, 52, 119, -34, 32, -120, 2, 8, 33, -82, -13, 51, -31, 9, -100, 115, 25, 90, 89, -123, 101, 88, -114, 25, -96, -90, -19, -66] astore_1 aload_0 ldc literal_1289:"__e7-48.png@253952" aload_1 invokevirtual java.lang.Object put( java.util.Hashtable, java.lang.Object, java.lang.Object ) // pc=3 pop arrayinit [95, 43, 105, 41, 61, -85, 62, -88, -104, -14, 93, 17, 82, -21, -126, -125, -50, 113, 41, 14, 81, -63, -112, 60, 25, 111, -114, -63, 50, 40, 38, -110, -109, -32, -119, -128, -6, 57, 113, 24, 89, 117, 109, 118, 44, -7, -120, -111, 82, 87, -66, -68, 102, -29, 16, -114, -126, -46, -61, -103, 13, 124, -103, -35, 105, 70, -12, -37, -88, 105, 75, -123, 108, 126, 45, 31, -28, 63, -4, -30, 67, 127, -72, -24, 99, -25, -99, 30, -125, -89, -61, -124, 104, 119, -82, -8, -4, -115, 31, 78, -91, 51, 95, 113, -50, -87, -17, -58, 99, 117, -79, -102, 104, -40, -11, 91, 102, -44, -51, -20, -22, -20, 51, 24, -90, 13, -127, 39, 110, -80, 112, 93, 55, -95, 51, 11, -124, -64, -123, -101, 25, -40, -2, -21, 50, -53, 66, -79, -88, -94, -20, 102, 115, -54, -83, 43, 20, -53, -41, -82, -2, -65, -73, -17, -128, -93, 75, -82, -70, 101, -98, 77, -19, -77, 25, -91, -93, -49, 63, 120, -53, -53, 120, 31, -11, 116, -17, 11, -60, -62, 18, 36, -127, -128, 23, 120, 112, 28, 15, 85, -73, -112, -49, -85, 96, 0, 42, -102, 5, -114, 0, -110, 11, 35, -120, 8, 84, 68, -24, -86, -123, 72, 72, 64, 77, 68, -60, 120, -126, 34, -96, 112, -32, 121, 64, 83, 109, 55, -69, 108, 62, -91, -63, 54, 40, -64, 24, 76, 106, 67, 9, 114, 8, 69, 5, 64, 36, 40, 21, 116, 88, 54, 69, 73, -91, -56, -26, 45, 100, 75, -90, 89, 40, -39, 59, -100, 99, 62, 78, 25, 30, -36, -34, 87, 26, -63, -31, 75, 106, 109, 9, -99, -42, -38, -46, -15, 119, -103, -12, 48, -122, -121, 118, 118, 87, 84, -85, 24, -85, -107, 63, 17, -110, 37, 113, 120, 112, -69, 51, 84, 22, 95, 7, 96, 28, 6, -92, -53, -121, -126, 66, 125, 75, 92, -2, -127, 68, 104, 124, -96, 111, -21, 112, 46, 59, -70, 10, -128, 54, 85, -122, 72, 88, -4, 100, 125, 60, -42, -106, 79, -113, 56, 67, 112, 62, 123, 4, -41, -16, 68, 25, -38, -39, -7, -55, 97, -20, -35, -73, -17, 15, -71, -126, -11, 52, 0, -14, -47, -77, 78, 58, 81, 17, -123, 88, -95, -112, -75, 75, -91, -14, -106, -9, -23, -89, 37, -67, 52, -7, 105, -85, -108, 20, -69, -9, 13, 108, 55, 109, 113, 45, 0, -77, 42, 75, 45, -65, -20, -72, -82, -10, -50, -42, -90, -21, 25, -75, -52, 98, -95, -14, 24, 0, -21, -80, -95, 89, 111, -83, -89, 35, -40, -44, 73, -63, 56, -127, -16, -53, -27, -42, 121, 63, 54, -77, -103, -35, 9, 43, -67, -37, 123, -97, 8, 64, 106, -108, -21, 26, -94, 114, -12, 10, -87, 121, -2, 63, 106, -29, -67, -93, 81, 49, 36, -67, 125, 71, -71, 114, -44, 32, 90, 15, 106, 109, 111, -84, -119, -51, 107, 109, -72, -67, -71, -87, -31, 2, -62, 97, 78, 127, -49, -34, 71, 43, -102, 54, 126, -18, -121, -26, -33, -37, -66, -96, -21, 12, 73, 9, 32, -97, 73, -101, -55, -126, -6, -126, 91, 111, -121, 46, -2, -61, 11, -101, 63, 82, 31, -117, -4, -76, -83, 107, -34, 9, 82, 48, -128, -63, -66, -63, -51, -101, 123, 18, -85, -105, -76, -57, -37, 90, 26, 98, -1, -42, 58, -81, -19, -124, 80, 32, 16, 41, 23, -117, -88, -24, -58, 75, 0, -52, 67, -52, 62, -37, 24, 111, 108, -6, -127, 18, 12, 98, 114, 120, 80, 51, 44, -13, -58, 117, 119, 124, -23, -41, -83, -117, 22, -97, -88, -106, -118, 40, 102, 51, -9, 127, -20, -90, 71, -9, 96, -106, 10, -121, -61, -9, -43, 53, 54, 41, -103, -15, 49, -24, -106, -11, -43, 53, -73, 126, -10, -14, -122, 57, -83, -97, -46, -54, 37, -28, -77, -103, 95, 92, 120, -53, 19, 79, -31, -125, -47, -21, -108, 82, -52, 70, -108, -46, -69, 74, -91, -46, -25, 21, 69, -111, 52, 77, 51, -114, 114, 22, 90, -17, -98, -18, -127, -27, -36, 79, 95, 121, -20, -79, -57, 54, 51, -58, 86, 57, 48, -19, 121, -50, -29, 73, -52, -96, -111, -111, -111, 123, -38, -37, -37, -115, -9, 32, 90, -25, 62, -2, -75, 94, -58, -39, -110, 115, 127, 126, 15, 14, 95, -44, -87, 19, -90, -21, -70, -8, -36, 115, -49, -111, -117, 47, -66, -104, -31, 32, 116, 103, -42, -52, 2, -114, -7, 110, -11, 29, -94, -120, 51, -25, 19, -17, -66, -5, 110, -10, -47, -113, 126, -108, -30, -65, -89, -40, 52, -5, -84, -44, 95, 41, 36, -57, 50, 119, 75, 60, -18, -116, -44, -56, 110, 61, -22, -70, -123, 92, 78, -51, 12, -18, -50, -36, 80, 28, 80, 95, -87, -14, -23, -111, 125, -26, 11, 90, -20, -118, -7, 3, -40, 123, -90, -63, 49, 91, 99, -114, 89, -70, 54, 105, -23, -17, 110, 28, -40, 90, -84, 20, -17, 110, 106, -87, 89, -96, 4, 37, -105, -51, -96, 22, -121, -60, 68, -2, -66, -66, 39, 71, 123, 102, 8, -34, 94, -51, 88, -111, -87, 109, 53, 64, 106, 24, -122, -18, 4, 113, -65, -1, -35, 119, -33, 125, -90, -85, -85, -21, -29, 78, 27, -66, -60, 9, 18, -69, 60, -30, 72, 81, 20, -41, -25, -60, 15, -45, -62, -111, 63, 80, -85, -13, 121, 55, 96, -114, 3, -19, 37, 28, -67, -23, 0, -71, -65, 119, -64, -15, 13, 0, 116, -65, -1, -50, 1, 120, 23, 122, 40, -27, -33, -106, -78, -121, 28, 27, -11, -77, 70, 113, 30, -29, -115, 2, 65, 119, -38, 44, -67, 49, 102, -18, -104, 122, -34, -73, -34, -56, 77, -5, -5, 109, -90, -17, 76, 91, -17, 2, 48, 79, -119, -21, 37, 78, -89, -40, 58, -86, -113, -65, 62, 106, 110, 1, 96, -8, -52, 58, -56, -14, 67, -41, -115, -79, 84, 58, 109, -27, 50, 57, -63, -87, 102, -92, -45, 41, 72, -94, -32, -50, -27, 100, 55, -48, -112, -18, -50, 21, -99, -96, -97, 40, -106, -53, -121, -60, 110, -67, -4, -22, -38, -124, -64, -13, 55, 12, 13, 13, -1, 48, 20, 10, 66, -106, 36, 82, 46, 87, -112, 47, 20, -10, 21, 75, -27, 11, -97, 95, -3, 90, 18, -114, -26, -50, 105, 25, -85, 111, -120, 45, 10, 42, 65, 4, 21, 9, 122, 40, 4, -53, 52, -36, 36, 32, -3, 3, 3, 24, 30, 26, 126, -12, -112, -41, -127, -82, -100, 119, 74, 75, -57, -126, -21, 59, -25, -49, 91, -111, 28, -20, 67, 118, 50, 109, 113, 28, 71, -32, -45, 47, -65, -40, -39, 30, -81, 111, -68, 106, 98, -96, 31, -39, 92, 25, 21, -75, -78, 117, -58, -32, 78, 95, -102, 127, -6, -36, -74, -74, 43, 18, -50, -5, -99, 12, -13, -113, 99, 26, 9, -100, 114, 81, 106, 120, 12, -119, -31, -111, 1, 28, 25, 17, 61, 108, -43, 88, -122, 21, 81, -94, -54, -60, -26, -121, -42, 107, -16, -55, 27, 51, -122, 1, -84, 58, -7, 51, 103, 4, 121, 34, -121, 3, -126, 100, 10, -110, 72, 69, 89, -76, 69, 81, -92, -124, 35, -16, -60, -64, 59, 22, -8, 99, -5, 119, -128, 89, -118, 106, -55, -124, -94, -122, -29, 1, -40, -70, -86, 11, 56, 8, 121, 96, -21, 31, 48, -67, -18, -70, -17, -33, -1, 99, -71, 36, -119, -41, -120, -110, 120, -71, 40, -120, -15, -87, -32, -66, 110, 82, 41, -53, 76, -101, -122, -7, -97, -122, 97, -2, -26, 11, 87, 93, -71, 13, 71, 72, 2, -114, -126, 120, 81, 40, 114, -32, 33, 43, 65, -40, -68, 5, -98, 23, 33, 42, 114, 25, 71, 71, -43, 52, -68, 63, 26, 48, -90, -55, -94, 96, -8, -100, 18, 37, 63, -44, -29, 119, -8, -9, -10, -67, 14, -55, -107, -107, -38, -109, 51, 28, 123, 62, -74, -92, -90, 46, -36, 81, 51, 47, -48, -39, 60, 47, 29, 36, 13, -102, 65, 5, -37, -80, -122, 121, -62, -9, 22, 75, -38, -117, -101, 30, -38, -70, 110, -102, 14, -120, -31, 104, -85, 6, 10, 100, -100, 97, 106, 54, -44, 50, 76, -108, -112, -62, -97, -71, -74, -17, -51, -37, 64, 126, 37, -128, -107, -105, 94, -72, -76, -122, 81, 122, 66, 54, 39, 29, -93, 4, 2, 11, 100, -127, -81, 49, 109, -118, -118, 90, -52, -105, -118, 90, -81, -82, 25, 123, -14, -7, -30, -114, 23, -1, -48, -109, 57, 26, 109, 104, -122, 54, 69, -85, -78, 74, -79, -23, -78, -37, -8, -128, 36, -35, 23, 29, 78, -11, -100, -77, 21, -97, 83, -73, -100, -44, 82, -119, -81, -19, -70, 113, -13, -19, -95, 95, 29, 123, 122, -20, 67, 11, 107, 89, 77, -115, 69, 77, -69, 87, 31, 28, -37, -110, 127, 119, 107, -39, -86, -20, 0, -112, -10, 57, -74, -22, -45, 56, 117, -77, 105, -54, 68, 124, -47, 34, -32, 125, -50, -14, -103, -31, 43, 99, 121, 42, 34, -120, -33, 17, 93, -45, -116, 68, -1, -32, 68, -81, 99, -118, -94, 72, 17, 73, -28, -29, 60, -49, -43, 118, -76, -43, 43, -47, 104, 72, 102, -116, 51, -58, -57, -45, -87, 116, -74, 52, 76, 8, -21, -55, 100, 75, 3, 0, 114, 94, 57, 75, 62, -40, -47, -98, 69, -37, 39, -43, -5, 51, -63, 85, -77, -51, -114, -12, -10, 16, 27, 124, 123, -56, 78, 1, 120, -87, -91, -82, -36, -36, 24, 33, -115, -13, -30, 100, -82, 34, 65, 105, -82, 81, 99, 54, 5, -25, -26, -125, -27, 25, -88, 13, -120, 2, 99, 34, -49, 17, -123, -93, -88, -40, -4, 120, -74, 68, 119, 60, -68, 17, -65, 61, -116, -10, 68, 111, -8, -39, -101, 99, -97, -7, -60, -62, 75, 63, 126, 102, -37, 15, 66, -95, -48, -25, 37, 89, 8, 103, 39, 51, -40, -79, 97, 111, 98, -49, -120, 118, -73, 87, 103, -68, -49, -4, 0, 52, 95, 5, -74, 41, -108, 66, 26, 77, 25, -61, -114, -15, -40, 47, -22, -5, 79, 53, 95, -108, 23, -51, 51, 63, 112, 106, -8, -38, -87, 53, -11, -39, 89, -12, -87, -43, 89, 11, -3, 14, 36, -2, -74, 47, 2, -48, 124, 125, 106, 17, -128, -20, 7, -100, -69, -57, -75, 68, -9, 56, -34, -2, 99, -65, -86, -109, 63, 58, -97, -21, -102, -81, 61, 22, -31, 108, 61, 43, 87, -3, 22, -21, 0, -32, 108, 53, 76, 37, 86, -127, -101, 33, -49, 106, 60, -117, -115, -18, 53, 66, -114, -67, 17, -82, -29, -57, -93, 113, 126, 126, 32, 76, 26, 77, -99, 33, -97, -78, -51, 98, -38, -90, -108, 34, -20, 126, 41, -113, 98, 52, -58, -105, 107, 27, 121, -103, 23, 8, 85, -117, 116, -68, -112, -79, 123, 74, 57, -38, -25, -43, -7, 49, -34, -71, -102, -13, -54, 91, -12, -3, 7, -90, -49, -90, -87, -49, 89, -73, 127, 24, 58, -13, 79, 94, 1, -101, 49, -114, 3, -13, 98, 65, -110, -34, 110, 51, -39, -37, -115, -33, -127, -96, 102, -23, -119, -14, -46, 112, 13, 107, -88, 111, 54, -38, -126, -63, -112, 98, 40, 102, -104, 50, 27, -70, 42, -105, 44, -45, 50, 19, -61, -30, 120, -87, 64, -46, -35, 91, -116, -67, -128, -107, -37, 111, -56, 84, -99, 99, 51, -22, 112, -21, 31, 64, 3, -128, -72, 103, 117, 21, -54, -22, -98, -49, 87, -62, 47, 17, -108, 58, 69, 33, -47, 33, -117, -63, 0, 1, -97, -80, -88, 58, 96, 88, -71, -76, 101, -37, 0, 78, 0, -48, -18, -107, 53, -19, 101, -52, -54, 30, 106, -3, -5, 127, -61, 12, -80, -87, -12, 99, 51, 121, -21, -119, 92, -16, -127, 83, -72, -64, 53, 117, 28, 127, -111, 4, -60, -63, 0, 74, -32, 58, 51, -104, -128, 11, -49, 22, 96, -89, -122, 108, 99, -29, -37, 76, 125, -91, 12, 106, 0, 104, -87, 6, 15, 24, 64, -5, -11, 114, 63, 80, -18, -87, -70, 104, 81, 61, 99, -43, 86, 13, 48, -52, -30, 98, -104, -6, -127, -108, 42, -57, 46, -53, -9, -37, -52, -22, 76, -83, 7, -56, -22, 39, -8, 65, 80, -1, 13, 120, -33, 99, 41, 83, 6, -9, -3, -25, 43, -73, -99, -75, 117, -24, 68, 80, 82, -69, 45, -63, -36, -101, -87, 7, -126, 78, -85, -57, -80, 25, -128, -76, 106, -57, 53, 27, -128, -24, -21, -5, -36, -7, -36, 52, 80, -86, 92, 13, -20, -8, -54, -21, -42, -59, -102, 55, -5, -74, 36, 82, -123, 87, -113, -101, -33, -77, 40, 26, -108, 66, -7, -78, -66, 119, 71, 111, -14, -107, 93, -3, -23, -31, -86, -66, -44, -12, -61, -40, -77, -50, 50, 49, 61, 84, 67, 125, 48, -113, -23, -5, 13, -34, -68, -45, 7, 88, 121, -114, -32, -2, -52, -70, 25, -35, 102, -114, -83, 9, -28, 116, -66, 94, 17, -102, -126, 2, 39, 112, 4, -44, 109, -1, 20, -29, 37, -101, 110, 31, 46, -103, 125, -88, 46, -9, 44, 52, -61, -123, 51, -13, -107, 91, -104, 102, -18, -93, 87, 101, -128, 116, -73, 62, -109, 53, -53, -30, -73, 78, -92, 122, 29, 123, -66, 41, 56, 20, 111, -113, 70, 58, 91, 34, -31, -10, -102, -128, 28, 15, -119, -110, 82, -46, -11, -15, 125, -103, -20, -22, -11, 99, -119, -75, -66, -13, 120, -90, -64, 21, -52, -73, -83, -50, -104, 103, 123, 102, -7, -26, 100, 101, 127, -69, -16, -10, -125, 28, 71, 2, -110, -64, 7, 52, -61, 18, 125, -117, 63, -84, 123, 48, -69, -11, -98, 55, -13, 125, 60, -24, -28, 57, -117, -22, -114, 91, 54, -73, -10, 100, -115, -120, -69, -9, -91, -115, 103, 116, 112, 67, 0, -76, 127, -66, -17, -19, 1, -57, -10, -6, -26, -4, -98, 125, -80, -70, -22, -22, -85, 95, -65, -13, -50, 59, 87, 36, 39, 39, 63, 70, 8, -39, -8, -11, -21, -82, 123, 18, 85, -6, -6, 55, -82, -37, -11, -89, -124, 76, -69, 119, 118, 63, -101, -100, 76, -82, -24, -24, -20, -72, -72, -71, -87, -103, -85, -83, -83, 115, -77, 47, 120, 17, -83, -90, -78, 9, 77, 45, 94, -71, -113, -3, -103, 7, 5, -63, 59, 117, 9, 96, 26, 22, -54, -27, 18, 18, -119, 4, 117, -96, -86, -25, 38, 39, 83, -49, -30, -1, -53, -43, -51, 47, 21, -36, 54, -8, -83, 51, -46, 68, -110, 56, 34, 7, 67, -96, -90, 14, -83, -84, 67, 9, -55, -8, -10, 89, 2, -89, 25, 4, -63, -80, -116, -37, -42, -108, -24, -113, -42, -79, 33, -96, -24, 24, -36, 58, -4, -31, -7, -75, 109, -94, 32, 116, 41, -126, -40, -111, 77, 78, -120, -108, 32, 41, 72, -127, 65, 70, -83, -63, 127, 126, -66, -104, -121, 79, -33, 60, 77, 38, -68, 36, 19, 65, -106, -89, -122, -99, 41, -14, -118, 57, -16, 44, -5, 115, -71, 126, -9, 62, 91, -15, -51, 47, -117, -98, -107, 125, -48, -96, -19, 25, 61, -40, -21, -9, 25, -82, -55, 44, -1, 119, 84, -11, -3, -110, 103, 126, 112, -109, 85, 67, -76, -43, 96, -113, 111, -21, -38, 76, -32, -20, 12, 11, -49, -77, -1, 95, -90, -33, 82, -33, -79, 77, -33, 120, -84, 31, 32, -72, -126, -28, 55, -1, -68, -62, 31, -108, -93, 58, -53, -60, -67, 107, -122, 122, 85, -61, -18, 94, -66, -88, 126, 126, -47, 36, -101, -17, 90, -39, 119, 111, 21, -44, -23, 105, -42, 32, -83, 63, -80, 5, -86, -26, 124, -43, 64, -9, -108, -40, 1, -58, 65, 127, -122, 47, -22, 127, -17, 97, -36, -56, -16, -73, 119, -30, 51, -34, 95, 95, 25, 29, -101, -34, 74, -30, 89, -57, 4, 95, -3, -118, 85, -17, -13, -66, -101, 122, -33, 103, 91, -43, -13, 98, 127, 27, -13, -73, -89, -93, -107, 49, 123, -19, -38, -75, -29, 0, 126, 14, -57, -106, 47, 95, -34, 34, 8, -62, 66, 69, 81, -70, -34, -117, 96, 29, 8, 4, 26, 36, 73, -110, 29, -117, 112, 28, 103, 48, -58, 84, -53, -78, 74, -107, 74, 101, -36, -79, 65, 93, -41, 123, 109, -37, -18, 119, -78, -29, 21, -15, 39, -46, -7, -113, -65, -15, 95, -27, 95, -71, -30, -92, 22, -114, -29, 23, -14, 2, -33, -91, 4, -108, -71, -68, 36, 53, 8, 78, -7, 57, 81, -120, 0, -60, -96, -106, -83, 82, -89, -4, -90, -86, -114, 27, -122, 49, 72, 109, -69, 23, -116, -11, 95, -16, -12, -58, -93, 90, 126, -33, 124, 63, -16, -28, 19, -113, -17, 2, -16, 79, -1, -13, -86, -85, 63, -39, -45, -1, -44, -121, -117, 21, -99, 17, 65, -47, 37, -127, 55, -74, -81, 123, -27, 23, 14, 60, -85, 87, -83, 57, -108, 124, -19, -38, -33, -26, -119, 15, 68, 52, -85, 50, -80, -39, 7, -56, -118, 67, -15, -105, -90, -69, 59, -35, 72, -58, 56, -126, 50, 13, 12, -24, -90, 9, 2, 30, 1, -103, 7, -1, -1, -38, 59, 19, 40, 59, -86, 50, -113, -1, -17, -67, 85, 111, 127, -23, 45, 9, -99, -59, 108, 68, -106, 16, 54, -123, 65, 4, 84, 80, -108, -120, -116, -50, -96, 115, 92, -114, -120, -57, 1, -73, 113, -32, 56, -93, 51, 58, 2, 51, 70, -51, 120, 24, 103, 4, 101, 80, 70, 14, -114, 40, -29, -88, 4, 8, -78, 40, -127, -128, 18, 18, 18, -46, 33, 36, -99, 38, 100, -23, -12, -34, -3, -6, -11, 123, -3, -42, 90, -17, -67, 83, 84, -86, -49, -71, -89, -50, -53, 59, 109, 47, -79, -51, -68, 31, 124, -71, 47, 85, -73, -86, -18, -53, -85, -70, -9, 86, -43, -9, -1, -66, 24, -106, 114, -52, 25, -14, -34, -11, -76, -41, 19, -88, -81, -75, 109, 27, 115, 24, -1, 5, -89, 23, -19, 119, 31, -128, -4, 113, -78, -3, 75, -59, 68, -88, -81, 38, 53, -18, -57, -96, 6, -32, 9, 125, 86, -95, -118, -87, 1, 10, -43, 123, 73, -11, 121, -100, 67, 9, -94, -37, 94, -20, 88, -16, 114, -42, 124, -108, 75, 116, 3, 96, 83, 25, -117, -65, -109, 23, 37, 0, 15, 6, -122, 47, -73, -111, 54, -99, -54, 21, -70, -112, 43, 53, -118, 101, 76, -118, -91, 26, -56, 66, 70, 68, 115, 76, -46, -12, -34, -15, 106, 106, -37, -16, -104, 54, -47, -50, -79, -86, 105, 63, -36, -97, -107, -105, -73, -60, 43, 21, 7, 37, -18, -118, -94, -53, -59, -88, 87, 14, -70, 66, -10, -71, 66, 116, 59, 66, 28, -79, -92, 28, -2, -113, 28, -25, -104, 33, -2, 1, 120, -28, 95, -127, 83, 1, -60, -90, 43, 48, 56, 2, -68, 114, 95, 7, -82, -36, -47, -127, 117, 103, -84, 56, 112, 113, 83, -6, 64, -92, 84, -60, -95, -18, 94, -20, -38, 36, -79, 3, 83, -124, 82, -54, 93, 87, 19, -100, 57, -108, -70, 76, 80, 42, -71, -97, 17, 86, 10, 6, -128, 80, 74, -56, -79, -65, 3, -66, 22, -54, -1, 3, -98, -119, 99, -79, -12, 4, 36, -91, -46, -125, -54, -32, -2, 91, 106, -60, -127, -85, 17, 9, 71, -62, 71, -121, -113, 6, -121, 72, -87, 65, 72, 66, -91, -32, -124, 74, 22, -24, 37, 57, 5, 40, 9, -126, 117, -53, -119, -28, 46, -34, 122, 33, -104, 43, -91, -61, -68, -51, 92, 1, -81, -99, 82, -70, 66, -41, 33, 44, -117, 121, -91, 35, 112, -30, -88, -50, -74, -40, 72, 125, -10, -83, 4, -65, 34, -59, 98, -15, -37, -98, -67, 30, 44, -29, 6, 111, 126, -16, 1, 77, -45, -38, 9, 33, 44, 120, 57, -22, -37, -124, -125, -125, 103, 121, -57, 113, -74, 9, 33, 94, 10, 2, 84, 126, 33, 8, 60, 50, 98, -102, -26, -120, -108, 50, 19, 122, 63, 33, 49, -5, 12, 91, -106, -11, -128, -41, -18, 43, 0, 68, -62, -103, 90, 39, -61, 84, -74, 17, 66, 28, -75, 109, -5, -65, 0, -116, -96, 62, -42, -47, 35, 7, 126, -30, -40, 38, 75, -91, -101, -33, 69, 9, -119, 96, 14, 34, -92, -76, 43, -107, -14, -50, -63, -2, -18, -5, 0, 88, -104, 36, 79, 3, -101, -38, 45, 108, 89, 60, -24, -68, -73, 5, -123, -117, 52, 96, 73, 5, 24, 27, 5, 58, 14, 1, -37, 121, 56, 48, 81, 48, 110, 28, 26, -105, -5, -43, -5, -87, -102, -27, -28, 3, 20, 73, -52, 60, 95, -13, -26, -60, 43, 25, 99, 87, 112, -50, 111, 6, 48, -31, -108, -78, 12, -64, 63, 2, -2, -104, -13, 125, -100, 96, 50, -113, -66, -65, 15, -64, 71, -32, -79, -16, -49, 31, -3, 75, 67, 79, 126, -107, -90, -106, -81, 2, -45, 90, 36, -73, -9, 74, -57, -72, -105, 3, -9, 58, -84, -29, -19, 17, 103, -34, -11, 90, 52, 118, -75, 107, -70, 113, -69, 106, -93, -120, 10, 44, -81, -28, 82, -62, -78, 57, 12, -37, 25, 46, -101, -10, -128, 47, -110, -105, -128, -27, 114, 24, -106, -99, 51, -85, -26, 126, -18, -72, -5, 25, 37, -93, 4, 100, 1, -91, -92, 61, -54, -88, 65, -128, -67, 59, 63, -9, -50, 39, 81, -105, -6, 63, -54, -126, 21, 103, -93, -5, -36, 47, -63, -18, -72, 29, -116, 0, 49, 29, -120, 122, -90, 51, -32, 112, -20, 114, -20, 107, -65, 1, 98, -11, 53, -120, 104, 26, -102, 52, -126, -92, 78, -112, -118, 82, -92, 116, -22, -43, 37, -120, -8, -39, 68, -43, -121, 0, 39, 15, -37, -9, 28, -38, 6, 28, -70, 8, 51, 11, 81, -116, -34, -39, 97, -18, 0, -80, -20, 115, -25, 69, 111, 89, 54, 95, -1, 116, 123, -117, -34, 22, 99, 65, 22, 95, 9, 48, 73, 32, -123, 60, -106, -115, 86, 114, 95, 88, -53, 93, 96, -36, -26, 40, 87, 5, 6, -58, -7, -95, -34, 34, 127, 102, 95, 78, -4, -94, -89, 34, 15, 6, -17, -91, -45, -75, -98, -23, -88, 22, 94, -82, 126, -98, 98, -112, 60, -11, 89, -122, 80, -84, -11, 64, 79, -18, -121, 55, -3, -45, -125, 93, 26, -61, 2, 11, -20, -83, -108, 97, 56, 22, -45, -117, -65, -5, 93, -89, 35, -3, 88, 28, -32, 65, -32, 0, 9, -23, 11, 59, 100, 87, -25, 16, 122, 45, -96, -36, -101, -125, -65, -112, 28, -37, -67, 109, 11, 48, 67, -32, -121, 119, -1, 4, -122, 105, 65, -56, 99, -127, 81, 104, -74, -68, -76, -55, -31, 73, 74, 9, 7, 23, -106, 105, -38, -110, 81, -58, -86, -90, -69, -69, -28, -120, -57, -92, -23, 28, -122, -62, -63, -61, 61, -57, 21, 121, -101, -90, -127, -98, -2, 1, -108, -78, 89, -116, -106, -117, 16, 82, 96, -84, 82, 66, -30, -64, 65, -108, -118, 37, 8, 33, 65, 41, 65, 50, -39, -124, -52, -111, 30, -28, -13, 57, 95, -20, -20, -31, -83, 47, -6, -53, -52, 124, 30, -39, 74, -63, -81, 91, 41, -105, 49, -24, 109, -37, 55, 54, -126, -86, 89, 5, 37, 20, 69, -81, 76, -9, -69, -40, -37, 121, 0, -79, 88, 28, -75, 56, -20, -19, 103, 38, -24, -21, -19, 45, 46, 91, -66, -30, 18, 0, 103, 9, 33, -105, 87, 109, -73, -99, 115, -73, -43, -108, -92, -39, -27, 34, 13, 33, -88, -32, -100, 114, -17, 51, -47, 80, -107, 66, -40, 0, -120, -124, -9, 89, -54, -126, 16, 114, 12, 64, 22, 18, -67, 0, 94, -11, -106, 29, -59, 12, -29, -117, 63, -113, 9, -8, 50, -63, -36, -1, 33, -11, 29, -21, -38, -27, 43, 79, -113, 104, -38, 105, -108, -46, 53, 26, -91, 23, 121, -97, -41, -24, 26, 59, 83, -93, 76, 111, 111, 105, -15, 69, -55, -110, 16, 16, -81, 109, 92, -54, 34, -92, 4, 37, -44, -31, -100, 119, 105, 26, 91, 75, 61, 8, -68, -1, 40, 89, -23, 45, 79, 83, 2, 8, 0, -122, 109, -107, -78, -71, -36, 19, 21, -53, -68, -65, -77, -73, 103, -45, -60, 115, 81, -65, 61, 51, -1, -3, -100, -64, -128, 15, -68, -49, -40, 51, -48, -73, 17, -64, 38, -27, 94, -117, -84, -102, -65, 32, 121, 70, -5, -30, 53, 82, 74, 66, 8, -32, 9, -82, 78, 19, 66, -102, 85, -61, -24, -121, 20, 24, 43, -105, 7, 119, -10, 116, 15, 42, -5, -78, 125, -95, -18, -52, -61, 30, 122, -87, -8, -75, -26, -90, -28, 53, -67, 102, 30, -7, -15, 114, 102, -55, 60, -15, -83, -42, -59, -55, -95, -49, -1, -72, -49, 82, -21, 57, 50, -15, 55, 59, -122, -20, 85, 71, -115, 62, -12, 12, -28, 68, -79, 106, 116, 0, 48, -74, 28, -126, 84, -5, 7, -99, 37, 87, 119, -26, 113, -37, -72, 102, 98, 123, -17, 1, -116, -26, -118, 121, -115, 58, 59, 0, -108, -68, -70, -4, -125, -105, 34, -6, -16, -18, -46, 29, 11, 90, 100, 75, 71, -26, 0, -6, -121, -57, -47, 58, -113, -66, -78, 10, 48, -67, 99, 74, 76, 15, -30, 5, -89, -71, 46, -107, 78, -81, 50, 13, 3, -126, -117, -57, 92, -41, 29, -16, 68, -126, -85, 41, -91, -41, 27, 70, 21, -91, 74, 57, 51, 47, -107, -50, -88, -39, 103, -61, -24, -70, -2, 70, -17, 55, -7, 48, 33, 4, 21, -45, 120, -62, -37, -57, 119, -62, 94, -21, -27, 74, 101, 45, 8, -7, -122, -73, 63, 24, -90, -71, 39, -99, 76, 22, -4, 125, 78, 13, 122, -58, 34, -29, 38, -116, -65, -36, -34, -71, -27, 101, 12, 21, 18, -73, 116, 15, 90, 15, 2, -32, -85, 22, -111, 69, 48, -5, 62, -100, -39, -9, 51, 12, -116, -38, 29, 71, 50, -15, -41, 48, 57, 104, -126, 102, 111, -85, 28, 125, 66, -33, -39, -7, -24, -32, -66, -66, -8, -101, 109, -37, -99, 16, 27, -111, 115, -106, 89, -17, 115, -57, 118, -82, -19, 124, -70, 3, -61, -27, -90, 79, 76, 86, -12, 20, 100, -127, 29, 116, -5, 15, 60, 106, 39, 74, -41, -100, -79, 122, 25, -86, -91, 12, -33, -66, 125, -41, 111, 108, 45, -3, -107, 98, 108, -15, -40, -31, -111, -114, -83, 109, -117, -11, 75, -58, 19, 105, 12, 30, 60, 98, 122, -94, -58, 127, 3, 78, 57, -18, -2, 109, 26, -73, -5, -117, -28, 105, 50, 40, -81, 118, 18, -13, 97, 12, 103, -47, -79, -13, -32, -17, -115, -8, -30, -21, 56, -117, -115, 123, -57, 84, -49, 125, -31, -46, -8, 47, -113, -116, 88, 31, -115, 46, -118, -57, -8, 120, 23, -10, -66, -78, -89, 43, 103, -57, 55, 1, 112, 38, -109, 125, -74, 37, 65, -38, 82, 81, 118, -6, -94, 5, 45, 77, 54, -25, -4, -79, -57, -97, -20, 24, -52, -106, -82, 4, -120, -27, 127, -65, -85, 47, -41, 35, 17, -19, -44, -59, 75, 22, 47, -87, -108, 43, -18, 115, 91, -98, -19, -49, -116, -107, -66, 10, 16, 81, -21, -100, -45, -87, 88, -37, 20, -113, -84, -98, -33, -66, 24, -98, -64, -54, -40, -70, 99, -21, -17, 14, 14, 84, -81, 5, 96, -6, -30, -39, 16, 26, 67, 75, 42, 26, 89, -109, 78, 68, -37, 44, -45, -32, -37, 95, -36, -7, 108, -43, 18, -69, 21, -127, -15, 100, -95, -70, -90, 93, -53, -123, 104, 45, 20, 10, 24, 24, -24, -121, -53, 1, 22, -117, -95, 84, 28, 127, -51, 19, -63, -34, -96, 71, 18, 23, 25, -122, -7, -74, -95, -2, 65, 127, -98, 81, 46, -26, 1, 66, 81, 54, 42, -32, 65, -10, 36, 87, 10, 88, -114, -125, 114, -87, -116, -62, 120, 30, -124, 80, 120, 2, -89, -100, 112, -59, 107, -43, 124, 102, 27, 1, -39, -104, 29, 25, 122, 25, -128, -15, -39, -81, -4, -77, -64, 52, 120, -9, -70, 117, 107, -92, 16, 63, -41, 52, -90, -113, 101, 71, 11, 35, -125, 67, 95, 124, 97, -21, -42, 95, 0, -80, -49, 61, -1, -4, -21, -68, 117, 31, -109, -100, 99, 104, 104, -8, 89, 111, 76, -5, 34, 0, -93, 78, 63, 77, 23, 47, 93, -14, 105, -37, -74, -82, -95, -76, 9, 94, 125, 103, 120, 96, -16, -69, -98, 120, -10, 123, -11, -74, 11, -96, -34, 53, -2, -87, 88, 52, 122, 115, -87, 84, 114, -78, -93, -93, -1, 25, -70, 7, -85, 39, -92, 117, 61, 17, 109, -87, -123, 52, -1, -46, -78, -84, -89, -14, 71, -58, -82, 33, 17, -14, -63, 124, 92, 127, 123, -78, 57, 21, -13, -108, -23, -57, 50, -25, 51, 127, 94, -25, -105, 90, 52, 10, -18, 56, -98, 9, 0, 18, 118, -59, -124, 99, 57, -32, -81, 27, -105, 37, 105, -117, 103, 97, -53, 95, 39, -99, -8, -61, 9, -39, 84, 2, -15, -123, -77, 28, -45, -28, -119, -97, 63, -9, -9, -17, 41, -70, 79, 36, 23, -50, 123, -89, 35, -99, -72, 91, -79, -69, -36, -126, -67, -27, -87, -89, -74, 31, -60, 44, 67, -86, -30, -69, 79, 63, -73, -77, 122, 69, -4, 45, -65, -95, -116, -92, 81, 17, -1, 107, -64, 61, -37, 23, 14, 60, -67, 45, -121, 25, -30, -79, -1, -2, -70, 1, -32, -10, -9, 125, -14, -74, -69, -121, 71, -78, -97, 109, 95, -40, 118, 83, 91, 107, -45, -110, 72, 52, 2, -115, 106, -112, 18, 32, -108, -126, 107, 12, 18, -102, 103, 4, -100, 59, 0, 40, 76, -45, 66, -75, 98, -64, 48, 13, 84, 42, -26, 104, -79, 84, 126, -56, -76, -19, 123, 30, -6, -47, 109, -69, -96, -80, -23, 71, 95, -21, 6, -32, -39, -28, 24, 30, 46, -3, 123, -65, -128, -48, 40, 89, 74, 8, -104, 101, -13, 36, 23, 2, -110, 115, 88, -114, -108, -128, -44, 36, -112, -108, 66, 74, 95, -40, 75, 9, 98, 49, 26, -31, 92, -60, 37, -121, -12, 0, 99, -112, -47, 8, -119, 49, 70, -94, -114, 35, -4, 7, 121, -110, 3, 82, -56, 56, 119, -91, 46, 1, 127, -18, 105, -69, -94, 76, 40, 29, -9, -54, 12, 23, -78, 71, -128, -20, 33, 4, 29, -100, -53, -82, 61, -121, -53, 2, 51, 68, 34, -50, -94, -13, 19, -50, -122, -30, -48, 43, -61, -93, 101, -25, -41, -121, 123, -115, 91, 53, 70, 100, -124, 58, 55, -11, 28, 120, 30, -3, 35, -93, 47, -106, 43, -12, -82, 105, 102, -87, -90, 111, 104, -113, 124, 48, 34, 11, 87, 101, -5, 119, 119, -115, -106, -59, -122, -34, 65, 107, -109, 34, -96, -91, 58, -29, 23, 119, 119, 109, -59, 88, -66, -16, 90, 54, 39, -2, 14, -128, -123, -103, -127, -80, 114, -17, 39, -5, -9, 101, 80, 46, -102, -67, -101, 95, -24, 62, 10, 64, -58, 104, -11, -42, -66, -82, -19, -56, -26, -53, -56, -105, 101, -89, -6, 14, 40, 36, -116, 37, 111, -69, 104, 77, 115, 123, -108, 127, -88, 119, -1, 78, 20, 11, -10, 3, 91, 118, -10, 110, -82, 33, -52, 103, -89, -92, -8, -35, -103, -98, -82, -42, 66, -91, 58, -2, -4, -117, -67, -69, 102, -30, -67, -46, -22, -44, -110, -75, -116, -48, 27, 37, 104, -127, -60, 18, -17, 5, -43, -120, 28, -49, -65, 36, -53, -29, -121, 86, 39, -106, -36, 48, -22, -116, -33, -75, 32, -38, -4, 30, -115, 104, -9, -127, -79, -72, -92, 108, 91, 117, -32, -43, -37, -91, 81, -19, 91, 24, 109, 62, -89, -24, 84, 126, 63, -53, -73, -9, 100, 97, -21, -68, -27, 76, -93, -34, -104, -59, -45, -7, 108, 110, 71, -49, 112, -31, 95, -106, -73, 55, 95, 79, -88, -10, 126, -41, 114, -32, 101, -55, 71, -17, -47, -2, -57, -114, -114, 20, 6, -18, 125, -78, 87, 96, -22, 16, 93, -93, -25, -37, -74, 123, 94, -91, 84, 97, -71, -47, -15, -46, -32, -32, -56, 122, 0, 102, 83, 42, 113, -90, 22, -47, 47, 19, 46, -9, 19, 40, -11, -9, 14, 109, -19, -22, -51, 62, 58, 85, 101, 34, 5, -26, -101, 70, 117, 104, -88, -73, -121, 123, -13, -62, -69, -82, -6, -6, -81, -28, 115, 27, 62, -47, 50, 54, 56, 48, 104, -108, 75, 37, 23, -14, 59, -109, 22, 84, 125, -3, 35, -13, -124, -29, 44, 40, -116, -115, 13, 120, -101, 110, -69, -22, -101, 27, 119, 60, -77, -2, 99, -21, 108, -53, 46, 89, 70, -43, 32, -70, 126, 31, -26, 38, 121, -57, 113, 54, -70, -82, -37, 10, 96, 24, 115, 0, -17, -67, -38, -67, 103, -98, 121, 102, 89, 74, 121, 54, -128, 103, -128, -6, 120, -103, 55, 127, -68, 98, -59, 10, -37, -85, 127, 125, -112, -99, -45, 0, 112, 51, -90, 79, 65, 8, -79, -18, -18, -69, -17, -2, -8, -26, -51, -101, 3, 31, -43, 63, 10, 26, -128, -115, 94, -26, -46, -5, 61, 43, -32, -28, 38, -20, 127, -126, 87, -18, -17, -71, -61, -2, 8, -17, 73, 38, -12, -9, 80, -122, 121, -106, -51, 59, 43, 85, 123, 99, -9, -29, -103, 87, 49, 11, 12, 110, -51, 31, -111, 105, 126, 105, 38, 51, -10, -95, 120, 42, 122, 65, 44, 26, -109, 28, -20, -7, 66, -59, -68, 31, 0, -97, 100, -5, -61, -70, 29, -44, -14, -127, 50, 77, 51, -65, 127, -1, -2, 95, 121, -74, -55, -53, 66, -69, -44, 11, -54, 124, -114, 103, 107, 61, 49, -2, -14, 120, 60, -66, 80, -41, -11, 36, 99, 44, 46, -91, -28, 30, -90, 101, 89, 5, -61, 48, 70, 11, -123, -62, -95, 92, 46, -41, -103, -51, 102, 59, -67, 101, -29, 0, 108, 53, 8, 115, 96, -36, -73, 80, 64, -3, -103, 108, -1, -66, 60, -1, -95, 35, 76, 57, 88, 21, -101, 39, 124, -31, 20, -97, 104, 87, -15, 103, -62, 113, -4, -55, -100, -83, 67, -50, -99, 61, 5, 126, 121, 87, -127, -33, 11, -64, -100, 102, -5, -31, -119, 88, 43, -35, 71, -70, 43, -87, 84, -68, 41, -97, -53, -127, 11, -31, -49, -31, 35, 17, -35, -9, -35, 100, -102, 6, -1, -66, 107, 104, 8, -98, -40, -11, -32, -108, -25, -24, -101, -97, -3, -26, -59, 23, -98, -1, 3, 93, -45, 4, 33, 36, -58, 57, 103, 66, -120, -52, 11, 59, 119, -37, 8, -24, 122, -11, -64, 6, -63, -7, 125, -13, -25, -73, -95, -75, -91, -39, 15, -62, -103, -53, -115, 33, 51, -102, -59, 104, 46, 119, 79, -1, -64, -48, 87, 49, 5, -66, 127, -3, -118, 75, -106, -99, 122, -6, -58, -91, 43, 87, -76, 74, -54, -78, -39, -63, 12, 25, -20, -19, -66, -27, -90, -97, 14, 88, 8, -8, -34, 117, -53, 86, 47, 89, 126, -38, -29, -87, 84, 98, -79, -29, 56, -93, -39, -111, -31, 2, -127, -69, -81, -90, -85, -55, -57, 23, -45, 116, -53, 41, 119, -68, 97, -59, -54, -113, -106, -14, 89, 113, 112, -17, -2, -63, 66, 110, -12, -69, 8, 113, -41, -89, -50, 88, -65, -20, -44, 21, 31, 39, -108, -28, 36, -60, 17, -52, 0, 65, -96, -95, 92, 96, 117, -39, -7, -64, 86, 63, -79, -62, -76, -113, -71, 105, -69, -125, -128, -52, 51, -67, -29, -104, 65, 2, 97, -20, -25, -18, -71, -21, 7, 27, 40, -93, 87, 49, -54, -2, 12, 30, 92, -16, 29, -126, -117, 39, 111, -4, -4, 103, -6, 48, -61, 16, -52, 2, 103, 95, 123, -59, -25, 87, -67, -19, 77, -33, 95, 126, -23, 57, -2, 67, -121, 67, 79, -17, 68, -1, 75, -5, -81, -20, 124, -8, -71, -51, 39, 48, 29, 57, 66, -114, -104, 50, -108, 93, -114, -122, 69, 63, 33, 35, 117, 28, 40, 21, -121, -43, -112, -109, 89, 88, -72, 114, -126, -7, -117, 59, -109, 111, -38, -13, 100, -27, -89, 71, 94, -58, 82, 12, 98, 57, -128, 60, 26, 76, 21, 82, 111, 121, -99, 12, -122, 80, -100, -91, 84, -63, 17, 81, 62, -45, -64, -96, -84, 19, -86, 16, -92, 118, 38, -124, -55, 103, 16, -86, 115, -2, -121, -81, 3, -94, 58, 17, -121, -37, 24, 106, 31, 81, -123, 51, -22, -64, -84, 92, 15, 80, 74, -119, -87, 65, 38, -15, -9, -112, -61, 115, -8, 90, -82, -19, 32, -83, -44, -111, -127, 33, -12, 61, -36, -16, 68, 66, -87, 59, -91, -2, -24, -74, -113, -82, -70, -84, 82, 48, -81, -84, -108, 77, 86, 44, 57, 15, -1, -84, -93, -76, 59, -44, 22, 21, 50, -119, -33, 13, 74, 123, -62, -25, -122, -88, -71, 44, -88, 95, -25, -27, -16, -92, -49, -87, -6, 89, -86, 106, 103, -83, -86, -13, 125, 69, 13, 103, 71, -95, 90, 45, 81, -32, 36, -81, 75, -86, -108, 76, 49, -86, 56, -101, -121, 29, -7, -43, -21, 21, 53, -6, 125, 39, 36, 70, -26, -95, 107, 64, -44, -5, 55, -97, -18, -7, 63, -119, 107, -105, 106, 26, -47, 92, 87, 50, -90, -127, 114, 23, -92, 118, 0, -128, -80, 0, 35, -20, 20, 93, 95, 12, 118, -110, -4, -5, 19, -75, -83, 33, -45, 124, 11, 101, 104, 109, 35, 90, -13, 90, 18, -69, 32, 66, -28, -23, -112, 88, 104, 3, -44, -112, 34, 55, 14, 62, 120, 72, -38, -121, 4, -128, 80, -33, 35, 21, 11, 7, 93, 112, 66, 55, 97, 102, 80, -86, -94, 77, 43, -44, 55, -123, -99, -72, 84, -56, -92, 28, 58, -62, 22, -18, 87, 107, -81, -89, 8, 8, -19, 7, 53, 62, -13, -64, -84, 26, -41, -80, -49, 116, -6, -99, -16, -25, -70, -39, 119, -125, -70, 117, -26, 117, -68, -122, -80, 85, -42, 104, -73, 84, -5, -97, -23, -49, 73, 107, 103, -70, -81, 57, 102, -43, -97, -109, -122, -25, 13, -78, -50, -72, 37, -89, 50, 126, 41, -122, -29, -52, 99, 104, -51, -20, -4, 65, -87, 24, 81, 5, -86, -54, 60, -119, 40, -25, -117, -102, 81, -38, -87, -111, -123, 25, 117, 50, -1, -42, -49, -92, 91, 123, -82, 64, 40, 33, -38, 49, 117, -69, 60, -18, -7, -15, -19, -49, 92, -38, 114, -18, -54, -106, 121, -113, -66, -48, -35, 123, -41, 35, -5, -86, -75, -5, -103, 96, -101, 6, 117, 89, -65, 126, -3, 5, -47, 104, -12, -35, -98, 3, -57, 37, -51, -51, -51, 111, 76, -89, -45, -117, -109, -57, -64, 68, 102, 89, 77, -45, 38, -78, -24, -8, 102, 24, -122, 111, 21, -113, 82, -87, 52, -104, -49, -25, 15, 22, -117, -59, 23, 76, -45, -4, -51, -83, -73, -34, -6, 18, 26, -44, -27, 75, 23, 82, -110, 25, 19, 72, -51, 35, 36, -98, 100, 96, -111, 56, -104, -82, -127, -69, 54, 82, -87, 4, 92, 46, 32, -124, -60, -6, 39, 114, 2, 117, -72, 117, 93, 11, -31, -82, 75, 42, 101, 111, -69, -90, 86, 44, 88, -112, 6, -105, 4, 70, -71, -24, 59, -51, 81, 66, -32, 33, 111, -39, -108, -111, -115, -5, -9, -16, 56, 86, -33, -22, 4, 7, 8, 89, -51, -11, -75, 5, -80, -11, -104, -2, 88, -84, 66, 67, 37, 9, 25, 13, -41, -85, -45, 119, 75, 101, 27, -11, 97, -82, 19, 26, -97, -27, 20, -77, 115, -110, 58, 115, -64, -102, -19, -87, 49, 127, 17, 53, -41, -49, 54, -11, 127, -117, -16, -75, -126, -102, -19, 82, 29, 123, 27, -100, -52, 36, -126, 96, 69, -87, -32, 115, -28, -62, -53, -34, -79, -68, -71, 117, -2, -62, -89, 30, -7, -43, 110, -91, 31, 116, 0, -40, 74, 16, 43, 62, 9, 65, 98, -83, -7, -104, -65, -84, 49, 7, 10, -79, 12, 127, -5, -95, 107, -41, -34, -79, 116, -43, 34, -20, -19, -38, -127, 103, -97, 46, 84, -36, 3, 72, 97, 110, 48, 31, -64, -71, -127, -32, 44, -118, -71, -115, 5, -96, 59, -56, 22, -98, -83, 57, -74, -42, 23, -70, -122, 95, 40, 10, -44, 23, 68, -55, -6, -13, -108, 48, -75, -57, -23, -58, 125, -63, -36, -28, -84, -77, 46, 76, -69, 17, -105, 104, -74, 36, -124, 48, 70, -87, 67, 56, 39, -66, -96, -107, 49, 80, 33, -104, -73, 92, -88, 89, 61, 61, 115, 37, 60, 56, -91, -110, 114, 10, 33, 92, 16, 66, -91, -21, 18, 121, 76, -77, 96, 75, -124, 8, -74, 39, 66, -60, -68, 82, 80, 93, 7, 8, -95, 68, -8, 89, 63, 56, 57, -74, 94, 35, -63, 49, 124, 19, -30, -11, -110, 75, -50, -92, -128, -83, 73, 77, -77, -123, -21, 106, 94, 21, 87, 104, 94, -31, -70, 17, -47, -43, -75, -85, -124, -109, 3, 82, 99, 62, -49, -108, 96, 110, 34, 24, -97, -110, 65, -64, -67, 69, -124, -112, 118, -49, 98, 0, 92, 33, 68, 105, 34, -93, -76, -78, -67, -93, 6, 98, -92, -108, 86, -68, 122, -43, 26, 1, -71, 102, -101, 102, 0, 103, 5, -127, 22, -25, 1, -96, 39, -64, 25, -58, 14, -94, 71, -17, 5, -48, -113, -6, 78, 72, 81, 0, 75, 1, -84, 10, -26, 10, 12, 115, 19, 25, 4, 73, 60, 12, -64, 15, 94, -122, 6, -2, 107, 95, 0, 87, 7, -29, -9, -34, -32, 124, -65, 31, -64, 1, -52, 17, 22, 94, -13, 112, 4, -23, 85, -87, -52, 3, -25, -28, 80, -125, 53, -73, 111, 58, 59, 21, -9, -120, 104, 17, 70, -87, 33, -127, -18, 45, 127, -3, -10, 28, 102, -103, -127, -118, -108, 56, 14, -81, 118, 108, 65, 126, -9, -1, -96, -119, -107, -31, 38, 23, 33, -77, -4, 99, -48, 79, 57, -45, 23, 114, -58, 53, -126, 84, -124, -6, -106, -48, 9, 98, 26, -127, 70, 9, -68, -1, 79, 40, 75, -110, -124, -100, 4, -3, 62, 13, -6, -96, 84, -48, -65, -57, 2, 91, 8, -32, -76, 83, -101, -24, 101, -53, -101, -40, 89, -117, -110, 116, -63, -126, 56, 77, 106, 20, -52, 21, 2, 14, -121, 48, 28, -72, 89, -125, 27, 99, -122, 44, 12, 85, 68, -33, 80, 85, -66, 102, 112, 100, -108, 64, 105, -29, 65, -23, -42, 120, 79, -19, -122, -52, 9, 47, 11, 7, -107, 82, -105, -3, 63, -100, -45, -87, 115, 106, 53, -128, -77, -104, -55, -3, 53, -98, 73, 76, 50, 59, 97, -19, -25, -98, -20, -44, 69, -117, 22, 38, -94, -79, 101, 81, 77, 91, 73, 8, 105, -43, -103, -74, -122, 16, -24, 32, 100, -98, -58, -40, 10, 72, -23, 103, 115, 39, 4, 62, -114, -53, -113, 86, 45, 115, -40, 113, -35, -125, -74, -53, 119, -19, -17, -21, 121, 73, -71, 22, 124, -31, -20, 28, -8, -82, -31, 119, 99, 80, -17, -41, -68, 54, 10, -52, 18, 106, 6, 90, 0, -15, -32, 57, 10, 85, 2, 50, 90, -98, -104, 85, 40, -103, 101, -103, 82, -113, 1, 112, 39, 2, -127, 123, -94, 88, -75, 30, 81, -6, 61, 29, -57, -80, -125, -15, -37, -10, -22, 74, -17, -104, -70, -46, 39, -110, -32, 119, -87, 32, 16, -48, 78, 55, 3, -83, 18, -36, 16, -54, -5, 102, 10, 32, -90, -52, -95, 45, 79, -20, -54, -21, 100, -96, -43, -108, -6, 118, 80, 95, 28, -89, 14, 9, -22, -40, 126, -99, 41, 102, -96, 85, -34, -57, 99, -62, -7, -9, -11, -13, -44, 91, -89, -121, -126, -68, 89, -118, -104, -70, -34, 62, 89, -80, -99, 14, -64, 13, -74, 115, -107, -13, 47, 18, -84, -105, 19, -50, -46, -95, -21, -94, -98, 8, -107, 41, 1, 61, 41, 0, -95, -68, -17, -105, 19, -63, -111, -107, 119, -96, 102, -112, -127, 86, 76, 114, 127, 18, -128, 29, 8, 80, -35, 80, 93, -94, 4, 26, -43, -126, -70, 14, 0, -61, -81, 59, -7, -10, -21, 0, -104, -102, 77, 106, -94, 125, -34, 122, 26, 10, 0, 42, -44, -11, -31, -10, 40, 62, 21, 68, -39, 95, -67, -6, -22, -2, -27, 68, -65, -12, -121, 10, 104, -17, -34, -16, -49, 116, -30, 119, 12, 44, -90, -100, 63, 70, -16, 123, -112, 96, 57, -13, 63, 79, 14, -87, 126, -113, -64, -72, 39, -98, -107, 51, -48, -17, -23, 0, -30, 74, -48, 112, 75, 17, -36, 69, 66, -41, -99, -23, -97, -77, 117, -82, 27, 37, -32, 44, 85, -10, 103, 41, -3, -25, 100, -74, -107, 19, -25, -24, 31, -38, -17, 122, 66, -38, -119, -33, 50, 90, 21, 70, 91, -59, -83, -84, 19, 68, -66, 41, -106, -114, -89, -11, -92, 126, 26, -95, 52, -30, -70, -18, 89, 82, 72, 80, -115, -116, 56, 85, 55, -53, 29, 62, -18, 26, 118, 63, 17, -24, -44, -120, -66, -67, 45, -46, -78, 75, 77, -88, -32, 59, -126, -97, 68, -68, -21, -118, -73, 68, 41, -120, -8, -19, 51, -37, 28, -100, 32, -82, -3, -12, -6, 55, 51, 74, -81, -120, 68, 34, -85, 25, 99, 103, 123, 22, 73, 38, 98, 43, 99, -79, 72, -85, -29, -16, 81, -45, -76, 122, 93, -41, -75, 77, -53, -34, 91, -83, 26, 123, -91, -108, -49, 123, -94, -39, -105, -47, -96, 94, 118, 88, 61, -104, 3, 104, 74, 114, 19, 22, -116, -25, 122, -80, -84, 114, -37, 55, -18, 117, -89, 113, 12, -86, 4, -37, 23, -63, 124, -60, -10, -10, 41, -126, -11, -102, 18, 84, -38, 9, -114, -25, 96, -22, -88, 2, 88, 109, -94, 111, 82, -58, 51, 40, -127, 124, 5, 0, -13, -41, -95, 113, 38, -76, -113, -119, -2, -115, 76, -12, 109, 94, 125, 17, -86, -61, -108, 125, -6, 125, -106, 87, 103, 70, 50, -48, -122, -3, -126, -61, 126, 96, -118, 127, 34, -83, -27, -105, 58, -37, 25, 104, -107, 4, 36, 76, 121, 71, -57, -126, 101, -22, 92, -62, -12, 4, -76, 124, 26, -57, -14, -57, 70, -27, 88, 106, -96, 101, 93, -99, 63, 40, -57, 115, -47, -96, 65, -125, 6, 115, 15, -94, -108, 52, 100, 44, -20, -105, 26, -10, 65, 87, -22, -6, -124, -58, 4, -73, -74, -43, -9, 65, 15, -112, 39, 115, -5, -33, -65, -18, -54, 13, -70, -90, 125, -71, -83, -75, -107, 46, 60, 101, 33, 24, -45, 32, -124, -117, -120, -82, -61, -76, 109, 20, 11, 5, 120, 34, -42, -34, -66, -2, -63, 11, -73, -18, -40, -107, -63, 44, -14, -42, 11, -49, 63, 61, -103, 72, -36, -100, 76, -58, -49, 23, 66, -66, 80, 44, -106, 59, 77, -37, 122, 97, -5, 75, 47, 119, -95, -63, 31, -99, 55, -1, -43, -59, 108, -41, 47, -74, -15, -109, -96, -109, -103, 89, -50, -71, -10, 93, 95, 88, -3, -114, 11, -18, 92, 113, -39, 121, -66, -128, -10, -32, -26, 23, -47, -69, 99, -33, -69, -9, 61, -68, -27, 41, 52, -104, 53, 110, -36, -72, -124, -60, -29, -70, 102, -39, -20, -52, 35, 47, 102, -38, 127, -5, -83, -46, 111, -47, -96, 65, -125, 6, 13, 78, 42, -82, -67, 49, 77, 48, -53, 60, 120, 79, 73, -30, 100, -90, -66, -24, 87, 53, 22, -66, 105, -87, 33, -2, -91, 74, 73, -61, 2, -38, -80, 24, 56, 124, 67, 19, 18, 5, 59, 117, -100, 56, -28, -124, 53, 28, -43, 27, -100, -40, -5] astore_1 aload_0 ldc literal_1290:"__e7-48.png@262144" aload_1 invokevirtual java.lang.Object put( java.util.Hashtable, java.lang.Object, java.lang.Object ) // pc=3 pop arrayinit [-125, -6, -94, -27, 58, 2, 102, 22, 94, 30, 18, -85, -119, 112, -90, -55, 26, -50, -19, -78, 33, 82, 109, -48, 96, -6, 124, -23, 29, 109, -60, 48, 45, 16, 2, 68, 52, -105, 120, 66, 102, -76, 52, -89, 80, -79, 108, 8, 9, 68, 117, 13, -114, 35, 16, -117, 70, -32, 112, 7, 58, 99, -120, -57, -94, -88, 84, 13, 84, 10, -29, -120, -60, 19, 16, 2, 72, -51, 107, 66, 58, -107, -64, 88, 46, 7, -18, -70, -96, -108, 72, 9, -32, -106, 71, 70, 26, -41, 102, -125, 63, 33, -62, -94, -39, -55, 71, -21, 108, 56, 123, 54, 104, -48, 96, 18, 18, -86, -53, -41, -66, 37, -67, -79, 125, 81, -94, 120, -80, 111, -124, -11, -20, -122, 19, 111, -61, -87, -58, 107, 115, -94, -1, 96, 0, -30, -118, -125, -21, 92, 70, 42, 14, -113, 124, 42, -9, 49, -115, 123, -120, 6, 19, -100, 113, -58, 121, 49, -58, 28, -22, -70, 113, -120, -72, 75, 117, 27, 68, -45, 4, 113, 93, -99, 8, 65, 17, -119, 8, 74, 41, -121, 12, 116, 86, -60, -61, -78, -120, -12, 10, -49, 44, 48, -58, -92, -21, 18, 88, 76, -109, -44, 36, 32, -92, -24, -81, -93, -108, -42, -54, 28, 74, -128, 22, 72, -55, 73, 52, -54, -63, -104, 32, -57, -78, -89, 70, -67, -14, -11, 101, -110, 120, 72, 111, 25, 24, 99, -16, -10, 11, -109, 16, 73, 45, 46, 53, 77, -125, 16, -114, -16, -38, 38, 13, 67, -109, -116, 85, 37, -25, -70, 60, 120, 112, -81, -127, 6, 115, 26, 69, -112, -112, 84, 28, -57, 103, 27, 14, -64, 8, -60, 22, 46, -22, 67, -125, -74, -75, 6, 2, 95, 13, 115, 19, 17, -120, 75, -78, 0, 74, -115, -71, 119, -125, -23, -46, 95, 71, 64, 107, -70, 18, -103, 10, 71, -42, 51, 91, 72, 104, -124, -8, 25, 102, -45, -66, 112, -106, 32, -82, 83, 68, 24, -64, 40, -103, -46, 5, 45, 39, -71, 66, -42, -87, -74, 60, 69, -56, 73, -14, -100, -103, -87, -17, 85, -108, 62, 51, 13, 96, 17, -128, -10, -96, 127, -118, -43, 16, -13, -104, 65, -96, -16, -31, 32, -37, 120, 37, -4, -36, 56, 108, -31, -9, 48, -11, -2, 94, 107, -69, 70, -33, -45, 96, -114, -94, 10, 78, -43, 82, -75, 48, -31, -13, 94, 120, -62, -88, -58, -67, 81, -125, 6, 13, 26, 52, -104, 113, 84, 49, 109, 96, 84, -75, 112, -48, -37, -80, 111, -128, 39, -102, 109, -116, 79, 13, 26, 52, 104, -48, -96, 65, -125, 6, 13, 106, 4, -105, -81, -103, 112, -121, -122, 75, -59, -22, 7, -11, 15, 39, -89, -87, 93, -94, -114, -65, -22, 73, -33, -2, 11, -50, 91, 123, 74, 68, -41, 23, 37, -109, -55, -13, 8, 33, 43, 32, 113, 8, -128, -112, 82, 88, -74, -29, -12, 24, -90, -43, -75, -93, 99, 79, 5, 13, 78, -44, 125, 22, 1, 64, -36, 38, -55, -124, 38, 117, 61, 29, 101, -55, -106, 36, 99, 17, -115, -90, -101, 82, -48, 98, 49, 84, 43, 101, 48, 74, 17, 73, 68, 97, 85, 109, 20, 51, 121, 0, 4, -15, -26, 56, 36, 8, -72, -21, 32, -98, 78, -94, -3, 13, -117, 32, -124, -64, -16, -47, 1, 48, -115, 33, -111, 76, 33, 63, 60, -122, 124, -17, -104, 45, -54, -82, -59, -58, -3, -128, 70, 82, 61, 54, 89, -86, -57, 91, 87, 45, -116, -59, 82, 49, -60, 18, 9, 8, -18, -94, 82, -86, -128, 72, -76, 60, -2, -27, 95, 30, -58, -97, 48, -1, 7, -76, -41, 5, -80, -69, 72, -84, -28, 0, 0, 0, 37, 116, 69, 88, 116, 100, 97, 116, 101, 58, 99, 114, 101, 97, 116, 101, 0, 50, 48, 49, 50, 45, 48, 54, 45, 50, 56, 84, 50, 49, 58, 50, 53, 58, 51, 53, 45, 48, 55, 58, 48, 48, 123, 94, 14, -103, 0, 0, 0, 37, 116, 69, 88, 116, 100, 97, 116, 101, 58, 109, 111, 100, 105, 102, 121, 0, 50, 48, 49, 50, 45, 48, 54, 45, 50, 56, 84, 50, 49, 58, 50, 53, 58, 51, 53, 45, 48, 55, 58, 48, 48, 10, 3, -74, 37, 0, 0, 0, 0, 73, 69, 78, 68, -82, 66, 96, -126] astore_1 aload_0 ldc literal_1291:"__e7-48.png@270336" aload_1 invokevirtual java.lang.Object put( java.util.Hashtable, java.lang.Object, java.lang.Object ) // pc=3 pop arrayinit [-119, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 6, 45, 0, 0, 0, 21, 8, 6, 0, 0, 0, 58, -122, -83, 25, 0, 0, 0, 4, 103, 65, 77, 65, 0, 0, -79, -113, 11, -4, 97, 5, 0, 0, 0, 1, 115, 82, 71, 66, 0, -82, -50, 28, -23, 0, 0, 0, 32, 99, 72, 82, 77, 0, 0, 122, 37, 0, 0, -128, -125, 0, 0, -7, -1, 0, 0, -128, -23, 0, 0, 117, 48, 0, 0, -22, 96, 0, 0, 58, -104, 0, 0, 23, 111, -110, 95, -59, 70, 0, 0, 0, 9, 112, 72, 89, 115, 0, 0, 11, 19, 0, 0, 11, 19, 1, 0, -102, -100, 24, 0, 0, 0, 6, 98, 75, 71, 68, 0, -1, 0, -1, 0, -1, -96, -67, -89, -109, 0, 0, -2, -54, 73, 68, 65, 84, 120, -38, -20, 124, 7, 60, -105, -35, -5, -1, 109, 55, 72, -125, 50, -78, 87, -56, -50, 38, 123, 111, 41, -39, 66, 25, 25, 17, 105, -96, -20, -107, 8, 37, 69, 84, 70, 84, 100, 38, -54, -118, -106, -99, -67, 101, -45, 80, 73, 67, -23, -6, -97, -113, -33, 83, -81, -25, 105, 61, 26, -49, -6, -2, 123, -65, 94, -17, -41, 57, -9, -71, -81, -21, -30, -61, -19, -36, -25, 92, -17, 115, -63, -2, 23, -95, -19, -61, -60, 109, 22, -63, -77, -53, 34, 74, -32, -110, -112, 21, -79, 18, -10, 63, -124, -102, -54, 108, -110, 107, 89, -57, 69, -109, 34, -52, 77, 98, 15, -86, 122, -60, -7, 106, 58, -97, -119, 48, 96, -58, -2, 71, 32, -17, 78, 75, -124, 107, 57, 54, -81, 90, -50, -88, 66, 78, -123, -3, -53, -80, 121, 39, 25, -2, 86, 39, 50, 124, 92, -69, 105, -57, 60, 9, 62, 34, -31, 7, 126, 24, -101, -73, -61, -61, 17, -5, -117, 96, -68, -109, 118, -83, -66, -101, -92, -50, 38, 87, -111, -61, 58, -50, -126, 87, 116, 28, -7, 107, 52, 119, -14, 86, -85, -37, -81, 79, 81, -74, -25, -12, 84, -77, -29, -111, -58, 126, -31, 23, -2, -93, 56, 102, 47, -122, 103, 40, -70, 26, 15, -5, -123, 95, -8, 65, -124, 86, -49, 16, -37, 102, 118, 91, 9, -5, -106, -70, -3, 21, -15, -81, 6, 19, -81, 46, 14, 37, -46, 92, -88, -67, -76, -76, -76, -83, -84, -84, -20, 46, 54, 54, 54, -94, -123, -6, -84, 20, -59, -10, 89, 7, 8, 2, 9, 23, -66, 4, -10, 99, 88, -114, 40, -128, -88, -128, -88, -8, -99, -60, -7, 10, -52, -57, -6, -123, 121, -48, -47, 51, 18, -30, 90, 78, 46, 94, 26, -44, -33, -66, -116, 124, -7, 98, -20, 23, 62, 7, 34, -60, 21, -120, -44, 63, -56, 21, -13, -79, -2, 25, -56, 32, 82, 126, -85, -109, 103, 65, -35, 74, -1, -101, 29, 102, -114, 37, 29, -87, -102, -25, 107, 9, -66, 100, 71, 41, 27, 97, -74, -31, 96, -43, 67, 62, -17, -70, 110, -103, -120, 38, -106, 63, -117, -21, -18, -18, 78, -22, -28, -28, 100, -90, -93, -93, -93, 45, 38, 38, -74, 18, -5, -123, 31, -126, 40, 43, 23, 7, -114, -40, 47, -4, -62, 47, -4, 101, -40, -85, -77, 1, 15, 17, 31, -41, 98, 8, 2, 54, -30, 6, 92, -90, -126, -14, -21, -51, -123, -123, -80, -1, 8, 84, 77, -67, 93, -108, 77, 14, 16, 96, -65, 48, -113, -126, 13, 60, 82, -123, 34, -68, 82, 69, 34, -68, 84, 69, -62, -68, -60, -40, 47, -4, -62, 47, 124, -128, -71, -47, 38, 75, 103, -37, 109, -89, -75, 85, 21, 121, -80, 95, -8, 57, -56, -115, -95, -77, -86, -53, 101, -88, -88, 45, 96, 41, -51, -114, -94, -37, -70, 80, -65, 118, 35, 74, -54, -119, 75, 26, 101, -77, 61, -98, -3, 51, -43, 46, -27, -29, 126, 98, -22, -40, -33, 0, 13, 79, -122, 125, -111, 121, -114, 79, -113, 100, 59, -64, -63, 51, -58, -64, 111, 74, -80, -25, -49, 124, -102, 55, -78, -45, -73, 111, 18, -12, 104, 55, -30, -69, -34, -19, 32, 91, 59, -24, 103, 10, -61, -31, -74, 48, 20, 96, 81, -37, -75, 67, -10, 74, -93, 2, -125, -37, 29, 94, -54, -81, 46, -2, -71, -19, 56, 9, -52, 15, -56, -58, -58, -91, 57, 84, 120, 30, 49, 93, -124, -3, 100, -36, 42, -67, 64, -110, 123, 46, 88, -13, 100, -120, -93, 109, -104, -9, 78, -91, -61, 1, -5, -23, 78, -58, 30, 94, 122, -2, 76, 28, 105, -39, -107, -13, 36, -40, -1, 8, 52, 125, -104, -91, -76, -3, -39, -75, -42, -101, -82, 118, 101, 81, 90, 117, -128, 83, 123, 53, 43, -113, -31, 106, 54, 14, -51, 85, 63, -19, -123, 23, 107, 44, 110, -22, -81, -62, 122, 32, 44, 72, -98, 57, -85, -63, 38, -86, -88, -51, 42, -81, -84, -37, -70, 60, -65, -59, -52, -13, 99, -37, -9, 66, 67, -62, 118, 65, -80, -109, 97, -7, -30, -13, -1, 59, -63, -126, 8, -111, -8, -93, 22, 55, -114, -1, 123, -47, -126, 73, 26, 91, -55, -76, 17, -109, 99, -107, -61, -10, -78, -85, 98, -55, 28, 90, 88, 0, -89, 62, -90, -64, 97, -120, 125, -14, -69, -28, 53, -63, 8, 4, -51, 49, 124, -20, 11, 48, -38, 70, 83, 108, 27, -90, 12, 22, -2, -46, -80, -27, -128, 16, -24, -19, -31, 3, 77, 55, 46, 80, 115, -31, 0, 21, 39, 14, 80, -76, 103, 5, 69, 59, 54, 80, -76, -27, -104, 80, -79, -29, -42, -61, 126, 2, -50, 105, -46, 73, 101, -24, 50, 108, 77, -109, -91, -15, -51, 82, -90, -69, -99, -89, 64, 93, 127, 89, 98, 85, 79, 18, 15, -39, -55, 47, -7, -100, -113, 63, 36, -44, -43, 80, 92, 55, 53, -34, 53, 94, 93, 124, 62, 36, 62, 114, 47, 62, -10, 3, -40, -90, 42, -70, 36, -62, 99, -101, -9, -103, -16, 125, 103, -36, -116, -43, 5, -80, -97, -116, -4, -93, 114, -4, -107, 103, 84, 15, -35, -51, -44, 45, 105, -56, -38, -44, 86, 115, 94, -81, -74, 56, 78, -59, -27, 71, -29, 14, 94, -10, 32, 24, -55, -78, -77, 25, -53, 115, -31, 25, -53, 115, 94, 51, -102, -21, -78, -28, 123, -30, -100, 78, 76, 116, 24, 31, 27, 107, -118, -119, -114, 86, 13, 10, 8, 32, -21, -20, -24, -88, -72, 115, -5, -10, 5, 55, 87, -41, -17, -98, 127, -34, -50, -66, 92, -2, -22, -7, -93, 117, -81, 103, -98, -84, -61, -11, 49, -124, -5, -115, 87, 92, -18, 55, 94, 109, 110, 47, 79, -38, -125, -3, -51, 72, -39, -89, -118, 119, 106, -105, -12, -121, -65, -101, -60, 93, 98, -92, 9, -82, 82, -116, 9, 110, 27, 63, 73, 18, -99, 112, -110, -60, -113, 119, -106, -62, -5, 79, 111, -36, -52, -4, -105, -5, -18, -116, -39, 21, -27, -97, 94, 20, 115, 36, 119, -28, -112, 127, 81, -113, -7, -10, -68, 12, 49, -119, -60, 45, -20, 108, -63, -1, -118, -49, -26, -82, -65, -102, 35, -62, -122, 118, 103, -108, 45, 93, 66, -72, 53, 93, 73, -88, 37, -19, -35, 96, 83, -86, -102, 64, 99, -86, -78, 35, -42, -76, 103, -113, -38, -47, -19, 57, 104, 74, -77, 97, -127, 9, 123, 50, 27, 27, -101, -118, -92, -92, -92, -31, -34, -34, 94, -24, -17, -17, -1, 64, -36, 117, 74, 74, -54, -88, -91, -91, -27, 13, 41, 41, -87, -75, -40, 2, -111, 61, 25, 67, 119, 113, 42, 32, 33, 97, -44, -77, -28, -36, -3, 80, -123, -9, -29, 9, 109, -81, -12, -9, 86, 76, 101, 110, -53, 127, 50, -94, -105, 52, -102, 44, 23, 126, -101, 23, -5, 9, 16, -13, -116, 89, -15, -66, 127, 35, -102, 72, -77, -26, -60, -94, -15, -102, 120, 66, -72, 26, 76, 36, -10, 89, 123, 49, 49, 34, 101, 101, -27, 69, -22, -22, -22, -76, 72, -84, -80, -31, -28, -28, 20, 96, 102, 102, 94, -117, -6, 46, -86, -86, -86, 44, 42, 42, 42, -117, 113, 54, -40, 87, 64, 33, -125, -39, 4, 94, 82, -125, 53, 114, -117, -83, 127, -12, -37, -97, -98, -98, 126, 57, 55, 55, -9, -18, -51, -101, 55, 111, -65, -121, 56, 95, 92, 12, 92, 44, -20, 11, 88, 76, 66, -68, -116, 122, -59, 50, 78, -106, 53, 43, 101, -103, 41, -55, -43, -24, -105, 47, 85, 99, 92, -66, 120, 43, -21, -86, -91, 86, -68, 107, 87, 57, -56, -81, 103, -38, -61, 65, 67, -79, 17, -5, 14, 108, 119, 118, -91, -105, -70, -6, 122, 82, -78, 100, 46, 7, -47, 7, 81, 3, 113, -31, 7, 30, -106, -119, -45, 97, 52, 26, 91, 22, 113, 91, 38, 19, -78, 88, -11, 97, -104, 112, 38, 26, -3, -61, 28, 122, 107, 57, -122, 127, -109, 12, 99, -83, 38, -61, 8, -79, 111, 4, 51, 11, -69, 0, 21, 53, -83, 34, -10, -125, -72, 81, 89, 73, -128, -88, -115, -72, 5, 113, 29, -30, 79, 89, 19, 53, 55, 55, 75, 102, 101, 101, 29, 65, -49, 28, 93, 107, 107, -85, 91, 92, 92, 92, 10, 122, 38, -55, -48, 56, 111, 126, 126, 126, 20, -6, 27, 101, -6, -30, -70, -105, -115, 109, 124, 19, 23, -41, -20, 102, 28, 57, 57, 103, 13, -41, -83, -101, 53, -28, -32, -104, -35, -126, -6, 6, 104, -20, 61, 113, -9, 113, 118, 56, -5, -113, 66, -84, -26, -32, 18, 124, -54, -54, -63, 15, 63, 66, 20, -29, 25, 46, 22, -10, -99, 88, -69, 118, 45, 62, 29, 29, -83, -80, -104, -104, -112, -27, -102, 53, 20, 122, 104, -88, 100, -127, -82, 66, -120, -81, 17, 19, -66, 89, -76, -56, -87, -31, 15, 106, 28, 5, -69, -69, -93, 32, -111, 118, -41, -19, 11, -126, 69, 4, -121, 117, 26, 72, -98, -20, 4, 6, -97, 94, 16, -12, -81, 119, -6, 90, 76, 83, 83, -45, -59, -127, 1, 126, 15, -30, -29, -29, 97, -5, -10, -19, 32, 46, 46, 118, -14, -61, 122, 65, 31, -45, 64, -28, -62, -66, 3, -4, -106, 37, -117, -87, -88, -88, -2, -110, -92, -45, -107, -67, -52, -92, 5, -98, -100, 6, -59, 62, -21, -78, -54, -125, 120, 107, -53, 67, -7, -33, -34, 8, -32, 26, -66, -22, -51, 124, -29, -126, 35, -77, 37, -10, 15, -127, -105, -98, -123, -40, 64, 68, -58, -57, 73, 89, -1, 53, -114, -72, 62, 110, -20, 123, 98, 49, 49, -77, 58, 26, -24, 106, -35, 117, -80, 50, -19, -105, 83, -112, -101, -44, -48, -48, 122, -92, -83, -91, 49, -82, -81, -91, -47, -67, -106, -114, -66, 124, 45, 61, -61, 122, -20, 23, 126, -31, -1, 111, -47, -126, -52, 89, -111, -101, 7, -75, 116, 123, -12, 68, -56, -73, -104, 72, 45, -90, 87, 99, 83, -93, 83, 97, -115, 97, -47, -29, -70, -49, 101, 34, 24, 35, 104, 35, 65, -123, -3, 75, -95, 110, -31, -61, 100, -32, 24, -6, 90, -35, -30, -32, 79, 17, 56, 79, -124, -38, -8, 28, 112, -46, 13, -118, 11, 119, 93, 18, 27, -18, 120, -61, -61, -55, -120, 1, -5, 15, 33, 127, 3, -113, 124, -97, -82, -46, -40, -16, 22, -115, -41, 109, -38, 74, -35, -7, -62, 60, -122, -40, -1, 40, 22, 47, 94, 76, -73, 100, -55, 18, 1, -44, 10, -110, -112, -112, 44, -5, 25, 49, 89, 89, 89, -123, 112, -60, -11, -21, -18, -108, 113, -10, 117, 53, 92, 26, -20, -69, 55, -45, -37, 89, 95, 113, -85, -22, -22, 55, -19, 93, -48, -98, -62, 59, 59, 59, 91, -94, -86, -86, -22, -109, 61, 36, 17, 17, -111, -32, -106, 45, 91, -104, -126, -126, -126, -106, -32, -31, -31, 41, 126, 54, 103, 22, 27, -53, 38, 47, 47, 31, -16, -97, -97, 99, 44, -16, 100, -45, 66, 87, -28, 87, -90, -78, -113, -106, -99, 97, 27, -69, 20, 73, 81, 16, -28, -124, 47, -9, -67, -15, 2, 29, -16, -28, 46, -94, 24, -27, 103, -39, -57, -54, -49, 114, -116, 95, -118, -94, -68, 18, -76, 19, 127, 65, 107, 125, 67, 125, 45, -18, -13, 103, 79, -51, -75, 52, -36, -124, -84, -12, 51, -17, 44, -116, 54, -71, -120, 8, -14, -31, -3, -121, -26, 107, 124, 68, 82, -60, 85, -120, -1, -20, -95, -84, 36, 15, -78, 53, 39, -99, -55, 86, 93, 12, -93, 49, 29, 110, -31, -123, -57, -35, -120, -67, -4, 48, 120, -113, 15, -46, 3, -88, -44, 78, 57, -109, 46, 73, -38, 77, -10, -59, 63, -52, 54, 109, 114, -68, 54, 79, -122, -88, -23, 46, 29, -128, 39, -2, -16, -18, -31, 73, -104, 29, -116, -104, 123, 120, 122, -109, 47, -10, 23, 66, 111, 63, 103, 80, 100, -74, 19, -92, -36, -16, -123, -88, -36, -99, 112, 40, -59, -24, -35, 106, 57, -20, -117, 15, 100, -125, 32, 35, 105, -113, -93, 106, -60, 96, -112, -59, -37, -111, -93, 14, 48, -32, -83, 7, -125, 1, -58, 48, 20, 102, 61, -49, -63, 32, 51, -24, -9, 84, -121, 110, 59, 97, 104, 55, -31, 122, -46, -96, -60, -4, -59, -109, -103, 28, 110, -21, -35, 28, 34, -43, -32, 76, -98, 115, -53, -57, -9, -24, -55, 104, -24, 121, -41, 112, 10, -112, 17, 47, 93, -6, -51, -107, 21, 55, 46, 19, 22, 102, 70, 73, -57, -8, -37, -19, -114, 14, 114, -105, 61, -105, 16, -74, 62, -9, 98, -108, 126, 78, 102, -40, -82, -116, 115, 1, 54, -23, -55, 33, -46, 23, 83, -29, 72, 127, -8, -92, -2, -79, 21, 4, -101, 2, -106, 45, 17, -76, 94, -68, 114, -63, -101, -35, 74, -65, -128, -63, -114, -45, 35, -125, 93, -25, -117, 6, 58, -114, -81, -6, -31, 10, 25, 47, 110, 46, -45, -61, 60, -90, 91, -94, -71, 31, -53, -18, -93, 127, -52, 111, 76, 53, -95, -32, -75, -42, 83, -54, -127, 46, -104, 87, 111, 45, 62, -10, -109, 16, -88, -57, -27, -67, 79, -107, -11, -46, -47, 76, -39, 11, 105, -75, 2, 112, -79, -114, 15, -50, -34, -30, -122, -112, -117, -21, -73, 124, 73, -76, 112, 82, -26, 102, -114, 49, 95, 15, 59, 53, -104, 108, 82, 11, 24, -94, 11, -118, -103, -122, -14, -118, -104, -122, 50, 114, 25, -14, 79, -89, -80, 74, -51, 127, -1, 54, 75, 9, 62, -120, 21, -97, -110, -32, 125, 44, 118, 101, -116, -113, 91, 7, 123, -62, 109, -128, 1, -53, 102, 12, 56, -73, 96, 32, 108, 68, -118, -72, 28, -40, -11, 73, 58, -23, -12, -16, -74, 51, -86, 98, 78, 12, -118, -8, 7, -8, -11, 72, -86, 69, -116, 73, -122, -124, 44, -79, 94, -66, 29, 88, -127, -32, 118, -52, 8, -5, 8, -106, -37, -41, -20, 117, 12, 85, 5, -9, 19, -70, -32, 20, -87, 8, 118, 17, 50, -80, 45, 88, 2, 76, 125, -123, 64, 127, 31, 15, 104, 33, 1, 67, -39, -111, 29, -28, 119, -80, -128, -4, 118, 118, 80, 117, 88, 111, -123, 125, 39, 46, -38, 114, -47, 22, -17, 21, 14, 104, 63, -83, 9, 125, -57, 100, 97, -24, -124, 18, -116, -58, -54, 65, -101, 53, 11, -36, -46, -94, -126, -77, -94, -53, -37, 62, -10, 73, 62, -30, -50, 84, 93, 116, -58, -27, 126, -57, -83, -55, -39, -103, 73, -104, 123, 59, 13, 79, 31, 13, 65, 114, -84, 15, 43, -10, -99, 112, 51, 86, 37, 63, 21, -68, 59, 127, -80, -19, 22, 60, 30, -21, -127, -20, -60, -56, 118, 35, 57, -127, -97, 34, -34, 21, -58, 72, 109, -72, -109, -82, -103, -39, -102, -69, -23, 109, -17, 21, 3, -72, 127, 93, 31, -122, 43, 55, -63, 72, -91, 49, 116, 20, 24, -126, -77, -114, -40, 119, 85, -83, 12, 95, -80, 90, -44, -97, 102, -66, 115, -24, -14, -82, -86, -119, -85, -98, 48, 90, -80, -5, -55, 68, -15, -66, -87, -119, 18, -17, 123, -29, 121, -50, -66, 99, -71, 59, -1, -12, 25, 15, 15, 11, -109, -87, -81, -85, 11, -50, -53, -51, -107, 31, 30, 26, -86, 4, -124, -89, 83, 83, -29, -93, -61, -61, 13, 48, 55, 7, 51, -45, -45, 112, 62, 61, 93, -74, -76, -76, -44, 44, 51, 35, 67, 10, 91, 32, -98, 63, 30, -43, 126, -48, 91, -109, 61, -34, 89, 53, 50, -38, 90, -4, 122, -98, 109, -27, 67, -125, 77, 69, -107, 125, -75, 57, 48, -38, 81, 13, 61, 119, 46, 65, 109, -106, -97, 40, -10, 55, 33, -34, 89, -30, -61, -49, 35, -58, -114, 79, -20, -100, -81, -18, -55, -30, 68, -41, -95, -21, -25, -10, -50, 86, 93, -16, -97, 42, 73, 114, 111, 46, 56, 102, 95, 124, -50, 71, -5, 112, -116, -3, 6, -127, -7, -60, -52, 110, 57, -4, 83, -82, 50, 127, -6, -30, -81, -120, -33, -61, 91, 17, -25, -38, 80, -107, -80, -9, 95, 115, -118, -53, -33, -26, -96, -58, -107, -28, -60, -82, -47, -122, 36, 120, -42, 112, 8, -98, -35, 114, -128, 71, -73, -35, -95, -67, 58, 1, 34, -109, -18, -64, 6, -3, -62, -78, -91, 107, 125, -40, -79, 127, 8, 91, 37, -106, 17, -124, -104, 82, -123, 84, -121, 49, -65, 62, -26, -60, 6, 106, 98, 107, 64, 75, -126, 2, 20, -40, 23, -127, 32, 41, 6, -12, 4, 24, 72, 83, -32, -61, 81, 107, 10, -72, 123, -108, 3, -110, -35, 24, 46, -40, -86, 83, 126, 117, 1, 47, 35, 35, 35, 94, 87, 87, 7, 67, 67, 67, -48, -45, -45, 3, -99, -99, -99, -48, -48, -48, 0, 29, 29, 29, 48, 50, 50, 50, -49, -37, -73, 111, 3, 74, -24, 47, -24, -48, -61, -7, -79, 48, -45, -120, -121, 26, 115, 89, -3, -118, -112, -46, 34, 3, -79, 117, 27, 33, -13, -110, 77, 89, -93, -85, 113, -72, 91, -23, -29, -71, -125, 71, -78, -126, 52, 35, 42, 127, 90, -14, -115, -45, 98, -17, 117, 53, 55, -9, 55, -41, 35, 8, 95, -42, 39, -112, 66, 79, -26, 74, 24, -50, -91, -128, -37, -57, -119, 106, -77, -67, 23, 127, 72, 112, -97, 9, -43, 95, 93, 114, -39, -3, 80, 125, -22, -95, -71, -34, -69, 81, 83, -115, -123, -121, 122, -110, 3, -116, 82, -108, 37, -71, 120, 62, 36, -74, -104, -104, -88, 14, -69, -86, 70, 86, -90, 56, -34, -21, -66, 25, -10, -72, -93, -18, 104, -61, -51, 107, -2, -31, 23, -114, 111, -5, 36, 105, 76, 34, -124, -55, 120, -89, 41, 2, -109, 58, -103, -17, 23, -50, -81, -109, 46, -76, 120, -16, -35, -69, 119, -128, -79, -123, 3, -90, -110, 5, -104, 90, 54, 96, -22, -120, -102, -105, 1, -45, 66, -44, -66, 12, -108, -90, -71, 32, -28, -110, -121, -6, -65, -115, -95, 123, -56, 102, -34, 22, -7, -52, -5, -50, -57, 64, -79, 62, 14, -114, -124, 10, 110, 30, -70, 53, -101, -87, -55, 22, -87, -110, 18, -30, 113, 19, -30, 97, -72, -11, -59, -89, 27, 39, 60, -116, -122, 119, -51, 18, 127, 53, -74, 85, -95, -24, 38, -63, -73, -118, 22, -116, -119, -67, -113, -24, 79, 15, -28, 35, -6, 34, 106, 35, -46, 126, 77, -90, -64, -16, 36, -12, -103, -43, -99, -61, 117, 15, 28, -85, 118, 62, -103, 61, -19, 117, -66, 12, -114, -108, -76, -128, 71, -46, 109, -32, -46, 8, 5, 12, 99, 113, -4, -67, 67, 21, 9, -74, -86, -122, -123, 40, -15, -10, 106, 124, 45, -20, 27, 65, 79, -49, 68, -58, -64, -64, 108, -8, 3, 98, -59, 34, 68, -77, 123, 77, 77, -115, 3, -9, -17, -61, -56, -60, 36, 12, 12, 15, -65, 107, 107, 111, -17, -81, -85, -83, -67, -116, -18, -19, 69, 84, 66, -92, -3, -98, -8, -35, -35, -35, -91, -59, -59, -59, 96, 102, 102, 118, -92, -93, -77, -13, 126, 114, 114, 50, 32, 81, 77, 26, -115, -25, -96, -9, 8, 88, 88, 88, -60, 125, -55, -41, -128, -109, 115, -82, -121, -103, 25, -70, -24, -23, -95, 105, -11, 106, -88, 66, -3, 10, 14, 14, -72, 77, 67, 3, 29, -44, -44, -48, -119, -82, -37, 17, 59, 16, 113, 118, 56, -5, -113, -105, -50, -84, -20, 124, -64, -59, -51, 51, 79, 54, 118, 78, 96, 97, -27, -128, 117, -100, -36, 31, -58, 88, -39, -42, -95, -79, 117, -64, -55, -75, 126, -2, 26, -75, -13, 54, -56, -10, -125, 13, 46, 6, 46, 22, -10, -3, 32, -93, -93, -93, 58, 32, 44, 44, -24, -61, -54, -54, 114, 127, -39, -78, -91, 11, 21, -24, -113, 35, 26, 34, 122, 96, -33, -8, -36, -18, -69, 124, -105, 52, -76, 101, 18, -52, -102, 30, -125, -28, -27, 38, -40, 90, -40, 126, 124, 103, 73, 7, -1, -5, -5, 92, -90, -119, 113, 50, -2, 87, 65, 34, -81, 125, 78, 34, 97, 0, -104, -125, -122, -128, 117, 79, -45, -90, -81, -59, -76, 49, -47, 87, -42, -45, -43, 5, 107, 107, 107, 48, 52, 52, 4, 29, 53, -123, 75, 72, -88, -96, 66, -52, 66, -68, -121, 40, -65, -96, -67, -108, 32, 25, 37, 34, 61, -82, -65, 78, -73, -120, 95, -52, 57, -1, -99, -12, -26, -72, 7, -4, 38, 53, 81, -110, 46, 61, -9, 101, -36, -5, 64, -52, -82, 101, -38, -63, -13, 116, -126, -120, -63, -91, 63, 108, 88, -7, -24, 22, 45, 104, 3, 91, -72, -121, -99, 52, -41, -117, -49, -73, -22, -80, -16, -109, -58, -29, -110, -48, 113, 70, 28, 58, 79, -119, 64, 71, -110, 52, -12, -99, -41, -124, -102, 8, 110, 40, 116, 103, -124, 24, 3, -54, -21, 41, -106, -108, 127, -21, 41, -35, -115, 28, 60, -30, -58, 98, 114, -83, -90, 18, -118, 15, 28, -52, -115, -57, -99, -74, -103, -114, -101, -95, -66, -87, -72, 124, -85, 12, 7, -81, -8, 55, 87, 94, 49, 50, 101, 25, 25, -24, -126, -89, -77, 29, -56, 42, 40, -126, -110, -70, 58, -88, 33, 26, -24, 104, 1, -11, 90, 58, -96, -90, -93, 87, -57, 126, -31, 23, -2, 98, -12, 117, -76, -119, -73, 54, -42, 45, -66, -110, -107, 73, 112, -77, -72, 64, -22, 110, -7, 53, -114, 127, 73, 2, -116, 8, 113, -67, -123, 48, 125, -123, -83, 52, 91, -76, -67, 44, -121, -101, -82, -103, -88, -62, 22, 75, -103, 37, -13, -54, -10, 70, 58, 38, 58, 85, -42, 90, 94, 43, -111, 49, 89, 71, 37, -111, -123, -60, 84, 82, 16, 95, -93, 107, -84, 108, -65, 117, -105, -18, 37, -21, 67, -90, -35, 14, 97, -42, -125, 102, 123, 55, -33, -38, 100, -83, 30, -87, -94, 38, 41, -11, -45, -41, -57, -69, 34, -110, 118, 28, 60, -11, 66, -59, -44, -21, -89, 36, -16, 118, -39, -88, 26, 91, 26, 108, 52, -16, 112, -36, -70, -36, 84, 95, 50, 68, 95, 107, -29, -94, 79, 126, 110, 46, -102, -8, -69, -84, 69, 8, 16, 9, 17, -15, -1, 69, -126, 5, -63, 29, 25, -111, 59, 77, -78, 98, -81, -46, 85, 21, -38, 111, 43, 72, -115, -26, 8, 45, -20, -64, 100, 77, 85, 5, -41, -115, -30, 43, 97, 85, -41, -118, -2, 19, -89, -49, 9, 9, 9, 23, 19, 19, 19, -81, 88, -76, 104, -47, 114, 68, 90, 68, 105, 52, -58, -14, 35, 49, 25, 25, 25, 9, 126, 107, 53, 74, -117, 115, -12, -70, -38, 106, -89, 112, -126, -59, -3, -98, -58, 121, -74, 54, 85, -33, -65, -110, -105, -79, -94, -95, -90, -36, -86, -65, -69, -66, -29, 126, 111, -45, 88, 87, 91, 77, 84, 117, 101, -47, -105, -10, 91, 66, 20, 20, 20, -66, -10, -10, -10, 121, -27, -27, -27, 52, -17, 7, 103, 103, 103, 101, 50, 51, 51, -93, 15, 30, 60, 120, 63, 32, 32, -96, 63, 52, 52, -76, 104, 124, 124, 92, 23, 0, -120, -34, 127, 60, 116, 88, 33, -106, -105, -105, 55, -127, -116, -116, 76, 14, -5, 15, -61, -35, 8, -33, -16, 90, -46, -70, -73, -99, 21, 38, 112, 61, -45, 12, -98, 119, 108, -121, 7, 13, -90, 80, -101, 45, 48, 23, -27, 78, 104, -14, -83, -15, 66, -100, 8, -74, -42, 100, -15, -67, 125, -44, 108, 6, 79, 91, -83, -26, -7, -72, -59, 12, -22, -78, 5, -34, -123, 58, 19, -104, 125, 117, -33, 43, 33, -70, -56, -59, -50, 122, 44, -29, 108, 34, 92, 43, -52, -122, -10, 123, 53, -112, 119, 41, 13, 116, -43, -107, -72, -1, 67, -94, 5, -119, -109, 2, -105, -52, 54, 17, -122, 52, -44, 23, 69, 100, 66, 92, -127, 72, -116, -69, -121, -8, -15, 122, 120, 17, 98, 48, 1, 62, 126, 15, 9, 49, -31, 125, -44, 79, 67, 92, -113, 33, 124, -58, -50, -101, -120, -112, -96, -103, -104, -120, 96, 24, -11, -13, 62, 111, -121, 112, -58, -107, -108, -68, -12, -24, -46, -12, -106, 60, -14, 71, 13, -105, 86, 76, -76, 95, 99, 121, -10, -80, 75, 28, -90, 122, 52, 96, -86, 91, 13, 30, 118, -117, 67, 115, 1, -45, 120, 109, -58, -118, -98, -90, -53, -28, -125, -41, 35, -105, -98, 74, 118, 37, -5, 36, 17, -33, -78, 121, 21, 94, -99, 39, -35, -35, 71, -41, -92, 0, 38, -93, 0, 30, -60, 33, -58, -61, -20, 104, 36, 76, 36, -24, 7, 97, 127, 1, -8, -115, 72, 56, -3, 83, -74, -63, -103, -14, -125, 16, -106, 101, 13, 73, -107, 7, 96, -85, 47, -49, 8, 9, -1, -25, 55, -17, 53, -21, 105, -55, 123, -99, 53, 111, 14, -123, 88, -63, 80, -80, 21, 12, -121, 109, -121, 94, 39, 57, -24, 119, 87, -121, 1, 79, 109, 28, 81, 95, 3, 122, 119, 110, -124, -82, 109, -126, -48, 101, -63, 3, 67, -2, -26, -48, 99, -93, 116, -95, -102, -107, -126, -8, 19, 85, -44, -123, -117, -114, -51, -108, -59, 95, -57, 79, 110, -46, -19, -72, -119, 12, -122, -128, -113, -31, -29, -5, 112, -17, -114, -22, 118, -67, -5, -4, 65, 92, 39, 116, 70, -34, -18, -45, -30, 87, -47, -60, 22, -120, -37, -41, -45, -87, -29, -125, -73, 7, 7, -18, 84, -87, 63, 17, -31, 105, -100, 123, 49, -24, -12, -51, -21, 65, 51, 117, 85, -31, -48, 112, 51, 2, 112, 109, -11, 53, 127, 40, -68, -76, -65, 39, -29, -84, -17, -98, -101, 101, -39, 11, 74, -38, -82, 98, -64, 103, 87, -36, -66, -62, -101, 85, 106, -79, -127, -38, 30, -14, 20, -5, 83, -85, -21, -100, 18, -42, -12, 108, 14, 92, -11, 88, -46, 106, -119, -38, 66, 98, 84, 95, 118, -106, 111, 42, -13, -126, -47, -98, 24, 120, 56, 122, 17, -6, -37, 18, -113, 96, 63, 0, 53, 95, 122, 6, -107, 61, 76, -91, 10, 110, -20, 32, -29, -56, 10, -78, -121, 104, 65, -39, -121, 22, -44, 2, -24, -33, 73, -39, 49, -36, 100, -108, 94, 78, 75, -61, 67, -10, -51, 47, 101, 81, 3, 114, 125, 5, 123, -118, 116, -99, -3, 12, 53, -26, 65, 60, -11, -70, -127, 76, 103, -19, 29, -103, 34, -67, 118, 10, 101, 120, 38, 112, 62, -10, 79, 97, 1, -65, -77, 108, -80, -9, 36, 51, 104, -18, -92, 40, 20, 80, 93, 34, -2, -79, 104, -79, 117, -25, -1, 125, -35, -72, 115, -12, -110, 1, 6, -21, -64, 123, 15, 43, -12, -74, -55, -64, -48, -28, 22, -24, -97, -48, -123, -22, 38, 17, 56, 123, -127, -86, -28, 119, 62, 36, -65, 113, 17, -114, -65, -11, -119, 16, -25, -29, -48, -54, 96, -117, 24, 84, -79, -109, 27, -74, 44, 126, -19, -25, -82, 12, 53, -47, 65, -16, 56, 53, 19, 94, 94, 44, -128, -119, -108, -13, 112, -55, 123, 23, 28, 119, 52, -122, -42, -40, -93, 48, 113, 54, 21, 30, -96, -79, -42, -104, -61, 112, -14, -128, 54, 104, -69, -110, -127, -96, 3, 118, 110, -61, 54, -20, 15, 47, 39, 19, 27, -122, 116, -25, 35, 58, -32, 126, 92, 15, 92, -93, -43, -63, 45, 86, 13, -36, -114, 33, -58, 40, -127, 75, -108, 60, -40, -123, 111, -124, 109, 126, -94, 96, -20, -75, 1, -74, 30, 16, 5, 83, 47, -55, -107, -40, 55, 32, -61, -112, -103, 60, 111, -57, -70, -96, -69, -34, 34, 83, -61, 105, -22, 48, 85, -76, 25, -70, 79, -56, 64, -61, 81, 37, 40, 115, -28, -127, 108, 117, 58, -88, -14, -110, -125, 92, 79, -11, -10, 79, -110, 46, 57, 49, -73, 94, 60, -23, -121, -73, 111, -98, -63, -21, -103, -57, 0, 72, -76, 24, -24, -82, 127, 116, 120, -41, 38, -14, 0, 121, 42, -59, 40, 101, -22, -56, 88, -51, -75, 17, -127, 74, 107, -107, -80, 5, -64, -53, 90, -37, -77, 42, 47, -7, -2, 88, 95, 51, -68, -100, -98, -128, -23, -121, 67, 80, -102, 125, 102, -56, 76, 89, -28, -121, -60, -69, 12, 127, 126, -110, 27, 103, 21, 67, -101, 47, 106, -68, -23, 43, -46, -123, -111, 114, 45, 24, -85, 82, -126, 9, 28, 111, -86, -61, -29, -122, 45, -16, -76, 101, 7, 68, 56, 26, -97, -1, 90, -100, 23, 126, -5, 121, -97, 94, 76, -9, -97, 42, -68, 124, -28, -15, -123, -13, 68, 24, -62, 88, -114, 53, -34, 96, -58, -74, -12, -47, -36, 93, 48, -110, -17, 6, 29, -119, 102, -48, 113, -38, 28, -122, 11, -10, -62, -8, -107, -35, 48, 89, -76, -25, -35, 68, -79, -105, -19, 120, -2, -82, 101, 95, 21, 10, -101, -102, -82, 1, -62, -53, -103, 25, 120, 49, -13, -4, -51, -53, -105, 51, -16, -6, -11, 75, -104, 125, -13, 26, 94, -67, 64, 99, -49, -97, -49, 33, 17, 99, 106, -18, -51, 27, 24, -24, -17, 31, 60, 117, -14, -28, 87, 55, -5, 111, 94, -65, 88, 53, -47, 115, -21, -30, 120, 71, 41, 76, 13, -36, -127, 103, 35, -11, 48, 51, -47, 14, 51, -109, 29, -16, 108, -84, 13, -38, 74, 79, 66, 91, -39, 41, 64, 122, 6, -76, -105, -97, -122, -37, -23, -98, 94, -40, -33, -128, -28, -35, 50, -8, -72, -10, -60, 78, 65, -26, -13, 65, 6, -41, 106, 114, -126, 97, -88, 33, 13, 38, 59, -78, -31, 110, 97, 36, -36, -69, 22, 9, -113, 122, -81, -62, 104, -21, 101, 36, -90, -100, -125, -94, 68, -73, -39, 120, 87, -15, -99, 24, 66, 28, -86, -72, 56, -18, 36, -7, 69, -31, -30, 90, -84, 43, 95, -15, 17, -37, 39, 23, 15, -24, 64, 89, -76, -19, -69, -68, 16, -85, -17, 18, 2, 66, 66, 66, -84, 66, 67, 66, 87, 98, 63, 1, -121, 44, 60, 20, 58, 75, 79, -67, 121, -35, 112, 0, 38, -61, 81, -14, -58, -108, 29, 90, -12, 88, -96, -33, 110, 45, 60, 58, -50, 0, -109, -41, -52, 32, 53, -89, 22, 120, -52, -81, -9, 99, -85, 28, -2, -111, -45, 102, 118, -14, -28, -110, 89, 110, 107, -31, 97, 50, 27, -116, -89, -119, 64, 91, -86, 40, -12, 95, -26, -128, -122, 124, 75, -72, 114, 122, 59, 92, -119, -37, 10, -29, -83, -47, 0, 15, 2, -31, -19, 77, 65, -12, 124, 115, -126, -113, 9, -115, -37, -41, 98, -94, 10, 10, -45, 107, -25, -46, -96, 40, 50, 22, -46, 118, 121, -62, 73, 61, 99, 68, -93, -7, -10, -54, -31, 104, -72, 118, -20, 36, -28, 29, -117, -121, -115, 27, 55, 58, -2, -23, 51, 51, 16, -66, -58, -95, 69, -6, -19, -31, 123, 104, 62, -82, -111, -127, -124, 27, -54, 16, 127, 93, 11, -114, 85, 26, 65, 79, -59, 53, -40, -97, -39, 9, 125, -71, 105, -48, -70, -33, -78, -18, -89, 84, 5, -102, -17, 72, -109, 112, 9, 124, -89, 21, -101, 3, -69, -3, 77, -96, -15, 52, -7, -69, -103, -86, -75, 112, 47, -119, 124, -82, 44, -126, -8, -61, 115, 113, -36, 93, -110, -31, 122, -78, 113, -25, -45, -63, 64, -128, -103, 99, 0, 79, 79, 0, 12, -97, -125, -39, -106, 112, 104, 79, 86, -65, 113, -27, 0, -5, -54, -126, -3, -84, 120, 119, 35, -59, -114, 61, -83, -80, 4, 24, -15, 1, 120, 118, 20, -15, 20, -52, 14, -90, 67, -25, -11, -128, -15, -45, -34, 74, -126, -40, -17, 64, 44, -124, 49, -69, 39, -54, 2, -1, 86, -118, 36, -20, -9, 96, -63, 22, -83, -40, 64, -112, -125, -46, -89, 10, -40, -62, 96, -14, -22, -43, -85, 57, 76, -17, 18, -80, -8, -10, 2, -101, 127, 47, 112, 4, 34, 6, -9, -61, -70, -48, 126, -32, 12, 27, 0, 95, 31, 7, 56, 122, -60, 115, -66, -113, -58, -26, -17, -79, 7, -10, -31, 108, -25, 125, 112, -66, -13, 49, 80, -84, 79, -42, 26, 100, 75, -27, -120, 8, -16, -103, 23, -68, -114, -93, 32, -10, -107, -94, 34, -15, -57, -66, 1, -42, 102, 102, -46, 54, -37, 119, 44, 92, -120, 39, 81, -51, -73, 62, 124, 17, -119, 90, -3, 80, -14, -8, 25, -108, 61, 125, 9, 5, -61, 47, -32, 120, 89, 51, -20, -114, -53, -125, -83, 94, 5, -128, 17, -22, 84, -3, -34, -91, 28, 15, 35, -88, 19, 90, -98, 87, 47, -68, -78, 8, -5, 70, -84, -95, -94, -95, 101, 100, 100, -47, -7, 86, 63, 84, 53, 71, -118, -124, 8, -25, -106, -106, -106, 30, 36, 80, 3, -102, -42, 97, 10, -119, 22, -29, -59, 69, 48, 126, -83, 4, 30, -93, -79, 71, -113, 30, 1, -86, -74, -125, 65, 52, -34, -35, -43, 53, -45, -38, -46, -46, 88, 82, 92, 28, 23, 29, 29, -67, -32, 67, 36, 117, 45, 45, 121, -87, -103, -103, -96, -95, -93, 19, 88, 93, 91, 123, 43, 60, 42, 10, -42, 113, 115, 115, -44, -73, -74, -98, -49, -56, -54, 2, 29, 125, -3, -120, 47, -7, -22, -93, -86, -118, 14, 36, 80, -108, -82, 91, 7, -107, -111, -111, -48, -43, -44, 4, -67, 93, 93, 80, 123, -27, 10, -28, 110, -38, 4, 119, -42, -84, -127, 123, 76, 76, -48, -124, -40, -58, -56, 8, 56, -5, -113, 66, -16, -80, 114, -16, -127, -108, -76, -30, 60, -7, 5, 68, -127, -121, 103, 3, -120, -118, 109, -100, -65, -106, -108, 82, 0, 94, 62, 97, -32, -27, -35, 0, 18, -110, -14, -13, 99, -30, 18, 50, -64, -125, -82, -111, -19, 7, 63, 92, 12, 92, 44, -20, 7, 64, 77, 77, -75, 25, 85, 63, 77, 72, -120, -117, -32, 62, 111, -64, 66, -75, -11, -9, 123, 56, -60, 111, 94, 127, 4, -73, 76, -66, 118, -17, -102, 6, -99, -70, 7, 96, 92, 59, 1, 59, -21, -58, -63, 109, -98, 99, -32, 90, 63, 14, 86, -11, 15, 64, -3, -18, 3, -40, 112, 124, 16, -104, -112, 104, 65, -21, -36, 42, -14, 85, -31, -37, -25, 64, 98, 112, 80, 16, -124, 4, 7, 67, 105, 113, 1, -72, -87, 51, 78, 39, -22, 99, -31, 72, -84, -8, -90, 68, -69, -114, 32, -7, 89, 93, 65, -118, 6, 69, 30, -122, -117, -36, -46, 7, 45, -12, -115, -9, 15, -59, -123, 31, 5, 81, -37, 70, -32, 51, -66, 9, -100, -38, -91, -64, -93, -99, 11, 71, 99, 18, -63, -59, -51, 43, -26, 35, -47, -126, -104, -119, -110, 36, -121, -125, -118, -124, -14, 75, -15, -81, -18, -25, 18, -65, 121, 84, -94, -81, 49, 89, 29, -6, -45, -76, 96, 32, 75, 7, 6, -77, -28, -96, -17, -126, 18, 12, -27, 108, 69, -21, 35, 49, -88, 56, -60, 3, -7, 30, 104, 93, -23, -53, 6, 103, -115, 41, 92, 62, 123, -62, -107, -116, -48, 100, -15, 114, 124, 79, -11, 29, 44, -113, -104, -123, -56, -14, 9, -120, -15, 84, -80, 31, 0, 11, 5, 21, -87, 50, 39, 127, -52, 22, 65, 73, -40, 34, 43, -33, 25, 17, -30, 5, 87, -13, 82, -32, 114, -58, 73, -120, 10, -13, -127, 45, 27, -27, 122, -73, 110, -112, 2, 21, 46, -127, 24, 102, -118, 53, -92, 11, -98, 3, 40, 40, 82, -108, -59, 69, 97, -121, -127, 14, 72, 109, 16, -128, -115, 98, 34, 32, -62, -69, 30, -28, -123, -123, 96, -43, -54, -107, 64, 71, 77, -91, -116, -3, -62, 47, -4, -75, -126, -123, 84, 87, 107, -13, -21, -54, -30, 43, -102, 109, 53, 119, -122, -69, -21, -18, 64, -29, -51, 27, -82, -40, -33, -124, 100, 127, -57, -49, 86, -123, 110, -80, -105, 34, 23, -34, 33, 85, 40, -67, 115, -29, -120, -118, -19, -58, 105, 125, 61, -2, 17, 19, 49, -122, -57, -70, 122, -4, 23, -74, 122, 25, -54, 126, -88, -122, 83, 102, 38, 102, 53, 88, 127, 79, -60, 97, -29, 19, 5, 87, -107, 47, -82, -127, 85, -108, 36, 88, -73, -70, -24, 100, -19, -118, -73, 7, -49, 84, 55, 112, 63, -29, 12, 123, -50, -20, 2, -9, 36, 103, -16, 56, -29, 2, -34, 25, 123, -25, -81, -115, -10, 110, -22, 80, 86, -111, 16, -61, 126, 18, -52, 60, -94, 115, -52, 61, 99, 115, 126, -38, 122, -37, 66, 75, -42, 105, -121, -95, -95, -85, -83, 33, -85, -107, -119, -106, -19, 31, 14, -25, -100, -13, -111, 74, 77, 58, 20, 113, 42, 118, 119, -52, -79, 80, 35, -73, 24, 95, 53, -109, -125, -82, -78, -12, -69, -19, -92, 73, -112, 120, -15, -35, -89, -75, -125, -9, 104, -88, -123, -20, -43, 58, 25, -28, -95, -18, 21, -28, -95, 42, -125, -3, 0, 46, 9, 51, -57, -121, 114, -45, -113, -97, 85, -106, -121, -77, -127, -121, 38, 111, 87, -108, 49, -3, -23, -102, -89, -94, -108, -8, -58, -75, 43, -35, -83, -9, -22, 81, 94, -21, 124, 119, 85, 81, -63, 31, 18, -97, 69, -31, 58, 103, -117, -94, 12, -29, -2, 101, -94, -59, 42, 84, -83, -64, -122, 90, 1, 68, 9, -60, 117, -24, 90, 1, 85, 94, 44, -1, -2, -75, 8, -75, 20, 34, 23, -94, 82, 81, 126, 70, 78, 107, 99, -43, 76, 111, 71, -51, 76, 111, -5, -35, -103, -98, -10, 59, 51, -19, -51, -43, 51, -27, 37, 89, -103, -99, -51, 55, 103, -6, 59, 107, 103, -6, -69, -22, 103, 6, 122, 26, 102, -18, -43, 85, 12, -26, 92, 74, -7, -102, 96, -94, -119, 42, -41, -77, 42, -47, 65, -104, -78, -78, 50, 71, -36, -95, 48, -36, -127, 21, 84, 69, 1, -88, 26, 3, 80, -107, 45, -54, 39, -68, -122, -73, 111, -33, -90, -2, 102, 31, -127, -24, -119, -124, 24, 124, -20, 63, 12, 125, 73, -116, 58, -15, 16, -43, -109, -111, -70, 109, -80, -39, 64, 27, 86, -46, 72, 66, 127, -75, 17, -64, -72, 21, -68, 24, -76, -121, -54, 20, -74, 103, 123, -52, -80, 5, 31, -6, 113, -40, -124, 81, 23, -99, 98, 122, -46, 88, 108, 9, 53, -123, -90, 48, -37, 107, 54, -49, -6, -85, -90, -120, 22, 80, -100, -64, 50, -19, -72, 25, 91, -5, 37, 127, 89, 73, 49, -94, 80, 63, -81, -6, 115, -119, 113, 16, 30, -32, 3, 57, -103, 41, -48, 84, 115, 19, -68, 61, 93, 11, -59, -123, 5, -16, 63, 59, 79, 10, -14, 127, -74, -54, -5, -104, 5, 29, -31, 89, 87, 1, -103, -13, -98, 98, 110, 5, -63, 106, -15, 103, 92, -8, -83, -2, 38, -47, 98, -103, -93, 60, -89, -53, 118, 9, -90, 33, 7, 57, -50, 28, 11, 97, -70, 118, 23, -91, -11, 114, -82, -86, -68, -36, -74, 82, 108, -22, -24, 62, -7, 71, 46, 97, 107, 105, 86, -125, -106, -122, 50, 40, -56, -53, 0, 63, 47, 55, 40, -55, 43, 60, -113, 59, 30, 87, -111, -101, -99, -45, -115, 99, -38, -71, -44, -53, 106, 42, -86, -83, -84, -52, -12, 32, 37, 33, -126, 108, 85, 97, -125, 0, 15, -96, 10, -96, -50, -49, -85, -93, 17, -28, -95, 67, -107, -53, 80, -94, -114, 26, 70, 43, 25, 96, -88, -102, 3, 30, -76, -85, -64, -45, 126, 11, 120, -38, 103, 14, -109, 109, 10, 48, 84, -59, 6, -93, 55, -24, -111, 13, 21, 12, 86, -112, 65, 94, 56, 121, -32, -25, 98, -35, -75, -89, 77, -24, -120, 98, -123, -73, 119, 20, 1, 38, -62, -32, -19, 64, 8, -52, 14, 69, -62, -101, 71, -57, 97, -4, -104, -74, -57, -25, 124, 14, -25, 57, 73, -124, -25, 57, 122, -8, 93, -40, 17, -31, -107, -79, 77, -19, 15, -117, 62, 89, -116, 70, 109, 63, -11, 102, 77, 111, 58, 35, 17, 91, 18, 9, 122, -115, 63, -2, 27, 29, -67, 125, 28, -111, -79, 5, 110, 72, -80, -80, -127, 19, -41, -36, 96, 79, -94, 22, -112, -118, 99, 97, -40, 23, -48, 101, -82, -108, 53, -24, -73, 13, -34, -77, -37, 86, 6, 58, -74, -14, 64, -73, -115, 20, 12, -6, 111, -125, -31, 8, 103, -72, -17, 101, 12, -99, 38, -126, -48, 110, -64, 9, 29, 70, -68, -1, 103, -21, 107, 9, 29, -122, -78, 49, 95, 44, -23, 50, 99, -108, -105, -15, 18, -17, 51, -11, 87, -79, -78, -94, 48, 113, -23, -110, 104, -128, -66, -125, -51, 48, -111, -34, 15, -77, 55, -98, -62, 120, 114, -25, 52, -45, 74, 122, 70, -20, 43, 40, 78, -73, 35, 44, -51, -114, -34, -112, 20, 102, 123, 56, 60, 96, 31, -77, -65, -101, -59, -18, 115, -47, 86, 80, 127, 43, 18, 58, 26, 79, 66, 79, 75, 18, -12, -75, 39, 67, 119, 75, 2, 116, 52, -99, -128, -26, -102, 72, -88, 40, -14, -122, -116, 51, -18, 55, -53, -118, -66, 58, 97, 97, -54, -26, 68, 7, -68, -110, 23, -75, 123, 38, -84, -100, -117, -116, 95, 11, -73, -82, 48, 64, -19, 85, 38, 104, 40, -96, -122, -85, -23, -85, -95, 42, -103, 56, -87, 35, -103, 68, -10, 79, 69, -117, -20, 93, -57, 111, 23, -72, -61, 72, 79, 44, -68, -104, -66, 8, -61, -67, -23, -109, -67, -51, 81, -33, 53, 73, -81, 17, 39, 101, -109, 118, -91, 15, -77, -116, -29, 28, 23, 113, -96, 1, -34, -19, -108, -64, 103, 70, 1, 2, 22, -108, 32, 102, 67, 13, 66, 54, 84, -64, -86, -72, -14, 4, -45, -58, -27, 11, -98, 56, 5, -43, -55, -106, 75, -103, -112, -25, -21, -6, -48, -128, 75, -68, 24, 4, -91, 110, -127, -45, 121, 94, 112, -20, -54, 30, -16, -16, 19, 2, 75, 67, 26, 80, -73, -90, 0, -67, 29, -85, 65, 123, 27, 37, 104, -39, 81, -126, -90, 27, 5, 40, 108, 91, -15, -102, 79, 97, -23, -50, -9, 113, -34, 11, 13, 62, -63, -76, -21, 79, -99, -93, 6, 27, -51, 53, -16, 116, 82, 15, 38, 30, 25, -63, -125, 103, 118, 48, -14, -64, 24, -18, -113, 111, -127, -114, 97, 117, 40, -67, 45, 8, 103, 51, -104, 62, -108, -77, -93, -54, 11, -100, 88, -79, 24, -57, -33, -117, 22, 56, 68, 25, 73, 112, -44, 28, 114, 126, 52, 119, 57, 27, -32, -10, 45, 0, -12, -110, -122, -26, 6, -128, -106, 70, -60, 123, 0, 21, -27, 0, 37, -123, 0, -73, 42, 1, -22, -18, 34, -42, -63, -69, -94, 50, -24, 9, -37, 11, 59, 118, 81, -67, -28, -33, -10, -57, 10, 34, 75, 27, -86, 85, -122, -37, -40, -22, 119, -57, 108, -66, -26, 113, 98, 19, 18, 44, -112, -128, -127, -38, -35, 113, 58, -80, -5, -104, 6, 18, 51, -44, -64, -29, -124, 58, -22, -85, -43, -72, 29, 83, 95, -80, -86, 124, 94, -121, -111, 48, 67, -121, -31, 96, -107, 43, 127, 127, 119, -88, 20, 12, 29, -106, -128, -95, 120, 25, -72, -29, 43, 6, -73, -93, 29, -95, 45, -61, 11, 46, 59, -86, 66, 4, 59, 45, 20, -38, 43, 67, 123, -74, -21, -29, -113, 99, -108, 101, 4, -10, 60, 29, -71, 3, -81, -90, -17, -61, -53, 39, 3, 0, -16, 12, 90, -101, -85, 43, -61, -76, -40, -9, -27, 91, -80, -62, 61, 36, -88, -36, 11, -111, -124, 124, 107, 54, 8, 82, -92, -75, -7, -45, 74, -80, 64, -5, -31, 71, -125, -11, -16, 124, 106, 16, -98, 63, 25, -126, -89, 15, -6, 32, 43, -15, 112, 53, -10, 3, -56, 10, 21, -92, -68, -109, 34, 95, -34, -111, -83, 14, 67, 37, 106, 48, 82, 38, 7, -61, 37, -62, 48, 86, 46, 13, -29, -43, 26, -16, -76, -39, 16, 37, 16, -83, -95, 53, 39, 16, 82, -67, -3, -34, -40, -86, -56, -13, 127, 41, -42, 67, 119, -89, -47, -119, -28, 83, -16, 48, -13, 28, 60, 76, 61, -29, 53, 63, -33, 36, -101, 46, -21, 78, 50, 29, -21, 60, 97, 0, 13, 65, 42, -48, 16, -94, 10, -75, 126, 114, -48, 30, 111, 8, 3, -87, 102, 72, -56, -40, 3, -109, -91, 126, 48, -110, -29, 90, 58, -102, -21, -118, -9, 73, 102, -28, 68, 60, -51, -67, -90, 123, -110, -9, 7, 6, 106, 102, 95, -67, -126, -105, -81, 94, -64, -117, 71, 79, 97, -90, 121, 12, 102, -22, -122, 97, -90, 103, 18, 94, 60, 121, 6, 47, 95, -52, 32, -15, -30, 5, -68, 65, 54, -109, 19, 19, 79, 11, 11, 10, -40, -67, -68, -68, -56, 63, -1, -81, -96, 94, 45, 27, 109, -81, -84, 122, -48, 83, -123, -124, -118, 22, 120, -3, -72, 15, 102, -89, 16, -97, -34, -121, -73, -49, -57, -32, -7, 120, 27, -36, 74, 113, -125, -102, 75, 62, -48, 88, 120, 24, 106, -77, 125, -111, 112, -111, -16, -89, -94, -77, 14, -61, 42, 81, 71, 118, -15, 19, 122, 28, -117, 115, 13, -123, -120, 90, -44, 89, 22, 119, -85, 115, 44, -17, -38, -60, 75, -39, 108, 42, -55, 86, -96, 68, 79, -24, -83, -52, 64, -96, 120, 116, 31, -2, 42, 120, -117, 125, -6, 89, 93, -92, -25, -57, -62, -52, -40, -87, 47, 71, -102, 118, 117, -108, -57, -64, 72, 99, 42, -116, -34, -53, -128, 59, 87, -94, 96, -113, -119, 42, -124, 90, 42, 65, 71, 85, 18, 60, -24, 46, -126, 7, 93, 5, -48, 92, 17, 15, 5, -89, 92, -34, 37, -72, 75, 25, -51, -65, -56, -19, 69, 63, 59, 87, 100, 7, 90, 112, 23, -122, 108, -101, -70, -72, 79, 27, 114, 14, 26, -64, 73, 52, -17, -97, 116, -108, -99, -69, 113, -54, -125, 25, -5, 70, -92, -91, -91, 29, -51, 56, -105, -7, 73, 50, 61, 79, -77, 4, 47, -21, 96, 14, -63, -126, 79, -36, 26, 108, 95, 114, 51, -59, -81, -17, -11, -83, 125, -24, 29, -60, 15, -39, -12, -14, 112, 65, -52, 5, 10, 117, -4, 32, 71, -44, 9, -86, -59, -92, 96, -36, 127, 57, 12, -28, 24, 66, 96, 74, 55, -84, 80, -120, 76, 37, -95, 55, -4, -37, -53, 72, -99, -28, -55, -71, -45, -20, 105, -34, 54, -122, 50] astore_1 aload_0 ldc literal_1292:"__e7-20.png@0" aload_1 invokevirtual java.lang.Object put( java.util.Hashtable, java.lang.Object, java.lang.Object ) // pc=3 pop arrayinit [-61, -40, 41, 54, -104, -67, -64, 9, 112, -103, 29, 96, 64, 14, 0, 78, 35, 102, 0, -68, 57, 15, -16, -48, 3, -96, 78, 18, -38, 18, 57, -63, -49, -100, -34, -4, 107, 49, -27, -41, -83, 79, 113, 19, -105, 5, 95, 81, 89, -40, -49, 41, 52, -49, 48, 110, -111, -7, -42, 91, 66, 30, -68, -60, 100, -64, -114, 91, 16, -108, -39, -71, -14, -79, 63, 65, 80, -117, 91, -78, -44, 85, 90, 56, 113, 71, 2, -114, 22, -117, -62, -87, 18, 115, 72, -85, -16, -128, -94, -102, 35, -48, -33, -41, 13, -123, -115, 19, 40, -47, 59, 0, 3, -55, -121, -69, -80, 31, -64, -23, -76, 12, -103, -32, -88, -104, 83, 39, -110, -49, -34, -35, -30, 25, -16, 66, 63, -26, 18, 24, -90, 86, -126, -89, -81, 62, 52, 38, 46, 123, 87, 123, 114, -15, -85, -33, -37, -89, -18, 21, 72, 122, 92, 107, 14, 48, -19, 9, -16, -46, 27, 96, -42, 23, -48, 47, 20, -96, -57, 19, 102, -118, 21, -31, -86, -41, -38, 99, -105, -36, -87, -116, -58, -45, -123, 0, -6, 55, -93, -5, 78, 0, 115, 7, 0, 94, 32, -101, -95, 80, 120, -35, -24, 3, -71, -63, 50, 87, -1, -112, -84, -37, -128, -83, 116, -114, -105, 0, 53, 39, -42, 15, -107, -99, 4, 108, -104, -124, -6, 1, 6, 96, -108, 95, 58, -116, 45, 28, 38, 47, 95, -66, -100, 35, 50, -65, 8, -68, -69, -46, -63, -34, 117, 55, 4, 31, -80, 3, -65, -67, -74, -96, 29, -102, 15, 82, -15, -9, -31, -104, -113, 49, -28, 37, -19, -102, -17, 75, -98, 24, 0, -119, -29, 3, 32, 22, -37, 15, 34, -47, 125, 32, 20, -39, 3, 56, 95, 20, -29, -77, -94, 5, 41, 41, 41, 31, 1, 1, 1, 13, -74, 64, -32, -86, 44, 12, -40, -106, -26, -111, 17, -30, 113, 45, 56, 25, 18, -28, 87, -104, 18, 29, -43, -32, -24, -20, 66, -72, 16, 123, 74, 97, -41, -87, -56, -110, 78, -56, 25, 120, 8, -89, 111, 54, 66, 45, 0, 100, -76, 13, -63, 42, 26, 58, 88, 78, 73, 1, 26, -37, 67, -127, -124, -35, 101, 20, -103, 46, -3, -125, -8, -66, -118, -40, -96, 65, -122, 114, -78, 20, -3, -8, -65, 109, 3, 74, 43, -62, -64, -56, 34, -16, 13, 46, 120, -88, 90, -50, -96, -85, -85, -85, 111, 100, 120, 24, -90, 30, 63, -122, -23, 103, -49, -32, -43, -37, 57, 104, -114, 59, 14, -41, -92, -59, -95, 76, 78, 10, -6, 46, 93, -128, -105, 111, -33, -62, -13, -23, 105, 36, 96, -49, -52, -37, 116, 118, 116, 64, 90, 106, 42, 28, 61, 122, 116, -63, 73, -48, -118, -40, -40, -112, -77, -127, -127, -96, -64, -57, -89, 95, 101, 111, 127, 38, 76, 71, -25, -119, 44, 37, -27, -110, -78, -24, 104, -113, -12, -80, 48, 80, 17, 18, -78, -4, -30, 102, -112, -103, 121, -74, -118, -107, 21, 90, -86, -86, -32, 99, 60, 68, -17, -96, 44, 115, 115, -88, -91, -92, -124, 6, 6, 6, 104, -95, -89, 7, 93, 54, -74, 79, 68, -117, 117, 92, 66, 112, -17, 94, -13, 60, 105, -112, 0, -62, -59, -59, 13, -114, -114, 78, -13, -41, 105, 105, -23, -72, -21, 121, -90, -92, -92, -50, -113, -19, -37, -73, 111, -2, 26, -39, 126, -16, 67, 49, 126, 84, -76, -40, -76, 117, -21, -42, -87, 101, -53, -56, -92, 81, 95, -122, -106, -106, -118, -9, -73, -22, -89, -38, -81, 17, -99, 62, 28, -89, -93, -93, 107, 66, 39, 45, 103, 112, -41, 127, -58, 63, 84, -117, -26, -41, 18, -20, -85, 31, -125, -40, -63, 25, -40, -45, 51, 3, -102, 117, 15, -63, -66, 99, 26, -10, -10, -66, -104, -89, 3, -22, 107, -44, 62, 4, -41, -82, -25, -64, 17, 50, 8, 116, -18, -125, -64, -20, 86, -1, 85, -111, -36, -55, 84, -61, 53, -39, -53, 112, 46, 45, -52, 17, 74, -35, -24, -64, 93, -117, 25, 87, 113, -79, -96, -28, 83, -3, 67, 48, -61, -75, 6, -62, -28, 97, -50, 106, 107, 97, -69, -4, 106, 48, 16, -90, -128, -115, -21, 104, -58, 68, -41, -83, 11, 49, -75, -114, -30, -29, -48, -54, 29, 96, 81, -70, 80, -82, 108, -111, 97, 31, 16, 122, -30, -59, -95, 67, 126, -80, 99, -57, -114, 3, -97, 84, -96, 81, 47, 50, 16, 100, 92, 122, -4, -77, -126, -59, 33, 94, -77, -70, -45, -86, -81, -5, 47, -21, -61, -16, 85, 107, 24, 41, -2, 127, -28, -99, 7, 80, -107, -55, 18, -17, -113, 107, -60, -128, 89, 80, -126, 36, 37, 11, -110, -109, -128, -128, 32, 57, -118, -110, -125, 100, 1, 5, 36, -104, -56, 6, 12, -128, 10, 38, 68, 5, 84, 64, 64, -110, 72, -112, 28, 69, 37, -25, 40, 72, 18, 16, 69, 17, 20, -45, -1, 125, -100, 119, -41, -69, -82, -80, -85, -18, -83, 91, -17, -43, -19, -94, 107, -26, -5, -66, -103, 62, 117, 78, 29, -122, -103, -2, 117, -45, -106, -24, 79, -47, 65, 127, -114, 21, -38, 18, 117, 80, 121, 81, 10, 89, -66, 108, 72, 117, 103, 65, 99, -104, 16, 30, -5, 49, 33, -50, 124, 77, -23, -97, -19, -4, 54, -121, -76, 43, 32, 123, 27, -4, 83, -28, -32, 116, 67, 20, -89, -14, 20, 32, 105, -66, 6, -77, -25, -2, 38, 72, -6, 69, -31, 94, 75, 119, 111, -21, 6, -50, -25, 14, 22, 70, 35, 119, 9, 80, 81, 81, 122, 31, -67, 29, -27, 100, 125, 92, 124, 15, 73, 119, -62, 96, 103, -94, -9, 74, 118, 3, -25, 107, 110, 106, -38, -72, 31, -118, -64, 102, 102, -32, 61, -64, -71, -95, 47, 68, -120, 3, -31, 98, -100, -72, 33, -50, -119, -120, 45, -100, 68, -97, 3, 87, 68, 56, 112, -110, -113, 29, 54, -20, -52, 79, -108, 25, -23, -88, 73, -1, -97, -55, 109, 127, -3, 89, 65, 22, -94, -101, -50, 90, -118, -51, 38, -3, 63, 42, 6, 26, 42, -77, 9, 93, 68, -24, -110, 41, -3, 87, 127, 14, -23, 127, 76, 58, -102, 27, -77, 26, -86, 42, -58, 9, 96, 49, -46, 67, 0, -117, -90, -94, -36, -47, -54, -46, 66, -26, -1, -58, 107, -57, 94, 8, 96, 9, -79, 87, -6, 38, -64, 66, -56, 86, -118, -118, -33, 74, 60, 72, -42, 75, -83, 70, -23, -76, 14, -28, -36, 85, 32, -17, -89, 1, 1, 115, 97, -120, 24, 11, 64, -34, 83, 25, 26, -63, -6, 32, -98, -113, 9, -18, -111, -70, 46, -28, 32, -59, 66, 43, -49, 44, -61, 111, 39, -127, -83, 14, -37, 60, -89, 123, 29, -75, 29, 114, 59, 45, 3, 77, 97, 21, -78, 27, -69, -49, 24, 67, -49, 91, 7, 59, -113, 104, 65, -49, 83, 27, -58, -2, 122, -80, 11, -75, -128, 27, -79, -105, 57, 20, -75, 31, -50, -41, -19, -95, -17, -91, -125, 109, 10, 98, -1, 40, 123, 92, -35, -6, -88, -26, -114, -67, 103, -38, -76, 109, 78, 64, -41, -31, 12, 100, -11, 14, -40, -109, -2, 3, 98, 111, -86, -52, -31, 98, -93, 117, -13, -120, -109, -47, 86, 115, 61, -7, -53, 127, 124, -106, 28, 115, 122, 32, 53, -31, 12, 82, 98, 78, -29, -46, 9, 77, -78, -58, 94, -44, 123, 113, -30, -128, -68, -104, -85, -99, -12, 79, -41, 118, -54, -50, -114, -98, 87, 84, 120, -9, -58, -11, -117, 30, 125, -111, -31, 62, 15, -78, 31, -36, -2, -57, -63, 88, -113, -68, 104, 37, -113, -46, 81, -115, -25, -118, -15, 35, -36, 102, 55, 30, -92, -35, 45, -81, 40, 43, -98, 49, -120, 46, 63, 35, -115, 34, 39, 53, 49, -82, -83, -95, 30, -49, -5, -5, -111, 126, 55, -106, -48, -72, -81, -96, 35, -25, -4, 78, -27, -126, -53, -58, 109, 15, -50, -23, 34, 51, 72, -25, -8, -33, -67, -2, -125, -32, 29, -37, 31, 70, -19, 29, -56, -67, 100, -106, -109, 29, -84, -77, -102, -12, 95, 16, 98, 47, -80, -112, -123, -123, -59, 123, -3, -6, -11, 37, 68, 22, 121, 25, 17, 108, -27, 69, -20, 83, 126, 41, -13, 102, -59, -118, 21, -94, -124, 42, 71, -33, -68, 20, 94, 82, -112, 58, 81, 95, -107, 79, 100, 88, -28, -113, -41, 87, -26, -114, -41, 62, -55, 30, 47, -51, 77, 124, -33, 84, 85, 48, -34, 82, 91, 60, -34, 74, 64, -116, 41, -128, -15, -88, 48, 125, 34, -18, -10, 85, -121, -65, 49, -83, -93, -84, -95, -111, -66, 119, -17, -66, -95, -92, -92, 36, 24, 27, 27, -125, -56, -90, -128, -120, -120, -56, 84, -74, 45, 30, 61, 122, -124, -54, -54, 74, -24, 25, -101, 36, -81, -96, -94, -2, -31, 0, -94, -27, 11, -25, 46, 92, 67, 57, 127, -23, -118, -59, -13, 127, -6, -3, -14, -39, 111, -94, -74, -119, 52, -120, 118, -66, -71, 123, 72, 97, -65, 120, 12, -117, -58, -6, -75, -92, -1, -96, 24, 110, -99, -75, 59, 41, 116, 51, 26, 114, -116, 65, -79, -116, 1, -22, 106, 124, 64, -33, 110, 2, 56, 24, 32, -56, 95, 23, 13, 89, 10, 56, -29, 60, -57, -22, -121, -49, -20, -90, -65, -103, 85, -90, -54, 64, 91, 91, 3, 2, -94, -14, 120, 89, -89, -121, 87, -11, 6, 16, -35, 34, 15, 85, 53, 53, 76, 61, 59, 108, -2, -101, -51, 116, 115, -119, -13, -112, -88, -95, -98, 78, 87, 71, 91, -45, -105, -15, -47, 17, 20, -25, 101, -31, -58, -107, -13, -56, 72, -119, -61, -123, -96, -128, 79, 91, -73, -120, 126, 23, 12, -95, -72, 77, -122, -42, -43, -55, -2, -31, -87, 99, 62, 85, 78, 14, 118, -50, -33, -100, 47, 93, 69, -49, -44, -60, 56, -94, -10, -114, 35, -102, -17, 58, 33, -62, 97, -45, -66, 25, 107, -125, -102, -82, -89, -66, 23, -96, 113, 40, -2, -80, -108, -51, 63, 4, 22, 11, 9, -27, -73, -111, 100, 77, 118, 87, -32, -62, -2, 109, -20, -40, 45, -62, -12, -128, -72, 39, 97, 33, -58, 124, -51, 66, -116, 49, -99, -24, -117, 17, 74, -11, -5, 28, 34, 115, -94, -53, 88, 95, 23, -50, 78, -5, 96, 109, 109, -123, -85, -105, -61, 80, 82, 84, -126, -38, -22, 26, 52, 55, 53, -111, -75, -90, -70, 26, 69, -123, 69, -72, 68, -64, 51, 35, 35, 67, -40, 88, 91, 99, -65, -109, 3, -24, 105, -88, -34, -112, -90, -109, -30, -120, -27, -75, -67, -123, 84, -24, 47, -34, -116, -127, -46, 45, -24, 126, -64, -123, -63, 90, 121, -68, -23, -38, -115, 55, 79, 77, -15, -68, 74, 26, -35, 89, -100, -60, 51, 113, -12, 21, -13, 98, 106, 108, 73, -28, -14, -6, 105, -93, -73, 12, 104, 36, 75, -36, 25, 62, -65, -120, 19, -58, 100, -87, 26, 62, 63, -11, 0, -122, 2, -127, -31, 80, 124, 120, 126, 30, 125, -57, -73, 126, 77, -105, 119, -115, -75, -94, 112, -117, 54, -71, 101, 124, 75, 3, 10, 23, 37, 33, -30, -55, 19, -91, 29, 44, 75, -9, 71, 123, -76, -14, 36, 94, -29, -93, -126, 56, 26, 109, 2, -33, -37, -122, 80, 118, 93, 95, -49, -92, 77, 34, 31, 4, -39, -76, 72, -13, 109, 2, -73, -74, 30, -115, 53, 69, 80, -102, 45, 14, 70, 104, 98, -93, 6, -23, -2, 74, 89, -46, 28, 14, 61, 18, 59, -83, -36, -73, 105, -37, 121, 108, -85, -74, 119, -72, -20, 64, -41, 17, 19, 60, 61, 100, -128, 102, 67, 97, -44, -85, -80, -96, 81, -101, 19, 61, 1, -114, -24, 13, 116, 69, 111, -112, 27, 89, -97, 29, -75, 65, -125, 6, 7, -22, 85, 55, 76, -115, 37, -49, -23, 116, -43, 67, 25, 31, -61, -116, 17, 79, -117, 37, 22, 113, -118, 121, -16, 124, -70, 73, 115, -27, -53, 35, -106, 98, 52, 24, 87, -96, 43, -96, 25, 67, 9, 61, 120, 119, 103, 24, 59, 121, 53, -52, 72, 127, 33, -25, 61, 53, 117, -62, -49, 56, -17, 56, -18, -75, 127, 109, -60, -43, 32, -70, -28, -40, -61, 79, -85, 31, -98, 37, 67, -118, -114, -90, 8, 116, -74, 70, -95, -93, 37, -118, 104, 35, -47, -46, 112, 21, -115, -43, -95, -88, 125, 124, 6, -27, 5, 126, -120, 12, -77, 109, -73, -79, 80, -96, -101, -50, -82, -21, -43, -91, -127, -25, -45, 86, 33, -67, 109, 37, -62, 8, 56, -107, 117, -121, 29, 31, 26, -27, -127, 126, 45, 96, 64, 19, 24, 36, -6, 61, 44, 120, -11, -112, 10, 13, 49, 11, 51, 10, -50, -50, -97, -111, 60, -106, 38, -19, 45, 43, 76, 112, 68, 111, -21, 121, 76, -66, -113, -61, 112, -33, 93, 116, -44, -99, 83, -8, -91, -24, 38, 13, -54, -107, -37, -49, -48, -102, 42, 30, 101, 28, 20, -78, -95, -57, 102, -69, 53, 16, -80, 90, 14, 90, -111, -91, -32, -39, 69, 13, 9, 27, 6, 112, 25, -84, 60, 38, 116, 100, -27, 15, 67, 11, -47, 29, -108, -79, 58, 126, 52, 56, 116, 107, 43, 34, 50, 93, -112, 85, 126, 9, 57, -113, -62, -112, 83, 113, 21, 81, 105, 46, -16, 8, -34, 10, 19, -65, 77, 48, -15, 97, -123, -71, 63, 27, -10, 92, 100, -121, -59, -59, -11, -48, -12, 88, 3, 49, 45, -54, -113, 60, 50, -117, -8, 126, -81, 85, 49, -43, 122, 7, 80, -106, 54, 117, 104, 96, -8, -91, 33, -98, -113, -38, 97, -24, -107, 59, -98, -65, 50, -57, -48, -24, 94, -12, -113, -104, -93, -67, 87, 23, 93, 4, -68, 120, 84, 39, -119, -52, 66, -82, 47, 97, -47, -44, -57, 124, -125, 24, -26, -2, -53, -58, -94, 63, 66, -117, 98, -61, -19, -117, -37, -35, -51, -22, -57, -93, -50, -30, 125, 126, 10, 38, -98, 20, 97, -94, 60, 7, -29, -91, 89, 24, 127, -104, -115, 119, -113, 11, -16, -2, 113, 46, -122, 99, 47, 98, 52, 57, 2, -29, 57, -119, 120, 91, -108, -122, -9, -59, 25, -8, -104, 26, -115, 22, 87, -77, -2, 8, 53, -98, -17, 22, 117, 51, 75, -26, 16, 117, 3, 22, 70, -105, 16, 125, 106, -57, 83, 74, 22, -26, 46, 27, 59, 29, -49, 108, -33, -19, 114, 97, -121, -98, -21, 101, 109, 17, -121, -13, -54, -53, 73, 63, 41, -15, -86, -12, -31, 45, 4, 80, -24, 11, -39, -118, -18, 64, 113, -92, -102, -79, -31, -82, 37, 47, -54, 67, 29, 48, -4, 56, 0, -3, -39, 6, -72, 46, 68, -121, -77, -108, -108, -72, -61, -79, 30, 21, -105, 109, 71, -2, 108, -29, -126, -81, -103, 94, -38, -11, 67, -19, 5, -119, -127, -29, -113, 115, -82, 78, 118, 117, -106, 33, 59, -60, 19, -103, -90, 44, 24, -72, -91, -119, -111, 116, 19, 60, -65, -77, 3, 45, -57, -59, 113, 103, 39, -61, -37, 67, 91, -88, -1, -46, -7, 112, -56, 76, -2, 102, 126, -52, 113, 84, -25, 70, -96, -71, -20, 14, 6, 59, -54, -48, 92, -111, -5, -42, -49, -47, 80, -21, -105, 14, 94, -98, 92, -13, -54, 34, 36, -13, 90, -90, -94, -4, 50, -73, -94, 39, 67, -112, 104, 5, -47, -97, 39, -115, 23, -27, 26, 4, 65, 39, 0, 85, -123, 5, 18, -3, -100, 17, -19, 24, -128, -94, -48, -85, 56, 102, 97, -98, -83, -79, -103, 119, 90, -57, -15, -45, -35, -122, -3, -67, 23, -49, 97, 32, -20, 60, 122, 67, 3, -33, -44, 102, 36, -82, -84, 11, 51, 100, -82, 15, 82, -4, 88, 127, 86, -125, 0, 22, 10, 4, -80, -112, 70, -103, -101, 0, 26, 66, -76, 81, 21, 32, -121, -26, 43, -69, -48, -101, 118, 16, -19, -41, 13, -47, 119, -41, 46, -23, 121, -78, -51, -41, 58, 23, -111, 17, 17, 115, -102, 26, 27, 31, 126, 120, 63, 57, -107, 73, -127, -15, 9, 66, 123, 71, 48, 126, -81, 21, -29, -31, -43, -104, -72, 82, -115, -15, 107, 53, 24, 127, -48, -127, -15, -127, -105, 24, 31, 127, 75, 30, 71, 56, -79, 38, 71, 95, -66, -20, -81, -86, -84, -84, 49, 48, 48, -8, 14, 92, -116, 116, -41, 122, 61, 111, -54, -59, -60, 80, 51, 38, 71, -69, 9, 104, -47, -118, -55, 87, 29, -8, 48, -6, -108, 12, 46, -34, 15, -41, -93, -108, -40, -32, 39, 28, -108, -62, -125, -77, -6, 72, 63, -91, -127, -42, -30, 24, 111, -46, 12, 34, -71, 110, 54, -93, 2, -61, -68, -69, 26, 27, 41, 62, 105, -79, 45, -124, 54, 43, 5, -44, 54, -52, -121, 26, -53, 2, 40, -16, -48, 65, 125, -61, 2, 104, -78, 46, -124, 41, -41, 90, 104, 19, -49, -107, 89, -25, 117, -55, -48, -50, 57, 36, -75, 110, -10, -30, 63, -43, -90, 32, 127, -82, -73, 125, -44, -29, 26, -77, 3, 81, -105, 25, -128, -4, -37, -18, -88, 127, 16, -120, -118, 123, 71, -79, 119, -121, 56, -60, 104, -41, -32, -26, 73, 71, -12, 86, 69, -93, -21, -55, 45, 12, 54, 37, 96, -96, 33, 1, 25, 87, 28, -34, -97, 48, 96, 18, 34, -37, -7, 83, 125, -117, -5, -89, 44, -39, 82, -114, -22, -115, -8, 105, 113, 34, -47, 67, 9, 97, 54, -110, -16, -43, -26, 70, -6, -111, -19, -120, -9, -44, -5, 28, 117, 51, 90, -47, -41, -49, 111, -23, 15, 23, 7, 63, 31, -30, -9, -22, -59, -24, -45, 115, 71, -49, 127, -35, 16, -25, -18, 41, 115, -24, 10, -20, -49, 104, -67, -39, 113, -25, 113, 80, -107, 107, -58, -66, 28, -6, -65, -77, 115, -42, 114, -121, -34, 88, -27, 41, 116, 88, -85, 32, 106, -83, 58, 114, 61, 47, -95, -85, 53, 2, 53, -99, 7, -47, -112, -25, -115, -108, -99, -57, -16, 100, -69, 24, 94, 92, 89, -120, -60, -104, 40, -56, 28, 41, -6, 72, -71, 89, -13, -25, 34, 103, 55, 46, 98, 50, -31, 90, 24, -27, -93, 43, 58, 120, -43, -61, 12, 97, 7, 109, 16, -24, 98, 62, -24, -90, 46, 124, 75, -127, 105, -31, 15, 101, -102, 4, 107, 46, -72, -106, -70, 103, 53, -110, -19, -41, -31, -66, 7, 51, -14, -68, 57, 80, 22, -64, -118, 55, 5, -85, -16, -82, 124, 35, 38, 74, -103, 48, -107, 105, -16, -74, -100, 7, 47, -110, 120, 8, 24, -57, -125, 20, 111, -90, -46, -67, 26, 107, 22, -50, 88, -72, -112, -117, -25, -95, -18, -14, 117, 48, -90, 88, 13, 99, 18, 37, -116, 103, 45, -3, -73, 46, -90, -126, -55, -30, 85, -40, 69, -79, 2, 74, 27, 57, -86, -1, 54, -6, -27, -95, 110, -57, -74, -52, -11, 56, -9, 64, 4, -121, 111, 109, -62, -51, 44, 123, -76, -106, 30, -64, -5, 2, 125, -12, 21, 29, 66, 77, -34, 105, -68, 123, -24, -118, 87, -9, -35, 38, 73, -65, 40, 87, 34, 111, 25, -70, 120, -6, -90, 68, 102, -28, -99, 27, 124, -1, 49, -77, -66, -21, 89, -95, -66, 103, -48, 103, -59, 83, -73, -96, 126, 61, 11, 14, 7, 52, -66, 100, -98, -103, -1, -6, -113, 115, 114, -3, 89, -37, -47, -87, 2, -68, 51, -64, 104, -73, 30, 74, -45, 20, 17, 121, 74, 12, -63, -10, 28, 8, -36, 73, -121, -53, -69, -42, -67, -68, -94, -73, 46, 35, 88, 103, 29, -114, 26, -45, -29, -4, 33, 46, -28, -60, -55, 97, -72, 67, 31, 24, 51, 7, -98, -23, -30, -47, 89, -34, 103, 127, -76, -71, -112, -99, -60, -96, 110, -61, 9, 57, 3, -106, 15, -92, 53, -92, 89, 115, 57, 73, 98, 59, -49, -80, 97, -41, 57, 54, -84, 17, -102, 119, -127, 77, 125, -7, 9, 49, 115, -70, 108, 89, 123, -90, 38, 81, 51, -102, -121, 43, 69, -25, -38, -52, -28, -45, -103, -104, -104, -8, 76, 101, -97, -128, 35, -63, -31, 120, 85, 21, -115, -106, -94, 88, -28, 36, -124, -29, -78, -101, 38, 118, 7, -57, -31, -126, -101, 10, -86, 82, -19, -96, 19, -45, 13, -83, -24, 103, -48, -72, -35, 13, -43, -88, 46, 40, -35, 120, 10, -123, -16, 14, 76, -51, 37, 108, 76, 11, 45, 8, -89, 46, -1, 111, -65, -3, 70, 69, -6, 9, -39, -76, 114, -98, -39, -26, -43, -13, -113, -2, 16, 64, 114, 117, 116, -85, 47, 43, 65, 103, 98, 12, 34, -81, 93, 11, -7, -111, 57, -117, 55, 90, 116, 31, -70, 89, 14, 14, 65, 17, 80, 44, -94, -128, -17, -51, 59, -120, 111, -18, -122, 107, -24, 45, -36, 120, -36, 3, -57, -77, -23, 88, -79, -39, 101, -108, 112, -117, 126, 115, 112, -49, -103, 63, 107, 83, -123, -40, -118, -41, -39, -77, 73, 12, -92, -97, 16, 106, 106, 26, 126, 6, 70, -106, 31, 118, -22, 17, 7, -57, 13, 83, -1, 18, 109, -16, -7, 115, -68, 121, 77, -128, -23, -73, 111, -89, -96, 4, -47, -114, -29, 45, 1, 38, 6, 90, -102, 49, -40, -34, 70, -122, 21, -29, -29, -29, -28, 103, 3, -3, -3, 40, 47, 47, 71, 70, 70, 6, -30, -29, -29, 17, 26, 26, -6, -61, 53, 52, 10, 53, 53, -83, -93, -44, -44, -96, -70, 98, 5, 79, -127, -71, -7, -7, -45, 91, -73, 62, 87, -96, -92, -100, -109, -81, -82, -82, 18, -85, -91, 5, -11, 85, -85, -74, -52, 52, 87, -119, -102, -6, -61, 67, 79, 79, 124, 6, -90, -78, 109, -66, -47, 41, 105, 34, 32, 74, 42, 51, 51, -86, -89, 0, 3, 45, 45, -44, -104, -103, -65, -121, 22, -100, -4, 104, 107, 107, 67, 75, 75, 11, 25, 68, -16, -13, 11, -63, -43, -43, -107, 124, -99, -112, -112, 64, 0, 10, 14, -78, 18, 125, -14, 61, 111, 111, 111, -16, -15, 9, -112, -57, 18, -41, -28, -71, -124, -115, -97, -126, 22, -57, -7, -1, 93, 35, -116, 106, -19, 58, 93, 125, 125, -3, 73, -94, -69, 115, -102, 127, -45, -16, 100, 74, -1, -54, 20, 113, 8, -83, 37, -38, -32, -97, 62, 72, 39, 85, -79, 58, 60, -18, -57, -83, -63, 73, 104, 84, 12, 35, -72, -17, 3, 116, -86, 95, 66, -83, 114, 4, 26, 85, 35, -28, -10, 20, 113, 79, -18, -63, 115, 48, 28, -23, 3, -101, 103, 39, -60, 78, -58, -15, -50, 120, -112, -12, -16, -32, 61, 125, -6, -12, -25, 11, 126, -10, 8, 54, -27, -60, 97, 107, 77, 120, 122, 122, 78, 125, 94, -50, 127, 3, 43, -26, -43, -116, 32, -8, -59, 123, 64, 71, 96, -87, -79, -87, -28, 106, 56, -85, -46, 67, 71, 120, -59, -124, -79, 52, 37, -4, -51, 86, 66, 79, -98, -5, -115, -100, -78, 123, 53, -53, -74, -85, -75, 114, 70, -111, 119, -126, -125, -125, 123, -120, 96, -120, 97, 98, 95, -95, 66, -104, -8, -50, 1, -52, -57, -80, -128, 66, 108, -29, -110, -17, 62, -73, -116, 35, -101, 116, 106, -62, 21, -47, -105, 105, -125, -95, 98, 119, 12, 22, 59, -29, 121, -98, 3, 6, -119, 117, -70, 53, 65, 31, 15, 67, -108, 112, -57, -98, 19, -123, 62, 18, -88, -68, 32, -128, -18, 36, 3, 60, -14, 92, -121, 68, -45, -107, 35, -33, 56, -121, -40, 40, 3, 116, -114, -47, 67, -19, 0, 29, -12, -3, -103, 33, 99, -73, 2, -62, -26, 75, 32, -77, 103, 57, 54, -87, 46, -101, 32, 23, 103, -1, 5, -95, 90, 68, -55, 46, 67, 79, -84, -93, 42, -110, -48, 87, -109, -98, 78, -55, -49, -90, -58, 80, 47, -90, -4, 91, -121, -17, -50, 13, 12, 20, -98, -101, -40, -22, -54, 101, -8, -15, 84, 85, 16, 125, -38, -126, 24, -34, 37, -116, 23, -6, -62, 24, -38, 37, -124, 94, 109, 33, 116, 40, 11, 33, 69, -126, 23, 38, -84, 76, 49, 127, 5, 50, 127, 87, 59, 35, 61, 58, 15, 43, -13, -101, 123, -116, -11, 117, 8, -25, -5, 47, 103, 23, -25, 89, -104, -50, 38, 116, -18, 84, 75, 62, -77, -25, -26, -4, -76, -83, 104, 127, 3, -22, 43, -5, 21, 89, -50, 89, 75, 28, 13, -74, 20, 83, 36, 103, 66, -117, 47, 91, -6, 31, -87, 41, -62, -58, 78, -63, -67, -111, -107, 12, 114, -76, -107, 101, 22, -1, 3, 104, 49, 63, -40, -45, 82, -19, -80, -125, -34, 57, 21, 25, 105, 39, 5, 9, -47, 99, -28, -49, -19, 127, 72, -54, -13, -77, -87, -101, -86, 30, 15, -41, 61, 44, 30, 111, 44, 45, 66, 77, 105, 97, -42, -29, -126, 92, -114, -1, -42, -21, -33, 9, 11, 92, 28, -70, 95, 55, -25, 27, 104, 97, 39, 101, 47, 117, 64, 17, -78, -2, 106, -48, 13, -73, -124, -2, 53, 107, 72, -72, 43, -128, -37, 68, 0, 92, -122, -4, 16, -74, -105, -60, 54, 95, 13, 104, -100, -43, -121, 110, -88, 57, 20, -113, -17, -104, -28, -75, 20, 117, -27, 50, 23, -124, -84, -53, -10, -12, -17, 66, -56, 53, -91, -91, -83, -49, -103, 99, -89, -9, 14, 40, -37, 40, -68, -108, -41, -107, -68, 43, -93, 44, -22, -77, 85, 65, -60, 100, -85, -126, -80, -103, -78, -11, -74, 94, -83, -3, -86, -80, 15, -79, -126, 75, -72, 3, 28, 47, -39, -64, -10, -100, 5, 20, 119, -53, 62, 87, 80, -111, -40, 74, -6, 5, -39, -90, 119, -128, 70, -61, -26, 120, 50, 1, 46, -12, -119, 62, -117, -87, -5, -123, 81, -13, 3, 23, 63, 17, 125, -119, 25, 127, 103, 78, 57, 44, 72, -69, -24, -86, -101, 123, -35, -3, 114, 81, -92, 107, 126, -47, 13, -89, -110, -4, 107, -82, -73, -18, -121, 58, 105, -1, 113, -36, 65, 123, 45, -18, -109, 7, 119, -12, 70, 4, -37, 100, 56, -102, -55, -59, 126, 13, -98, -72, 127, -21, 120, 101, -15, 125, 60, 109, -82, 34, -61, -118, -110, 20, 27, -78, -26, -59, 89, 34, -23, -70, 37, 14, 58, -85, -2, 52, 112, -88, -84, 120, 32, 83, -104, 19, 55, 89, -112, 19, -117, -4, -68, 120, 100, 101, -35, -50, 79, 78, -70, 56, -17, 31, -43, 42, 18, -26, -107, -118, -33, -60, -2, 37, 65, 82, 12, -7, 57, 25, 40, 47, -56, 65, -34, -67, -92, 67, -45, 2, -122, -44, 36, -18, -4, -84, -76, -122, -58, -38, 106, 60, -21, 106, 71, 77, -27, 35, -92, -58, -35, 106, -8, 55, -128, -48, -47, 79, 63, -89, 55, -47, -106, -31, -123, -98, -62, -109, -88, -71, -29, -128, 7, 65, -102, -10, 127, 9, 45, -50, -19, -12, -87, 77, 114, 71, -31, 69, 61, -92, -97, -42, 60, -1, 95, 0, 22, 27, -119, -52, -15, 71, -94, -94, -94, 32, -78, 24, 64, 4, 65, 64, 90, 122, 43, -120, 96, -123, 95, -6, 110, 45, 90, -76, -120, -97, -48, -19, 33, -63, -2, -110, -15, 49, -105, -34, -27, 103, -58, -114, 23, 62, -120, 29, -49, -71, 31, 53, 126, 47, -31, -54, -69, -126, -52, 91, -88, 44, -69, -9, -82, -6, 81, -58, 120, -51, -93, -84, -15, -57, 37, 105, -29, -87, 9, 55, -34, 93, 14, 9, 16, 7, 48, 107, 74, 103, -78, 77, 44, -86, 123, 41, 22, 45, 6, 19, 23, 15, -88, -42, -77, 96, -55, -14, 85, -32, 23, 22, -123, -108, -68, 50, 54, -14, -16, 67, 64, 66, 18, -78, -84, -52, 113, -94, -12, -21, -2, 114, -33, 74, -67, -108, 98, 25, 31, -13, -102, -35, -110, 27, 87, -60, 73, -80, 44, 31, 50, 18, -89, 123, -89, -63, 71, -11, 66, -126, -103, 50, -119, -99, 118, 5, 121, 15, -54, -66, 126, -123, -106, -124, 0, 75, -34, -62, -71, -77, 102, -12, -33, -103, -124, 104, -90, -60, -73, -122, 64, 91, 95, 29, 14, 23, 117, 33, 108, -56, -103, -74, 86, 106, -51, 127, 44, -69, 67, 127, -53, 44, -97, 59, -89, -7, 80, -109, -95, -115, -62, 104, 21, 12, -107, 106, 98, -96, -58, 28, 12, 27, 68, -79, -118, 86, 4, -107, 105, 42, 56, -21, 58, -1, -121, 107, 118, -72, 26, -52, -15, 122, -100, -84, 0, 65, 65, 126, 80, -45, 110, -60, 112, -75, 1, -95, -122, -96, -90, -37, 72, -36, -29, -61, -29, -92, -19, 112, 51, -104, 115, 116, 6, 104, -79, -110, -113, -125, -3, -12, -51, 35, 7, 80, -107, -97, -115, -100, -84, 52, -8, 30, -10, 64, 104, -48, 9, 92, 62, 119, 6, -46, 91, -60, -66, 89, -105, -73, 74, 74, -48, 92, 60, 123, -6, 75, -27, -61, 66, -44, 87, -108, 33, 51, -11, 46, -44, 85, 20, 57, -65, -42, 27, 49, -91, 95, 125, -34, -120, 78, 34, -38, 85, -20, 97, 115, -68, 35, 82, -3, -28, 51, -90, -11, 43, 27, -45, 111, -82, -118, -34, 51, 60, -34, -103, -120, -47, -38, 48, -36, -13, -33, 118, -3, -89, -31, -110, -87, -104, 2, -65, -119, -24, 94, -27, -99, -62, 58, -78, -38, 124, -3, -42, -86, -101, 112, 76, -121, 15, 86, -30, -52, 21, 4, -96, -48, 119, 85, -31, 115, -76, 20, 99, -18, -35, 43, -61, 94, 109, 46, -52, 88, 97, 37, -50, -28, -13, -5, -36, -91, 75, 22, 13, 88, -20, 54, -122, -83, -115, 13, 82, -110, -110, 65, 4, -31, -30, -39, -77, 103, 24, 30, 30, -58, -85, -105, -81, -16, 114, -28, 37, 6, 7, 7, -55, -11, 44, -85, -85, -86, -111, 116, 55, 17, 68, 86, 16, 49, -34, 18, -101, -71, 89, 71, 72, -45, 73, -58, -103, 101, 73, 93, 89, 107, -47, -109, -51, -117, -25, 101, -37, -47, -101, 43, -114, -98, 124, 81, -116, 20, 27, -30, 69, -47, 46, 116, 103, -13, 79, -35, 35, -98, 41, 16, 99, 54, 99, 106, 108, 102, -48, -78, -5, 51, 58, -74, -83, 24, 111, 84, 7, -14, 96, 34, 75, 28, -97, 59, 108, -16, -87, -35, 5, 24, 12, 2, 94, 94, -64, 68, -99, -41, -40, -13, -3, -101, -60, -89, -58, 89, -122, 27, 30, -41, 12, 85, -126, -6, 85, 37, 72, -6, 9, -122, 76, -5, 11, 44, 72, -102, -85, -22, -63, -108, 23, -106, -29, -122, -77, -9, -20, 17, -104, -68, 7, 10, -5, -41, 86, -81, -39, 70, -94, 16, -74, -99, 51, 87, -57, -121, 121, 80, -43, -115, 121, 82, 116, -9, -30, -22, 53, 50, -92, 16, 2, 88, 72, -87, 30, 100, 72, 80, 116, -93, 105, -26, 51, -101, -9, 77, 86, 70, 9, 31, 77, 114, -67, 18, 27, 1, 34, 56, 81, 43, -53, -16, 85, -37, -84, 20, -47, 115, -46, -123, 0, 23, -65, -85, 51, -7, -70, -43, 114, 59, -15, -100, 17, 45, -58, -46, -24, 116, 51, -64, 83, 15, 99, -44, 40, 11, -57, 76, 75, 71, 103, 47, 93, -93, -57, -83, -90, 107, -94, -75, -29, 105, -8, -30, 75, 40, -96, -52, -63, 19, -47, 50, -44, -88, 61, 70, -77, 115, 13, 58, -100, -22, 16, 40, -20, -97, -24, 34, 97, -25, -67, -117, 95, 67, 127, -34, -20, -71, 115, -2, -46, 105, 28, -27, 123, -87, 60, -1, 56, -102, -86, 47, -93, -67, -23, 26, -38, -101, -61, -47, -34, 118, 3, 29, -19, -124, 18, 109, 91, 115, 24, -102, -22, -50, -93, -90, -30, 52, -86, -53, 3, 80, -112, -23, -119, 51, -57, 13, 31, 56, 88, 43, 126, -77, -40, 88, 28, -89, -108, -14, -114, 92, -115, 27, 5, -12, -56, -18, 91, -125, -80, -46, 101, 120, 82, 42, -127, -79, -25, 110, -8, 56, 118, 12, 24, 119, 3, 38, 28, -128, 49, 13, 96, 84, 10, -97, 59, 24, -48, -103, 76, 57, -104, 125, -22, 55, -38, -23, -95, -59, -66, -74, -4, 56, 123, 116, 55, 6, -31, 3, 1, 45, -34, -68, 76, 69, 103, -29, -27, 95, -2, -61, -80, -3, 24, -67, -79, -28, 30, -58, 58, 94, 29, -122, -10, -83, -50, -36, -97, -27, 125, -103, 32, 97, 79, 3, 81, 115, 58, -16, 24, -84, 5, -33, 62, -70, -45, -37, -35, -42, -3, -48, 34, 38, -92, -79, 68, 70, -55, 101, 21, 92, 34, 4, 113, 61, -37, 30, 85, -83, 105, 24, 124, -47, -115, -74, -98, 18, 60, 110, -70, -115, -68, -38, 16, -92, 84, 120, -30, 122, -111, 49, 46, -28, 106, 32, 52, 71, 13, -89, -17, -53, -63, 37, -122, 19, 70, 103, 104, -80, -35, 102, 37, -124, 84, -105, -36, -6, 35, -76, 56, 17, -76, 118, -80, -8, -15, 54, -12, 13, 121, -31, -11, 88, 14, -122, 94, 30, -61, -13, -105, -5, 48, 48, -78, -117, 104, 29, -47, 59, 100, -114, 103, 67, 6, -24, -20, -107, 65, 67, -89, 42, 30, 54, 108, 65, 98, 38, 51, 78, -121, 80, -17, -3, -105, -99, 5, -65, -37, 42, 50, -112, -79, 24, 56, 97, -117, 55, -15, 33, 24, 47, -71, -121, -73, -59, 41, 24, -53, -114, -59, -37, -4, -69, 24, 47, 74, -59, 120, 89, 58, -34, 85, -28, -30, 85, -46, 21, 12, 92, -11, -63, 88, -14, 101, -68, 78, -69, -114, -79, -116, 72, -116, -91, 93, -61, -53, -13, -121, -15, 72, 75, 50, -128, -12, 39, -79, 114, 96, 20, 85, -43, -92, -70, -15, -75, 40, -67, 58, -15, -77, 99, -127, -17, 63, -54, 64, -40, -74, -82, -65, -53, -109, 7, -115, 123, -39, -112, -25, -56, -121, -22, 27, 90, -88, 13, -45, 66, -119, -97, 41, 90, -29, -83, -47, -105, 99, -128, 82, 91, 78, -60, 51, 45, 69, -55, 46, 22, 84, -121, -103, -76, 79, 103, -57, -37, 94, 101, -98, -121, -111, -60, 66, 95, 99, 73, -103, 112, -85, 45, -109, -103, -69, 104, -47, 119, 113, 27, 94, 36, -18, -62, -117, -69, -6, 120, -111, 100, -120, -2, 72, 13, 52, -8, -118, 34, 82, 123, 125, -77, -81, 44, -3, -116, -11, 46, 52, 69, 89, 23, 26, -53, 113, -21, 90, -87, 8, 90, -71, -103, 40, -72, -89, 71, 120, -67, 31, -18, -87, 68, -39, -67, -56, -73, 39, 119, 114, 92, 13, -78, 23, -8, 41, 56, -109, 126, -106, 95, -89, 38, -118, 0, -78, -9, -73, -96, 55, 93, 4, -67, -103, -60, 26, 87, -96, -128, -55, 38, 29, -68, 111, 51, 66, -18, 37, 75, -124, -104, 58, 124, 57, -73, -45, -23, 75, -4, 126, -17, 47, -59, 33, -31, 72, 61, 115, 26, -74, -37, 21, -74, 77, 103, -81, 90, 71, 45, -74, -43, -13, 32, 6, -49, -99, 70, -105, -49, 97, -44, 29, 118, -74, 31, -116, 113, -93, 47, 63, 32, -16, -87, -44, 93, 8, 69, 14, -36, 40, 114, -36, 68, 6, 23, 79, 124, -92, 80, 126, 72, 20, 45, -31, -60, -5, -65, -17, -122, -10, 43, 26, -24, -113, -77, -64, 64, -14, -98, 111, -2, -32, -75, 52, 53, -75, 126, -6, -16, 1, -29, 111, -57, -16, 118, -16, 37, -34, 38, 53, -29, -19, -19, 122, -116, 85, -9, -32, 77, 83, 63, 113, -35, -124, -15, 115, 79, -16, 54, -67, 21, 99, 47, 71, -15, 118, -54, -39, 69, 56, -72, -90, -78, 50, -58, -120, -74, -92, -72, -104, -25, -113, -10, -34, 12, -9, 44, -23, -82, 76, 121, -10, -14, 105, 9, -34, 13, 53, 16, 107, 64, 63, -34, -65, 104, 32, -64, 69, 27, -56, -103, 22, -29, -125, -8, -14, 126, 24, -125, -115, 57, -72, 115, 68, 27, 81, -82, -118, 72, 58, 97, -124, -110, 24, -1, -86, -5, 103, 93, 86, 125, 23, -70, 33, -56, -56, -91, -55, -74, -68, -57, 120, -13, 106, 40, 9, 48, 66, -109, 107, 37, -76, 56, -105, 67, -98, 126, 54, -44, -41, 47, -125, 44, 45, -47, 114, -50, -122, -22, -58, 57, 32, 50, 47, -96, -61, 65, 9, -3, 77, -108, -48, -30, -91, -62, 54, 1, -42, 90, -79, -75, -1, 55, 26, 59, -56, -116, -101, -4, 59, 30, 98, -61, 111, -107, 119, 99, 31, 106, 82, 124, 81, 17, 127, 8, 21, -87, 126, 120, 20, 119, 24, 5, 17, 78, -56, -65, 102, 15, 127, 7, 53, 20, -36, 9, 64, 99, -50, 121, 84, 103, 6, 33, -6, -92, 29, -78, -81, -70, -93, -111, 0, 27, -47, 126, -38, 15, -2, -107, 109, 49, -21, -21, -9, -40, -37, 96, 67, -68, -121, -58, -16, 109, -69, 45, -120, 118, -111, -61, 94, 73, 90, 28, 84, -36, -128, 44, 63, 117, -124, -86, -82, 70, -52, 57, 31, -108, -41, -75, 33, 33, 41, -23, 13, 81, 116, -20, 47, -41, 25, -62, 9, -60, -105, -109, -109, 115, -83, -86, -94, 42, -71, -77, -10, -23, -45, -110, -76, -110, -45, 100, 24, -23, 86, 127, 111, -30, 34, 48, 121, 7, 4, 92, 36, 52, 29, 120, -99, -4, 118, 36, -57, -79, 72, -11, -81, -20, 37, -5, -87, -57, 76, 100, 28, 71, 10, -105, 22, 82, -84, 78, -96, -3, -27, 25, -8, -108, -24, 65, 34, -52, 18, -5, 10, -72, -15, 36, -58, 8, 89, 91, 44, 49, 124, 108, 54, -18, 93, -39, 7, -109, -117, -83, -40, -88, -90, -25, 69, -6, 65, -15, -10, -14, -30, 116, -111, -92, 121, 17, 34, -73, 12, -103, -5, -27, -48, 116, -13, 8, -70, -46, 47, -95, -89, 36, 9, -61, 13, 101, 8, 116, 54, 123, -27, -17, -25, -65, -23, 47, -93, -66, 4, 73, -4, 55, 118, -52, 70, -107, -13, 60, -76, 120, 83, -94, -15, -44, 122, 84, -97, -38, -120, -121, -57, 56, -16, -24, 28, 39, 94, 20, -80, -93, -25, -82, 36, 1, -36, -8, 48, -39, -96, 9, -76, 57, -29, 83, -107, 46, -102, 34, -40, -31, 103, 76, 51, 99, -70, -86, 6, 51, -37, -80, -19, 114, 58, -72, 81, 80, -29, -56, -100, -43, -16, -99, 79, 5, -1, 5, 84, -28, -10, -16, -118, -11, 112, 91, 74, 3, -5, 37, -21, -96, -78, -122, -18, -51, -33, 22, 103, -56, -109, 126, -93, 124, -113, 17, -57, 19, -123, 112, -25, -74, 58, -70, 3, -72, -16, -30, -126, 16, 70, 46, -117, -32, -39, 37, 25, 116, -123, 72, 99, -24, 42, 47, -58, 2, -105, -95, -33, 110, -51, 79, 71, -29, -122, 69, -59, -24, 59, 29, -14, 74, -118, 45, -87, -16, -51, 120, 3, -85, -38, -73, 31, 125, 94, -66, -101, 44, -87, 107, 108, -52, -42, -9, 60, -3, 89, -6, -24, 13, 112, 31, 12, -125, -88, -91, -61, -60, 55, -111, -20, 62, 107, -5, -86, 110, -80, -62, -53, 122, 61, 52, 54, 47, -125, 6, -13, 98, -40, -13, -82, -58, 25, 121, 38, 68, -19, -38, -44, 26, 103, -78, -39, 40, -34, -104, 87, -20, -74, 1, 111, -31, 121, -107, 13, -40, 47, 68, 13, 109, -106, 37, 80, -27, 94, 10, 55, 99, 58, -108, 94, 101, 69, -7, 9, -102, -63, -17, 32, -95, -7, -70, 94, -117, 32, 81, -88, -72, 111, 120, 103, 122, -103, 27, -90, 17, -36, -112, -79, 97, -122, -27, 89, 81, 56, 70, 74, -62, -16, 24, 63, -28, 109, -40, -80, 73, -115, 14, 84, 2, -117, 71, 73, 75, 72, 87, -56, -11, 28, -66, 21, 3, -62, -15, -3, -103, -51, -29, 46, -52, -114, 71, -127, -97, -121, 29, -8, -44, -127, 41, -119, -66, 116, 2, 94, -18, 54, -72, 122, 88, 29, -43, -87, -42, -80, -67, -33, 11, -21, 123, -67, -80, 76, -23, -127, 89, -46, 51, 24, 39, 116, 65, 47, -10, 41, -90, -26, 18, 54, -90, -123, 22, 20, 11, 22, -16, 16, -87, -67, 63, 21, -7, -73, 122, -31, 60, 14, 121, -90, 37, 119, -2, 110, -36, 101, -13, 93, 54, -11, 49, 17, 24, 30, 26, -58, 100, 90, 28, -102, 115, -77, 112, 37, 60, -4, 111, 15, 30, 106, 107, -7, -33, 104, -70, 92, -121, -39, -111, 19, 72, 125, -10, 10, 9, -19, -67, 40, -3, 0, 100, 14, 127, 34, -6, 111, 112, 42, -83, 21, -53, -8, 92, 7, -120, -40, -96, 111, -10, -115, -39, 115, 102, -79, 62, -30, -89, 28, 125, 48, 103, 22, -5, 76, -74, -71, -72, 55, 47, -35, -60, -61, -49, -57, -61, 43, -96, -80, -103, 79, 72, -101, 80, 125, 78, 46, -98, 83, 68, 107, -54, -57, 47, -84, -57, -69, 89, 80, -109, 120, 38, 75, -116, -31, 38, -58, -50, -99, 62, -22, 49, -101, -101, -120, 116, -101, -38, -68, -109, 55, -11, -3, -3, -3, -28, -115, -3, -21, -47, 81, 50, -64, 120, 63, 73, -64, -21, -9, -17, -55, -80, -30, -27, -56, 8, -120, -79, 100, 88, 17, 25, 25, 57, 85, -117, 2, 1, 1, 1, 32, 10, 49, -1, 48, -76, -56, -13, -15, 113, -113, 118, 112, -128, 50, 19, -109, -12, -61, -94, -94, -78, -48, -32, -32, -49, 28, -84, -84, 108, 57, -34, -34, -90, 9, -5, -10, 17, -32, 121, -61, -116, -21, -105, -12, -70, 117, 31, 90, -77, -78, -16, 9, -104, 2, 87, -33, 40, -111, 125, -125, -105, -109, -109, 72, -36, -66, 29, 79, 86, -84, 32, -125, 11, 21, 70, -58, 105, -95, 69, 119, 119, 55, -7, -3, 18, 32, -126, 12, 36, 8, 7, 60, -7, 58, 57, 57, 25, -20, -20, 28, 100, 37, -6, -28, 123, 126, 126, 126, -40, -68, -103, -97, 60, -106, -72, 38, -49, -3, 81, 104, 17, -94, -76, -118, 39, -55, 122, -61, -3, -52, 61, 76, -43, 1, -37, 86, 28, 96, -92, -95, -78, -45, -47, -43, -5, -76, 110, 29, -83, -63, -41, -13, -127, -89, 57, 67, -90, -99, -14, -61, -87, 62, 17, 49, -7, 100, 74, 103, -38, 106, 18, 69, 55, 71, -120, -17, 119, 55, -47, -1, 105, 71, -83, 108, -12, -93, -109, 118, 85, 67, 56, -43, 61, -127, -35, -115, -93, 48, -88, 123, -123, -109, 61, -17, 17, 62, -12, 25, 97, -125, -97, 112, -70, 119, 18, -122, -60, 61, -2, -112, 46, -48, 31, 28, -128, -64, -103, 6, 112, 30, -115, -11, -103, -15, -67, -123, -124, -36, 35, -22, -111, -68, 37, -22, -112, -112, -65, 55, -123, -123, -123, -16, -9, -9, 31, 35, -18, 77, -20, -37, 99, 121, -54, 86, 108, -127, -26, 52, -64, -126, -70, 101, 20, 69, -81, 38, -127, -98, -73, -128, 58, -1, -14, 6, -93, -83, -117, -13, -126, -100, -26, 30, -72, 125, 98, -74, -98, -125, -6, -62, 9, 43, 89, 42, -40, -85, -80, 98, -89, 52, -5, 39, 14, 3, -3, -10, -51, -122, -58, -51, 38, -74, -42, -29, -100, 102, 59, 91, -71, -9, 91, 62, 55, -39, 74, 91, 124, 88, -105, -11, -119, -9, 46, -10, 79, -74, 10, 116, 85, -54, -101, -105, 26, 73, 108, 92, -72, 90, -126, 117, -15, 55, -121, -30, -12, 35, 92, -68, -107, 23, 101, 38, -98, -35, 55, -61, 96, -111, 43, 94, 60, -15, -62, -85, 71, -98, -24, 47, 113, 70, 71, -90, 17, -54, -50, 42, 97, -88, -28, 60, 114, -4, -107, -112, -30, -52, -119, -42, -72, -99, 104, 8, 102, -59, 19, 79, 58, -60, 26, 81, 78, 124, -29, -48, 86, -91, 28, 81, 60, -72, 26, -126, -26, 20, 48, 58, -54, 12, -69, 11, -100, -112, -80, 92, 6, 101, -9, 85, -112, 113, 92, 14, 122, 17, -118, 23, -28, 125, -5, 98, -46, -67, 41, -3, -87, -102, -114, -95, -98, 104, -82, -55, 67, 91, 125, 33, 26, -85, 114, -48, -37, -15, 24, -35, -83, 15, -47, 80, -103, 61, 117, -113, -36, -122, -97, 63, -124, 31, -79, 101, -50, -54, -88, 115, 87, -116, 27, -67, 106, -126, 120, 77, -128, -118, -41, 86, -124, 58, -120, -32, -11, 62, 81, -94, 37, -44, 82, 24, -93, 4, -60, 104, 81, 20, 64, 32, 31, -5, 71, 21, 38, -6, 13, -45, 2, 121, 83, -93, 21, -10, -26, -58, -106, -10, -26, 38, -95, 7, -9, 88, 23, 94, -37, -17, -116, 27, -5, -9, 61, 53, -45, -47, 32, 59, 56, 28, -52, 77, -116, 14, -18, -77, -49, -15, 63, -24, -2, -23, -40, -111, -125, -16, 116, 117, -22, -76, 51, 53, -68, 110, 101, -72, 107, -38, 125, -12, -48, 64, -65, 81, 71, 83, 99, 126, 83, 85, -27, 96, -15, -3, -44, 107, -11, 121, 57, 53, 77, -39, -39, -88, -51, -53, 75, -6, 41, 103, -12, 81, 99, -99, -37, -34, 122, -57, 14, 72, -82, -114, -11, 86, -37, -16, -22, -92, -22, -6, -119, 43, -58, -36, 56, -91, 66, -33, 112, 64, 108, -103, -49, 65, 81, 74, 83, 15, 17, -54, -97, -82, 27, 38, -72, -119, 119, -75, 4, 63, 127, -71, -68, -76, -60, 103, 21, 5, -23, 88, 45, 37, 105, -75, 127, 0, 45, -26, 24, 104, 105, 68, 41, 74, -119, 67, 90, -120, -1, -117, -76, -80, 96, -87, -86, -68, -84, 28, -23, 127, 64, 8, 48, 33, -43, 92, 85, -47, -45, 86, 83, -127, -10, -102, 42, 52, 62, 42, 123, 79, -44, -78, -8, -39, -30, -10, -77, 110, 94, 12, 100, 10, 57, 96, -90, 115, -54, 82, -18, 30, -23, 23, -27, -126, -69, 81, 109, -28, 81, -69, -81, -80, 72, 108, -113, -20, 98, 94, 51, -111, 107, -68, -26, -94, 117, -68, 22, -94, 93, 124, -42, 98, -81, -72, 76, 5, 62, 10, -40, 111, -7, -60, -65, 91, 44, 65, -56, 88, -20, -126, -80, -91, 68, -95, -80, -75, -60, -104, -44, -63, -19, 48, -68, 110, 11, -91, -109, 59, -63, 69, 64, 13, 73, 71, -71, -62, -17, -126, -10, -68, -12, -57, 85, 29, -74, 67, 106, -85, -128, -55, 119, 65, 59, 70, -14, 86, 59, -36, -44, 63, -22, 123, -19, -128, 67, -88, 21, 14, -33, 116, -125, -45, -27, 61, 112, -70, -76, 7, 70, -66, 59, 97, 114, 66, 31, 38, 94, 59, 27, 73, -1, 80, -44, 45, -4, -3, -99, 79, -34, -122, -74, 109, 64, -61, 116, -49, 83, -50, -20, 19, 42, -117, 116, -82, -84, 79, -14, 64, 123, -90, 23, -70, -77, 125, -48, -11, -64, 19, -99, 25, 7, -48, -104, -24, -116, -30, -56, -125, -15, -73, 3, 92, 23, -111, -41, 115, 31, 29, -1, -76, 27, -106, -88, -56, 60, -128, 123, -41, 108, 123, 12, -44, -8, -56, -25, -51, 123, -111, -63, -71, 83, -64, -94, 36, -21, -10, 20, -76, 32, -125, -118, -94, 36, 43, -28, 39, -40, -30, -84, -81, -6, -32, 73, 63, 115, 49, -46, 12, 18, 21, -26, -15, 29, -84, -85, 122, -100, -71, -72, -68, 36, 121, -76, -67, -19, 33, 58, -38, 43, 48, -48, -33, -126, 103, -35, 117, -72, 123, 55, -12, -22, 15, 5, 61, 20, 36, -52, -50, -49, -117, -53, -81, -83, -55, 15, -2, -26, -67, 10, 110, -110, -55, 87, -112, -4, -100, -86, -85, -114, -10, -74, 38, -76, 52, -44, -95, -16, 65, -6, 100, -54, -99, -37, -102, 95, -9, -58, -103, -9, -123, 18, -93, -81, 71, -106, 23, -27, 127, 122, 62, -48, -121, -25, 125, -35, 104, 109, -86, 71, -51, -109, 71, -120, -113, 12, 47, -102] astore_1 aload_0 ldc literal_1293:"__e7-20.png@8192" aload_1 invokevirtual java.lang.Object put( java.util.Hashtable, java.lang.Object, java.lang.Object ) // pc=3 pop arrayinit [26, 115, -43, 93, -42, -77, 36, -62, 26, -75, -15, 78, 104, 77, -36, -117, -63, -57, 23, 49, 80, 126, 25, -27, -111, 22, 99, -103, 103, 52, -24, 103, -84, -85, 113, 66, 69, -81, 40, -52, -28, 115, -55, 21, -93, -20, -76, 19, 42, 51, 6, 30, -28, 31, 53, -6, -113, -44, 55, 33, -10, 35, -73, -71, -72, -72, -56, 1, 22, 108, 108, 108, 96, 102, 102, 38, -108, -15, 19, 55, 55, -69, 37, 11, 11, -61, 79, -41, -37, 92, -67, 122, -75, -105, -104, -104, -40, 35, 89, 89, -39, 102, 101, 37, -71, -42, -109, -66, 78, -17, -126, 79, -20, 31, 63, -18, 101, 61, 30, 116, 116, -17, -121, -76, 59, 103, 81, -112, 126, 99, -78, -28, 65, -12, 120, 97, -58, -83, -15, -92, -104, 75, 19, 23, -126, -4, -110, 0, -4, 70, -42, 25, -64, -59, 97, 13, -59, -107, -105, -87, 102, 21, -100, -34, -72, 16, -57, 68, -88, -80, 79, -108, 6, -14, 92, 52, -40, 41, -61, -121, -29, 59, 68, 112, 76, 98, 29, -50, 11, 81, 35, -100, 118, -50, 72, -80, -8, 38, -23, 63, -49, -97, 51, -5, -73, 89, 75, 41, -26, 80, 48, -81, -90, 48, 80, -26, 90, -11, -42, 76, -100, 22, 38, -30, -21, 113, -36, 64, 8, 39, 13, 68, -96, 39, -54, 2, -77, 45, -52, -80, -110, 102, -128, 40, -61, -110, 68, 99, 57, -106, 47, -70, -37, 57, 58, -106, 46, -104, 61, 35, 4, -77, 13, -37, -7, 46, -70, -31, 4, -114, 39, -38, -63, 58, 68, 17, 34, -122, 108, 99, 52, 82, 84, -53, -66, -62, -111, 109, 84, -84, -12, 42, -76, 82, -12, 74, 116, -126, 84, -28, -5, 63, 39, 70, -30, 36, -67, -80, -125, 27, -111, 27, -83, -116, 120, -89, -11, -24, 11, 88, -113, -14, 91, -37, -80, -127, 99, 35, 78, 30, -111, 71, 115, -42, 54, -100, -37, 63, -37, -24, 71, -19, -71, -24, -52, -38, -107, 118, -127, 15, -103, -73, 117, 16, 123, 65, 1, -51, -127, -20, 104, 11, 98, 39, -9, 51, 111, 105, 33, -3, -78, 0, -36, 119, -51, 50, -98, 22, 110, -83, 91, 59, -37, 85, 106, 75, 106, -128, -99, 25, -10, -38, 89, 34, -10, -42, 13, 92, -65, 124, 30, -57, -67, 15, -62, -61, -55, 1, 74, -14, 114, -101, -65, -55, -44, -36, -95, 101, -101, -109, -98, -118, -50, -106, 58, -12, 117, -74, 16, -96, -86, 8, 14, 54, 22, 85, -33, -83, -81, -26, -116, -30, 93, 89, 71, 80, 124, -47, 112, 34, 88, 127, -19, -41, -17, 91, -120, 49, -19, -30, 4, 79, 105, -97, -46, 75, -6, -109, 109, 119, 29, -47, -99, 117, 8, 93, -23, -18, 104, -116, -79, 70, 126, -88, 94, -59, 85, 59, 78, 62, -46, 15, 8, -65, -71, 120, -96, -42, 57, 35, 108, -11, 86, 38, 84, 5, 42, -63, -69, -80, 101, -65, 28, 100, -116, 68, -122, -59, -52, 68, 91, 20, 101, -39, -122, -99, 100, 54, 126, -15, -45, -28, -125, -5, 118, 46, 16, -11, -119, -98, -39, 73, -77, 125, 93, -117, 23, 44, -104, 91, -86, -87, -90, -116, -101, 81, 81, 83, -39, 21, -28, 115, -51, -24, -24, 40, -58, -2, 21, 124, -11, -106, 56, -37, -68, 38, -4, 86, 35, 35, 35, -28, 26, -105, -43, 85, 85, -120, -72, 126, 3, 59, 116, 52, -63, 72, -65, -18, -11, -73, -121, -65, 125, -85, 126, -69, 123, -118, -58, -79, -6, 30, 115, -33, -45, 124, 54, 116, 102, 114, -96, -21, 62, 55, -98, 38, -118, -93, -3, -68, 52, -102, -113, -117, -96, -23, -88, 16, 90, 3, 69, -47, 121, 87, 4, 93, 25, 60, -24, -52, -30, -64, -45, 2, 54, 84, -91, 48, -11, -58, 29, 91, 107, 62, 109, 122, -104, -42, 90, -114, 60, 39, -122, -113, 61, 55, 37, -15, 46, 83, 4, 120, -26, -118, -113, -115, -10, -104, -84, -13, -64, -105, -31, 32, 124, -82, -9, 31, -116, -9, -108, 20, 87, -16, -109, 31, 80, 11, 80, -126, -126, -97, -12, -120, -40, -2, -51, 51, 58, 28, -105, 111, 33, 73, -103, -99, 16, -3, -32, 117, 75, 23, 30, -41, -44, 9, -94, -50, -7, -123, 82, -100, -60, 40, 96, 71, -94, 20, 114, 36, -99, 90, 44, 70, 98, 39, 19, -99, 45, 36, 5, -19, -61, 108, 67, 94, -111, 122, 56, 20, -95, 53, -54, 109, 68, -6, 38, -19, -74, -116, -97, 110, -76, 78, -119, 23, 53, -78, 108, -88, -106, 96, 64, -107, 24, 29, 89, -37, -20, -76, -47, -19, -17, -124, 110, -65, 125, 83, -19, 87, 109, -33, -85, 7, -14, -104, 45, 12, 104, -75, -43, 66, -25, 1, 75, -44, -23, -56, -114, 124, 31, 33, -56, -58, 83, -77, 39, -29, -39, -60, -43, 46, -68, -119, 122, -122, -42, 67, 21, -72, -65, 42, 9, -7, 116, 15, -48, 104, -10, 16, 61, -89, -22, -16, -44, -65, 6, -11, 68, 127, -64, -73, 21, 31, 18, -121, -111, -30, 113, -13, -2, -62, -71, 20, 20, -33, 29, 64, -126, -4, 102, -123, 6, -7, -46, 36, -34, -10, 24, -84, 44, 13, 66, 83, -51, 69, -76, 54, 93, 65, 75, -45, 69, -76, -75, 92, 66, 91, 43, -47, 111, -71, -128, -90, -58, -77, 104, 108, 8, 68, 93, -11, 41, 84, -106, -5, -93, 52, -49, 11, -119, -47, -50, -16, 112, -47, -36, -11, 71, 123, 78, 33, -53, 83, 78, -57, -47, 34, -75, -127, 6, -79, -83, -53, 17, -102, 78, -125, -58, 39, -69, 49, 54, 68, 64, -121, 55, 97, -8, -4, -58, 2, 24, 115, 36, -44, 14, 120, 37, 13, -116, 10, -30, 75, 7, 61, -102, 110, -51, -87, 35, 77, 35, 101, -55, 78, 109, 121, -79, 123, -48, 86, 121, 2, -17, 39, 98, 8, 77, 65, 79, -5, -19, -18, -114, -6, -64, -123, -92, 95, 16, 33, 115, 42, 6, 110, 93, -22, -59, -62, -5, 104, 4, -74, -7, 108, 40, 86, 60, -52, 9, 118, 37, 106, -120, -37, -46, 96, -67, -46, 58, 72, -20, -94, -18, 60, -79, -105, -38, -14, -78, -38, -110, -65, -115, 110, -38, 98, -72, -12, -102, 73, 32, 35, -126, 83, 117, -111, 91, 125, 1, 67, -81, 58, -16, 102, 98, 8, -35, 67, -27, 104, 124, -106, -118, -14, -106, -85, 72, -81, -12, -62, -51, 34, 51, 92, -55, -43, -62, 101, 66, -49, 61, 80, -124, 103, -118, 0, 44, 46, -47, 65, -45, -99, 10, -94, 58, -53, -6, -2, 8, 45, 44, 109, 23, -106, -25, 22, 73, -95, -93, -41, 21, -125, 67, 119, -48, 63, 124, 5, 125, -61, -121, -47, 63, -30, -126, -66, 23, -6, 68, -33, 18, 61, 67, 38, -24, 126, -82, 71, -64, 11, 51, 52, 52, 107, -96, -68, -18, -1, -80, 118, 22, 80, 89, 101, -21, -1, 127, 29, 29, 29, 107, 80, 25, 3, -69, 3, 81, 9, 69, 1, -23, 14, 17, -108, -112, -112, -108, 22, 36, -92, -92, -111, 20, 16, -112, 70, 36, 5, 5, 12, 20, 20, 105, -112, -110, 70, 58, 20, 65, -111, 80, 105, 59, -8, -2, -9, -5, -2, 102, 88, -61, 21, -25, 122, -17, -3, -17, -75, -98, -75, 79, -20, -67, 23, 47, -25, -100, 125, -50, 126, 62, 79, -16, -31, -63, -61, 61, 56, -17, 75, -17, -6, -9, -79, 106, 52, -124, 110, 13, 5, 24, 99, 60, -19, 18, 38, -14, -81, 97, -4, 65, 52, -58, 51, 47, 99, 34, 59, 14, 111, 11, -110, -16, -74, 40, -107, 120, 92, -36, -63, 68, 86, 12, 122, 46, -22, 99, 52, -34, 25, 35, -41, 61, 48, 122, -61, 23, -93, -55, -34, 24, -119, 112, 66, -125, -90, 68, -45, -116, -109, -77, -50, -106, 60, 94, -47, 37, 83, -118, 41, 65, -107, -71, 30, 98, -78, 115, 111, 83, -2, -53, 18, -72, 117, 49, 95, -70, 8, -61, 80, -79, -18, 106, 84, 95, -30, -61, 96, -87, 9, 18, -72, 55, -29, -62, -126, -7, 72, 17, -40, -121, -25, -9, -55, -17, 127, -96, -119, -82, 4, 41, 12, -28, -101, -94, 54, 94, -19, -59, -113, -58, -78, -30, 88, -79, 50, 72, -128, -66, -92, 88, 119, -5, 100, -121, 19, 39, -98, -5, 19, 8, 20, 41, -127, -127, 4, 25, -68, 34, -109, -1, -21, 27, 39, -16, 50, -2, 40, 26, -99, 15, 34, 85, 105, -53, 75, 79, -47, -115, 50, -108, -97, 40, 23, 44, -108, 28, 50, -125, -115, -112, 106, 38, -118, 96, -55, 109, 8, 60, -66, -89, -54, -102, 119, -77, -109, -31, -31, -11, 76, 63, -91, -76, -71, 124, -64, -95, -29, 38, 31, -6, 115, -8, 9, -96, 21, -62, -121, -6, 35, -8, -38, 33, -113, -110, 120, 121, -8, -21, -53, 79, 90, -15, -87, 78, 94, 60, -95, 55, 25, -87, 109, 60, -103, 104, 108, 53, -7, -32, -68, 63, -54, -81, -60, -61, -57, 80, 55, 117, -58, -92, -42, 106, 39, -60, 26, -43, -108, -16, -62, -51, 17, -19, 103, -12, -16, -52, -34, 60, -3, -13, -19, -53, 11, 30, -39, -20, 111, 47, 52, 97, 68, -119, 57, 51, 74, 76, -9, 18, -39, -121, 2, -99, 109, 40, 59, -53, 70, -96, -59, 73, 60, -119, 81, -64, -109, -85, -102, -24, -65, -91, -113, -82, 104, -27, -127, 41, 107, -30, 43, 87, -40, -97, 61, 125, -38, -12, -111, 26, 2, 100, 108, 20, -29, 37, 93, -104, 72, 108, -64, 88, 87, 63, 70, -33, -114, 98, 116, 98, 4, 35, 68, 113, 55, -111, -36, -120, -119, -88, 58, -116, 117, 15, -110, -25, 122, 24, 19, 4, 110, 124, -6, -16, 30, -125, -3, -3, 19, 36, -73, -59, -76, 120, -94, 89, 33, 103, 13, 58, 75, 19, 49, -12, -84, 28, 31, -121, 58, 8, -80, 104, -63, 71, -14, -100, 124, 120, -35, -126, 79, 67, -19, -28, 88, 39, -39, 110, -61, -57, -31, 46, -68, 104, 41, 70, -13, -61, 100, -44, 102, 70, -94, -83, 52, 21, 21, 105, -31, 119, -1, 62, 22, -41, -86, -39, 116, -30, 59, -106, -74, 107, 30, 88, -121, 19, 76, 84, 80, 49, 7, 66, -21, -25, -126, -117, -31, 87, 28, 92, -15, 11, -72, -41, 44, -60, -31, 53, 100, -101, 97, 54, -10, -1, 65, 1, -33, -102, -39, 16, -33, -74, 24, -78, -37, 23, 66, -25, -32, 6, 2, 51, -106, -127, 120, 105, 36, -4, 53, -98, -65, 38, -45, -82, 91, 94, -14, 111, -77, -126, 12, 96, 45, -61, 3, 29, -95, 125, 40, -116, 52, 64, 113, -84, 9, -14, 46, -97, -58, -61, 24, 83, 20, 19, 120, 81, 123, -57, 19, 29, -123, 97, 120, 120, -35, 1, -54, 92, 76, 48, -28, 103, 69, -18, -107, -77, 40, 78, -76, -2, 18, 105, 114, 104, 74, 9, 31, -90, 45, -76, -29, -86, -87, -28, -101, 96, 57, 86, 92, 86, 62, 0, 15, 113, 38, 4, -88, 29, 66, -112, -38, 65, 120, 8, -84, -127, -99, 36, 35, -79, 78, 78, 69, -37, -77, 94, -28, -105, -107, -61, -60, -38, 38, -38, -35, -37, -5, -121, 31, -103, -6, -6, -6, 11, 11, -14, 11, -118, -65, 125, -99, -20, -4, 52, -16, -71, 125, -80, 106, -80, 47, -60, -4, -6, -51, 50, -5, 1, 116, -6, -115, 97, 44, -9, 11, -34, -26, 127, -61, -89, 114, -32, 75, 30, -16, 33, -3, 27, -46, -108, 31, -84, -8, -47, 120, 37, 65, -110, 109, 111, -94, -36, 113, 101, -89, 62, 58, 11, 124, 17, -38, -96, -121, -11, -42, 73, -32, -45, -70, 9, -117, 112, 57, -28, 5, 31, 67, 33, -65, 38, -122, 124, 41, 72, -16, -73, -124, 86, 84, 39, 81, -48, 28, -117, -7, -73, 10, -70, -96, -96, -115, -39, 89, -39, -15, -71, 89, -103, 31, 83, -75, -9, -62, -3, -32, 66, -72, 114, 44, -128, 45, -5, 124, 88, 114, -81, -128, -75, -64, 122, 92, -44, 16, 67, -74, -65, 14, 50, -46, 110, 124, 126, -112, -103, -103, 18, -32, -17, -65, 105, 70, -17, 38, -114, 89, 54, -79, 18, -77, -112, -89, -7, 11, 26, 109, -23, -47, -21, -73, 30, -61, -111, -101, -16, -27, -6, 102, -32, -127, 52, -7, -83, 39, -128, -50, 64, -68, -85, -113, -62, -105, 58, 30, -32, -103, 38, 64, -96, -59, -85, 116, 54, -124, 26, -83, 75, -3, 113, 76, 124, -90, 81, -35, 21, -101, 112, 126, -23, 122, 92, 90, -72, 26, -95, -117, -42, 76, 73, -56, -102, 93, 112, 101, -40, 6, -35, 63, 54, 66, -104, -98, -31, -53, -65, 77, -76, 86, 117, -22, -122, -61, 3, -55, -74, -90, -128, -83, -88, 112, -34, -119, 78, -41, 61, 120, -22, -78, -105, 38, 117, 30, -68, 104, 14, -32, -61, -45, 43, -100, -24, -113, -36, -127, -63, 51, -53, -49, -4, 55, -64, -30, 70, 73, -115, 103, -26, 56, 78, 53, 126, -128, -61, -64, -25, -55, -56, 79, 95, -65, -107, -115, -65, 123, -105, -38, -43, -13, -68, -12, -104, -71, -13, -41, -83, 42, 86, -109, -85, 100, -50, 76, -13, 70, 50, 17, -90, 123, 32, -68, 113, -31, -112, -58, 14, 58, -72, 10, 108, 24, -70, -94, -52, -6, -30, -26, -87, -125, -55, 105, -6, 28, 39, 62, -40, 51, 40, -1, -43, 46, 77, -97, 115, 22, 17, -63, 91, -70, -121, 66, 19, 84, 89, -38, 61, 68, 54, 13, -87, -18, 92, 58, 36, -76, 126, -63, -112, 62, -33, -17, 37, -108, 127, 41, 92, 90, -85, 42, -83, -94, 69, -96, 19, -53, 2, -19, -92, 125, -40, -95, 64, -113, -59, -116, -117, 59, -106, -18, 95, -108, 60, 103, -43, 44, 61, 98, 75, 78, 125, 6, -90, 43, -58, -65, 15, 109, -92, 66, 62, 22, -65, -79, 57, -89, -63, -56, 39, 22, -97, 70, -98, 32, -13, 110, 18, 38, 62, 77, -30, -43, -8, 103, -100, 49, 53, 69, -108, -35, 81, -44, 102, 24, -63, 42, -81, 31, -26, 89, -49, 97, -100, -47, 5, -29, 7, -67, 48, -52, -24, 38, 0, -93, 7, -44, -66, 100, -116, -17, -96, 5, 61, -61, 54, -119, -11, 59, -71, -93, -107, -76, -52, -93, -26, -51, 95, -4, -45, -34, 22, -13, 127, -99, -77, 84, 122, -41, 31, 55, -1, 17, 88, -88, -54, -24, -76, -6, 56, 78, -66, 110, 109, -62, -40, -40, 56, 38, -77, 110, -29, 67, 118, 26, 26, 26, 27, 17, 30, 17, -31, -8, -113, 30, 67, 27, -105, 38, -18, -110, 112, -59, -59, -20, 39, -56, 27, -99, 68, -18, -16, 71, 100, -65, 26, 67, 106, 123, 31, -18, 60, 31, -57, -71, -8, 34, 108, 22, 112, -23, 36, 77, -89, 41, 16, -17, -49, -103, -75, -81, -100, 105, -31, 104, -58, 108, -54, -116, -95, -28, 8, -112, 80, 63, 120, -120, -85, -105, -125, -13, 48, -72, 121, -8, -63, 47, 32, 12, 65, 33, 81, 8, -117, -120, 67, 72, 88, 28, 2, -126, -94, -32, -25, 23, 2, -57, 97, 1, -80, 29, -28, -61, -63, -125, 92, 117, 4, 94, 124, -73, 96, 78, 79, 79, 103, 34, 32, 98, -110, 124, -72, 79, 37, -93, -89, 42, -25, -69, -69, -69, -47, -37, -37, -117, 55, -81, 95, -45, 60, 48, -88, -25, 9, -32, -64, -35, -12, 116, -102, -126, -38, -60, -60, 4, 36, 6, 50, 44, 44, 44, 112, -7, -14, -27, 25, -107, 114, 100, 49, -67, -124, 44, -124, -11, -92, -91, -91, 99, -7, -7, -7, 3, -104, -103, -103, 5, 107, 91, 91, 75, 110, 102, 100, 64, 75, 87, -9, 78, 99, 83, -45, 87, -94, -28, -122, -72, -72, -8, -91, -38, -74, -74, -100, -76, -52, 76, -56, 41, 41, 37, -2, -48, -69, -114, 120, 90, -76, 103, 101, -31, -45, -28, 36, 117, -15, 49, 77, -88, 11, -111, -95, 15, 31, 104, -48, -94, -126, -114, 14, 53, -85, 86, 65, 98, -61, -122, 25, -95, -59, 43, -14, -101, 6, 95, -67, -94, -127, 8, 22, -106, -3, 32, 86, -4, -76, -3, -84, -20, -20, 41, 104, 65, -74, 105, -57, -68, 8, -108, 97, 102, 97, -91, -75, 37, -5, -44, -66, 63, 5, 45, 124, -40, 40, -53, 115, -52, -104, -5, -38, 124, 57, -112, 127, 110, 47, 92, 13, 100, -96, -83, -93, 15, 113, 49, 62, -3, 105, -41, 89, 79, -12, 118, -32, 25, 77, -35, -1, 75, -94, -66, -66, 122, 38, 89, -79, 98, 69, 27, -119, -13, -4, -115, -60, -82, -2, 70, -2, -25, -115, -44, 99, 63, 35, -45, -66, 83, 83, -21, -38, 12, 26, -121, 96, -47, 57, 1, -21, 39, 19, -80, 125, -6, 22, 106, 77, -93, 80, -88, 30, -128, 124, 117, 63, 78, 18, 96, 97, -47, 52, -127, -51, -50, -67, 88, 99, -14, 2, 66, 49, 21, -40, 27, 120, -81, -115, 50, 67, 33, -41, 126, 81, 66, 66, -62, 87, 23, 23, -105, -5, -44, -16, 14, -3, -3, -3, 40, 42, 42, -126, 46, -71, -90, -90, -90, -90, 49, 86, -118, 7, 38, 60, -124, 103, 125, 81, 99, -95, -52, -1, 27, -80, -32, -24, -103, 64, -1, -64, 123, -48, -128, -59, -60, 103, 64, 114, -49, 66, -106, -61, -37, -26, 47, -7, 51, 25, -30, 124, -111, -35, 11, -35, 78, 112, 45, -125, -83, -20, 122, -88, -13, -83, 4, -89, -113, 45, -40, -62, 60, -64, -72, 123, 55, -72, -29, -125, -63, 117, 35, 12, 74, 39, -39, 113, -51, -102, 23, -9, -36, 37, 113, -59, -20, 16, 12, -59, -42, -125, 103, -57, 66, 63, -66, -99, 11, -90, 60, 16, -77, 29, -74, -50, 45, -15, -38, -33, -7, -20, -114, 10, -34, -108, -102, -31, 77, -123, 45, -122, 43, 61, 48, -14, -40, 23, -99, -9, 77, 80, 25, -91, -128, 104, -11, -83, -72, 118, -102, 27, -83, -15, -89, 80, -28, -56, -122, 70, 31, 70, 52, 121, 109, 65, -39, -71, 13, -72, 38, -1, 123, -25, -33, 124, 14, -104, 5, 77, -23, -79, 79, -31, 55, 40, -109, 121, 94, -38, 118, 21, 20, 61, -41, 64, -36, 98, 5, -92, 28, -24, -63, -91, -75, 24, -20, 98, 11, -112, 54, -97, -14, -87, 79, -111, 27, 84, -55, -103, 71, 25, 56, 54, 127, -26, -80, 81, -22, 60, 18, -114, -66, 42, -89, 17, -95, 109, 5, 31, 9, 21, -92, -58, 121, 18, 80, 81, 9, 7, 7, 27, -12, 118, 85, 65, -4, -88, 44, -92, -114, -55, -31, 121, 103, 5, -11, 24, -19, -36, -11, 104, 119, 106, 91, 90, 31, 106, 95, 45, 94, -87, 25, -25, 28, -37, -35, 91, -93, 107, 4, -103, -15, 90, -127, 64, 11, 61, 118, -116, -39, 16, 96, -31, -58, -119, 49, 79, 34, -25, -119, 88, -111, 125, 109, 118, 12, 28, -37, 79, -68, 45, -104, -96, -74, 109, -109, -10, 119, -17, 53, 125, 29, 93, 55, 91, -21, 81, 71, 43, 11, -8, -100, 119, 70, -32, 89, 51, 84, -7, -7, 34, -54, -20, 12, 12, 53, -43, -98, -100, 53, -46, -81, -16, 118, 113, 68, 76, 120, 40, -82, -57, -57, -30, 86, -54, 53, -60, 69, 69, 32, -30, -110, 63, -50, -103, -103, 76, -100, 82, 86, 16, -98, -90, 100, -68, 123, -37, -17, 105, 75, 51, -6, -69, -70, -48, -100, -102, -126, 65, 50, -65, 116, 62, -56, -60, 115, 50, -105, 60, 121, 84, 86, 80, 94, -104, 119, -95, -82, -94, -68, -94, -83, -15, 49, -38, -101, 26, -47, 82, 95, -121, -86, -78, -30, -78, -30, -100, 44, -59, 25, -62, 67, 45, 117, 17, 97, -120, 13, 85, -39, -115, 52, 2, 98, 110, -98, 62, -128, 36, 125, 54, 100, -39, 9, 32, -33, 91, 26, -103, -82, 98, 72, 33, -9, 68, -76, -42, 110, 92, -110, -33, -46, 112, 94, 100, 101, -128, 61, 47, -67, 77, -96, -36, -90, -26, 120, 125, 86, 36, 25, 31, -128, -1, -79, 45, 48, 63, -80, 56, -64, -98, -13, 119, 14, -102, -105, 60, 11, -21, 50, 1, 78, -50, 26, 105, 97, 81, -16, 29, 58, 4, 118, 102, 102, 8, 113, -13, -27, -119, -16, 10, -92, 30, 21, 21, 107, 59, 41, -89, -120, -109, -57, -28, 63, -55, 73, 30, 41, 19, -27, -29, 119, 57, 124, -32, -96, 46, 59, 51, -117, 46, 23, -37, 1, 23, 113, 62, 65, 75, -114, -3, 7, -90, 41, 50, -99, 109, -83, 118, 27, -100, 84, 121, -81, 44, 35, 13, 97, -98, -61, 16, -31, -29, 38, -62, -125, -13, 118, 118, -97, -94, -61, -126, 42, 46, 56, 59, -70, -40, -103, -101, -4, 71, 9, -87, 77, 100, -103, 79, -99, 87, -37, -97, -96, -85, 44, 38, 72, -7, -1, 80, 78, 41, 10, -14, -71, -24, 10, 70, 59, -21, 9, -57, 73, -117, -13, -1, -10, -65, -114, 119, 37, 34, 114, -42, -93, -68, 44, -5, -98, -74, 22, -12, 118, 118, 96, 40, 39, 27, 67, 47, 95, -96, -90, -84, -92, -18, -65, 24, -18, -105, -60, 0, 123, -91, 4, 115, -95, -2, 52, -9, -109, -72, -19, 107, -100, 125, 43, 54, 100, -45, 127, -28, -79, 31, -26, -74, -20, -110, -23, -79, -119, 36, 95, -21, 41, -91, -71, -68, -123, -14, 44, 34, -65, 113, 26, 10, -16, 29, -78, 16, 40, 56, 96, -60, 83, -60, -86, -57, 21, 125, -40, 72, -24, 48, -77, 30, -57, -55, -67, 58, -121, -12, -8, 78, 8, 47, -29, 84, -29, 89, 125, 72, -13, 112, 49, -65, -67, 4, 20, 99, 79, -127, -49, 94, 18, -100, -6, -68, -123, -45, -66, 35, -107, -59, 20, -28, -84, -92, -63, -57, 123, 96, -25, 119, 57, 46, 4, 57, -26, -54, 90, 72, 65, -107, -64, 9, -85, -24, 51, -76, -16, 80, -25, -30, -50, -62, 52, -46, 16, -106, 100, 95, 63, 72, 11, 74, -50, 10, 48, -71, 76, -96, -56, 113, -34, -1, 41, 39, -114, -104, -86, -67, -89, -79, -37, 85, -24, 59, 69, 67, 66, -61, 73, 108, -102, 113, -110, -5, 105, -26, -22, 24, -93, -95, -114, -116, 115, 104, -69, 109, -117, -38, 88, 3, -44, -60, -23, -93, -31, -70, 41, 58, -46, -19, -48, 83, -32, -114, -42, -69, -114, -56, 12, -78, -114, 10, 113, 84, 89, -98, 24, -92, -2, -82, 49, -49, 14, -61, -11, -34, -88, -66, 105, 6, 77, 25, -74, -87, -75, 53, 53, 52, 20, 17, 42, -80, -104, -14, -76, 32, 66, -37, 127, -112, 22, -120, -52, 59, 1, -103, 105, 41, 94, 17, 119, 82, -67, 34, -18, -33, -15, -49, 43, -52, -66, -36, -16, -88, 36, 1, -27, 69, 9, 40, -56, -118, 28, 74, 77, 112, -54, -66, 122, -27, 28, -5, -108, -126, -1, 78, -108, 65, 124, -100, -57, -85, -21, -41, 124, -125, 42, 43, -17, 99, 124, 108, 0, 109, -83, -113, 112, -21, 102, -112, -51, -44, 53, -68, 17, -78, -11, -38, 53, 127, -115, -44, -44, 75, 49, -23, 119, 35, -85, 115, -78, -81, 126, 122, -112, 25, -37, 117, -5, 118, -104, -37, -35, 59, -111, 116, 69, -123, 41, -59, -33, 65, 18, -1, 11, 77, 21, 69, -71, -8, -14, -27, 11, 94, -9, -10, -30, 113, 101, 57, -78, -45, 111, -95, -84, 32, 7, 117, 100, -69, -10, 81, 49, -102, -22, -86, -16, -78, -89, 7, 111, 71, 70, 48, -48, -1, 28, -125, 68, 106, -53, 74, -112, 24, 21, 122, -31, -49, 48, 79, 116, -9, -68, -113, -74, 101, 122, 75, 125, 42, 13, 87, -62, 96, 69, 48, 94, 85, 93, 70, -57, 61, 91, 20, -123, 42, -67, 34, 121, 46, 20, -13, 46, -55, 47, -54, 9, 56, 62, 59, 55, 80, 78, 32, -53, 71, -42, -77, 40, 76, -71, -73, 50, 90, 3, -123, 65, 114, 72, 115, 21, 69, -38, 121, -47, -36, 105, -95, 62, 61, -43, 55, 61, -12, 56, -103, -111, -25, -84, -52, 88, -28, -95, -15, -11, -95, -89, -122, 11, -87, -35, 74, -3, -12, 34, -86, -126, -116, 83, 107, 35, -83, -86, 27, 98, 29, -86, -101, 19, -99, -121, -102, 18, -100, 80, 23, 101, 93, 93, 25, 108, -110, 87, -24, -90, -22, -106, -21, -92, 56, 99, -108, 21, 98, -64, 112, 120, -23, -46, -91, -73, 86, -82, 92, 89, 75, -92, 122, -11, 106, -122, -52, 29, 59, -74, 124, -31, -32, 96, -121, -80, 48, -9, -51, -19, -37, 55, -3, -76, -25, -64, -102, 53, 107, 52, 9, -84, -96, 126, -121, 65, 82, 82, 18, 36, -41, 22, 46, 56, -54, 125, 106, -87, 114, -2, 22, 23, 113, 106, 82, 93, 65, 16, 73, 17, -42, -56, -66, 121, -31, 91, 122, -46, -123, 79, 113, -31, -82, 31, 46, 122, 90, 85, 94, 14, -13, -95, 7, 48, -101, 42, 127, -127, -117, 127, 73, -64, -79, 93, 103, -57, -38, -114, -128, -115, -13, 32, -71, 97, 57, 2, -72, -1, 0, -84, -105, -95, -40, -122, -115, -52, -33, 44, -128, -45, 114, -92, -117, 45, -128, 40, 57, -25, -80, 113, 33, -4, 24, 87, -67, -115, -119, -115, -107, -1, -5, 16, 75, -120, -53, 4, -57, -42, 101, 5, 10, 108, 43, 32, -53, -66, 1, 38, -30, -69, 97, -85, -56, -125, 115, -86, 98, -56, 77, -15, 71, 75, -43, 117, 68, 123, 25, -30, -100, -28, 78, 24, -15, -81, -121, 41, 47, 3, 68, 118, 46, -71, -78, 118, -23, -4, -17, -116, 29, -41, -81, 93, 77, 91, 23, -16, 25, 29, 72, -46, 13, 60, 10, 77, 111, 97, 40, -38, -15, 64, -62, -104, 35, -113, 102, 52, 114, 116, -99, -78, -128, 13, 119, -107, -30, 37, -103, -49, 34, 46, -68, 80, 9, -106, -61, 17, 119, -15, -66, 45, -57, 54, -7, 45, -25, -5, -29, -113, 31, 26, -61, 49, 83, 22, 90, -86, -51, 98, -13, 53, -97, 99, -104, -32, 54, 47, 42, -42, -23, -73, 18, 55, -11, -33, 113, 59, -16, 16, 2, 101, -105, -32, 2, 15, 5, -9, 3, -73, -95, -69, 92, -115, 0, 48, 21, -28, 68, -84, 67, -78, -9, -68, -46, 24, -25, -71, 81, -44, 62, -44, -66, -44, 49, 102, 26, 47, -50, 117, 94, -44, 85, -41, -33, 74, 66, -51, -106, -95, 50, 85, 2, 121, -79, 92, -120, -112, -99, -121, 24, -123, 5, -56, 39, -37, -107, -87, 82, 8, -73, -96, 71, -68, -21, -68, -46, 56, -41, -17, -57, -37, -78, 97, 61, -67, -69, -51, -39, -55, -32, -64, 11, -120, 10, 11, -60, -51, 107, 113, -56, 123, 112, 23, 87, -62, 46, 33, -122, -20, 95, -14, -11, 24, 17, 23, -30, 95, 55, 101, 16, 122, 84, 114, 67, -120, -65, -49, 100, 116, 68, 40, -14, -18, -89, 33, 33, 42, 12, 18, -62, 2, -33, 1, -106, 75, -86, -85, 23, 53, 38, 27, 125, 121, -110, 102, -122, 24, -93, 61, 30, -76, -124, 36, -118, -53, -25, -27, -7, -53, 86, 13, 85, -6, -29, -39, 61, 27, 60, -51, -80, -62, -13, 28, 123, -12, 100, -99, 67, -41, 61, 75, -68, 121, -28, 75, 13, 43, -11, -127, 120, 107, -20, -4, 71, 96, -95, -63, 37, 42, -27, 123, -30, -93, 108, -124, 58, 120, -100, 37, 8, -80, 80, -124, 124, -76, 38, 20, 99, -76, 33, -26, 123, 28, -118, 87, -76, -64, 105, 46, 8, 75, 41, 38, 24, -15, 110, 123, -90, 47, -80, 43, -54, 64, -98, 93, -116, 120, 95, -4, 61, -73, -98, -111, -39, 25, 19, 84, 86, 84, -46, 12, -115, -122, -121, -121, 49, 62, 62, 78, 93, 39, 76, 25, 58, -111, 117, 3, 53, 119, 31, -51, 72, -85, -85, -85, 11, 21, -27, -113, 112, -42, -62, 28, 36, 113, 119, -7, -12, 120, -125, -82, 43, -107, 59, -118, -73, -96, -65, 110, 47, 6, -21, 120, -15, -86, 94, 20, 47, 74, -71, -47, -32, -61, -122, 114, -109, 45, 40, -48, 89, -116, 66, -67, -33, 81, 106, -76, 14, -113, 61, -104, -16, -94, -116, -42, 6, 3, 117, -68, -92, -49, 30, -76, 22, 110, 70, -110, -61, -54, 25, 19, 56, 23, 107, 108, -66, 84, 96, -71, 26, -61, -73, -7, 49, -98, -58, -122, 47, -113, -11, -16, -83, -45, 20, 120, -23, 1, -116, -123, -94, -28, -122, -50, -120, -44, 121, -55, 73, 5, 111, 25, -120, 59, -16, -106, -4, -37, -73, 39, 19, 69, -32, -128, -38, -126, 23, 2, -122, 43, -79, 73, -118, -14, -103, 56, 32, 49, -20, 51, -96, -120, 50, 106, 81, 86, -45, -98, 73, 102, -54, 25, 49, -77, -75, 95, -100, -82, 42, 33, 50, -57, 26, 65, 89, -89, 63, -17, 62, 73, -103, 118, 65, -18, -83, 95, -110, 90, -55, -71, 13, -11, -94, -52, -88, 19, -34, -117, 90, -34, 29, -88, -31, -36, -116, -106, -109, -30, -24, 114, 49, 35, 98, -6, -89, -104, -31, -103, -85, 25, -38, -115, -107, 80, -61, -67, 13, 117, -4, -116, 120, 44, -79, 31, -115, 74, -62, -56, 101, 92, -45, 60, -19, -17, 34, -26, 86, -41, -72, -125, 114, -121, 9, -116, -24, -15, 111, -58, 64, -30, 51, -12, 39, 118, -93, 68, 52, 7, -107, 50, -39, 120, 25, -40, -128, -41, -41, -98, 98, 34, -73, 31, -61, 55, 123, -48, 108, 92, -127, 23, -63, -83, 64, -18, 56, 116, -8, 84, 117, 103, 116, -25, -71, 104, 39, 120, 55, -39, 10, 117, -113, 2, -48, -46, 16, -116, -74, -26, 32, 116, -76, -123, -95, -91, 53, -128, 38, -19, -83, -63, 52, 104, -47, -36, 116, 1, -115, -113, 61, -16, -72, -42, 27, -43, -27, 110, -56, -67, 103, 7, 39, 91, -71, -46, 41, 55, 116, -89, 37, -65, 91, 71, -82, 28, 15, -66, -73, 30, 15, -70, 25, 16, 86, -67, 24, -119, 25, 108, -24, 105, 112, -58, -40, 64, 4, -127, 22, 73, -8, -10, -10, 50, 48, -18, 0, -116, -23, 3, 35, -118, -64, 27, 62, 34, -69, -15, -82, 114, 49, 114, 60, 126, 53, -99, 33, 60, 84, 89, -47, 13, 99, 52, 60, 116, -62, -37, -111, -85, -8, -14, -7, 22, -34, -12, -33, 69, 87, 115, -56, 17, -54, -1, 80, 68, -68, 87, -15, 72, -69, 111, -19, 97, 86, 88, -5, 110, -19, 97, 122, -80, -88, -112, -59, -120, -22, 38, -8, -97, 93, -127, -126, -53, 12, -56, 15, 99, -8, -104, 104, -71, 44, 46, 92, 122, -55, 15, 105, -85, -80, -31, -46, 58, -45, 104, 22, -60, -25, 27, -93, -2, -23, 109, 12, 79, -12, 96, 112, -76, 25, 79, 6, -14, -48, -14, 34, 13, -113, 58, -62, 113, -65, -18, 28, 18, 75, 53, 112, -71, -16, 56, 34, 10, 100, 16, -102, 127, 4, -18, -9, 57, 97, 124, 117, 43, -28, 29, 87, -127, 87, 101, -23, -56, -97, -96, 97, 14, 109, -30, 56, 49, -33, 52, -26, 26, 39, -22, -37, -12, -16, -28, -71, 3, -98, 15, 120, -95, -69, -49, -100, -128, 10, 109, 2, 46, -84, -47, -9, -122, 16, -52, 65, 37, 34, 90, 120, -42, -89, -122, -50, 23, -86, -88, 120, 44, -115, -121, 85, 60, -120, 73, -34, 0, 83, -21, -27, 83, -80, -91, -15, -108, 112, -19, -48, 37, 67, -116, -35, -16, -60, -60, -3, 16, -116, -35, -69, -124, -79, -12, 0, -116, 83, -27, 94, 48, 1, 24, -31, 24, -49, -119, -62, 91, -78, -35, -27, -95, -126, -41, -95, -89, 49, 18, 99, -115, -95, 72, 51, 12, -123, 18, -15, 49, 65, -69, -82, -12, 48, 101, -122, -94, 121, 118, -101, 61, -9, 113, -6, 105, -117, 112, 1, -43, -7, -111, 124, -86, -13, 110, 77, -59, 51, 96, -40, -60, -17, -74, 121, -65, -102, -61, -70, -67, 63, -27, -74, 24, 127, -126, 94, -93, -60, 107, 55, -70, 82, 5, 49, 64, -82, 119, -34, 113, 1, -60, 46, 90, -128, 116, -74, -11, 4, 108, -22, 96, -94, 45, 24, 125, -71, 46, 24, 46, -13, 65, 83, -14, -39, 25, -1, -82, 51, -5, 126, -1, -59, -127, 117, -63, -3, -5, -54, -21, 81, 111, -50, -116, 102, 43, 118, 116, 58, 114, -95, -37, -125, 23, 47, 67, -59, -47, 31, 35, -115, -127, -40, -93, 120, 126, 69, -118, -128, 82, 65, 52, 58, -79, -29, -82, -54, 38, 56, 30, 94, -82, -11, 111, -29, 11, -118, 50, -102, 122, -16, 51, 32, 68, 114, 43, 110, -22, 112, -31, 54, -111, 68, -107, -3, 8, -106, -39, -13, -39, 65, 100, -57, 53, 19, -127, 45, -1, -104, -68, -46, 69, 109, 23, -45, -61, 8, -98, 111, -29, -113, -113, -30, 89, -74, 12, 30, -89, 31, 71, 126, -78, 60, 100, -73, 8, -32, -44, 1, 49, -40, 75, -55, -31, -94, -110, -58, 100, -124, -106, 33, 98, -12, -49, 76, -34, -74, 114, 70, 105, 104, 12, 82, 61, -35, -33, -97, 18, -30, -7, 46, 20, 91, -106, -71, -20, -20, 2, 73, -66, -102, 14, -99, 83, 104, -47, 86, 70, -77, -102, -30, -40, -105, -85, -79, -53, -97, 94, -44, 116, -51, 53, -38, -124, 10, 59, 78, 60, 52, 101, 66, -50, -87, -51, 40, 53, 103, 65, -99, -89, 8, -102, 67, 20, -47, 18, -87, -126, -82, -85, 26, 24, -52, 52, 69, -109, -97, -56, -60, 84, 44, -38, -89, 79, 91, 38, -65, 126, -59, -60, -8, 24, -58, 95, 18, -123, 85, 18, 1, 22, -27, 93, 24, 33, -80, 98, -72, -3, 37, -122, 107, -69, 49, 60, 54, -124, -111, -90, 23, 24, 75, 120, -116, -47, -98, 1, -116, -67, 24, -60, -8, -45, 1, -68, -99, 24, -89, -26, -72, -8, 82, 82, 92, 60, 13, 92, 61, -83, -70, -33, -14, 105, -84, 23, 47, -101, 11, -15, -6, 73, 5, 94, 117, 22, -29, 117, 87, 21, -122, 122, -22, 49, -40, -2, 16, 67, -35, -43, 24, -18, -87, -63, -16, -117, 38, -68, 125, -45, -115, -2, -42, 66, -68, 122, 90, -125, -113, 99, -3, 120, -3, -84, 106, 112, 58, -76, -8, -59, 69, -118, 105, 57, 116, 120, -42, 65, 105, -1, 66, 2, 45, 126, 33, 96, -30, 23, -88, -80, 45, -123, -41, -15, 45, -120, 81, -33, -123, 40, -43, -99, -120, -47, 102, -62, 69, 82, 43, 16, 15, 11, -2, -43, -77, 112, 100, 51, 29, -76, -40, 55, 67, -119, 101, 25, -114, -79, -82, -99, -70, 111, 98, -83, -8, 99, 75, 99, 13, -31, -85, 35, 2, -63, -19, 27, -95, 41, -70, 7, -91, 9, -89, 81, 117, -35, 26, 13, -23, -82, 104, -55, -12, 68, -29, 125, 114, -81, 101, 93, 68, -3, 61, 31, 60, -70, -31, -128, 56, 87, 37, -56, 113, -20, 64, 65, -68, 13, 74, -110, -84, 17, 105, -58, 29, 50, -107, -21, -32, -8, -127, -99, -106, 34, 59, -33, 123, 43, -78, -62, -126, 127, 43, -116, -8, 54, 35, -43, 82, 4, -105, -28, 54, 67, 109, -1, 74, 20, 60, -86, 71, 85, 67, 43, 50, -117, 75, 113, -124, -113, 7, -122, -37, 54, 32, -5, -94, -25, 63, 90, -30, 37, 38, 38, -38, -67, 123, -13, -66, 123, -24, -15, 80, -49, 112, -34, -64, 123, -95, -93, -18, 112, 49, -49, -60, 117, -73, 26, 52, 103, 12, -94, -81, -4, 45, 62, 60, -3, -116, 111, -81, 64, 96, -28, -105, -55, 18, -21, 58, -125, 31, -70, 49, 123, 112, 87, -11, -123, -6, 33, -119, -1, 44, -38, 91, -84, 96, -111, 109, -125, -33, 85, 107, 80, -23, 75, 96, -106, 58, 63, 114, 69, 13, -15, -20, -12, 118, 116, -121, 45, -122, -21, -59, -5, 80, -117, 41, 6, -81, -26, -18, 112, -54, 63, 20, 111, 47, 47, 33, 18, 35, 114, -112, 106, -99, -99, 16, -26, -118, 119, -39, -14, 112, -31, -97, 15, -87, 117, 11, -64, -70, 116, 46, -74, -51, -91, -128, -99, -114, 2, 123, -127, -59, 24, -52, -77, 64, 82, -88, 11, 70, -121, -122, -48, -42, -46, -14, -54, -19, -4, 121, -111, -17, 126, -81, -34, -126, -60, 68, -15, -39, -72, 46, 73, 65, -95, 17, 29, 106, -20, -41, -96, -39, 115, 3, -70, -126, -73, -30, 85, -52, 22, -116, 36, 50, -31, 35, -103, 63, -65, 22, -14, -32, 99, -15, 58, 124, 105, 22, -58, -73, 66, 86, -116, -27, 112, 35, 35, -16, 96, -31, 15, 63, 46, -9, 31, 120, 40, -51, -80, 17, 102, -53, 55, -64, 115, 33, 3, 46, 17, 88, 17, 76, -124, 90, 7, 108, 96, -124, 37, 113, -67, 21, 95, -58, 0, 105, 102, -42, -97, 74, -98, -3, -58, -104, -34, -73, -35, 99, 53, -22, -67, 24, -15, -44, -101, 64, 11, -113, -67, 52, -87, -15, 21, 68, 103, 48, 55, -70, -93, -7, 9, -76, 96, -58, -80, 41, 125, -36, 79, 43, 0, 18, -81, -55, 81, -127, 69, 74, 73, -107, 27, 13, 88, 124, -124, -61, -32, 23, 68, 126, -100, 68, -54, -25, 111, -33, 110, 79, 124, -4, -100, -43, -39, -37, 87, -23, 17, 28, 90, 35, 34, 35, 111, 64, 83, -85, -51, 84, 76, -70, 23, 17, 49, -96, -24, 119, -127, -44, 52, -59, 10, 28, -105, 11, 83, 126, 80, -86, -73, -24, -68, -91, -4, 67, 97, 58, 78, 119, -61, 63, 87, 6, -86, -15, -116, -40, 98, -72, 28, 68, 27, 48, 99, 88, 0, 7, -77, -75, -4, 87, 2, -10, 28, -43, 83, -89, 91, 53, -109, 33, 42, -7, 112, -4, -58, -19, 113, 23, -122, 1, 73, -88, 125, -3, 13, 74, -25, -93, -112, -107, -107, 73, 60, -80, -102, 16, 100, -81, -120, 40, 3, 14, 60, -12, -110, 66, -78, -61, 9, 60, -70, 31, -120, -110, -74, 62, 88, -70, 121, -61, -47, 88, 14, -25, 2, 66, 112, -40, 41, 9, 100, -116, 105, -48, 98, -5, 94, 94, -13, -24, -5, 77, -72, 95, -47, -117, -31, -31, 33, 104, -97, -69, -4, 100, -42, -20, 121, 127, 80, 126, -94, -52, -99, 51, 123, -63, -79, 125, 12, 63, -12, -76, -120, 82, 58, 114, -74, -43, -23, 12, 38, 50, -82, -29, -11, -56, 8, 72, 8, 60, 76, -26, -36, 1, 110, -58, 99, -84, -75, 17, -113, -101, -102, 17, 21, 21, 117, -15, -121, -112, -112, 110, 14, -33, -15, 53, -84, -97, 52, -56, 111, -114, -83, -18, -62, -35, -98, 65, 36, 55, 117, -64, -17, 110, 14, 88, 120, -8, -64, -81, -31, 10, 5, 45, 51, 120, -14, 83, 62, -124, -120, 82, 42, -20, -9, 82, 92, -75, -1, -96, -16, 5, -52, -98, 37, -16, 112, -5, 111, -93, -87, -77, -66, 79, -40, 71, -68, 39, 20, 14, 115, -13, 18, 72, 33, 2, 49, 9, 105, 2, 41, -60, -88, -128, -126, -20, -117, -47, 96, 5, 17, 26, -64, -32, -26, 21, -127, -90, 44, 39, -84, -43, -40, -64, -61, 47, 10, 14, 78, -98, -73, 4, 92, -20, -5, 87, 104, -47, -48, -48, 48, 89, 88, 88, 8, 5, 5, 5, -112, -36, 57, 52, 112, 65, -96, 5, 21, 94, 76, 121, 23, 16, 111, 47, -36, -69, 119, -113, -106, 72, -79, -68, -68, 28, 94, 94, 94, 52, 79, 11, 2, 29, -88, 9, 21, -65, -101, -65, 72, -78, 69, 7, 98, 121, -113, -48, -48, 80, 92, -68, 120, 17, 118, 118, 118, 80, 87, 87, -121, -68, -68, 60, 53, 7, 6, -50, -99, 59, -9, -111, 106, -91, 31, 19, 19, 3, 119, 119, -9, -41, -28, -67, 51, -103, -110, -110, 66, 5, 8, 31, -120, 98, 126, 70, -117, 70, -63, -91, 75, 63, -105, -112, 113, -34, 3, 84, 43, -87, 105, -14, -31, -13, 103, 90, 120, -88, -76, -115, 27, -15, -120, 120, 90, 84, 45, 95, 14, -47, 117, -21, 102, -124, 22, 19, 19, 111, -55, 61, 52, -15, 39, -76, 96, -125, -77, -77, 11, 109, -65, -96, -96, -112, 88, 45, 50, -46, -124, 108, -45, -114, -7, -7, -7, -127, -103, -103, 6, 45, 104, -5, -92, -17, -65, -123, 22, -89, -55, 109, 117, -11, -24, -22, -24, 38, 111, 78, -108, 58, 31, -126, -89, -87, 18, 116, 78, -101, -61, 93, 79, 6, 41, -50, 114, 118, 83, -54, -101, -45, -46, -90, 33, -22, 98, -95, 127, 11, -7, 80, 77, -107, 127, 93, 107, 19, 23, -1, 81, 2, 44, -88, 48, 86, -101, -56, 127, 21, 70, -29, -48, -75, -102, 76, -83, -6, 55, 48, 104, 29, -61, -7, -98, -9, -16, 35, 94, 22, -98, 61, 31, -32, 78, -74, -35, -70, -33, -61, -25, -59, 7, 28, -117, -23, -61, 6, -25, 1, 48, -70, 60, 1, 127, 92, 62, 14, 69, 22, 100, -50, 52, -106, -103, -103, 25, 93, 92, 92, 28, 53, -84, 86, 18, -11, -66, -87, -82, -82, -90, -126, 43, -120, 17, 96, 100, 96, 96, 64, -115, 91, -35, 124, 68, -128, -35, 119, -9, -18, -35, -117, 8, -84, 88, -12, 120, 8, 126, 125, -17, -15, -75, -25, 45, 48, -12, 17, -8, -4, 13, -104, 4, -16, -35, -4, -52, -78, 120, -47, 81, -106, 69, 109, -6, -126, -53, -95, 43, -76, 10, -84, 122, 71, -80, 33, -40, 22, 43, 57, 88, -80, -35, -33, 22, -101, 66, 109, -79, 94, -103, 3, -25, 85, 24, 17, 73, 20, -48, 1, 4, -114, 27, 75, 108, 4, -57, -106, -7, -45, -26, -102, 124, 39, 86, -53, -42, 36, 73, -12, 101, 27, 16, 104, 97, -119, -47, -58, 64, 2, 46, 92, -16, 60, -53, 4, 85, -111, -57, 48, -8, -48, 7, -71, 110, 71, 16, -85, -71, 5, -87, -28, -69, -88, -60, 105, 39, 90, -29, -72, 80, -21, -72, 17, -71, 6, 43, 16, 39, 67, -105, -8, 39, -80, -104, -75, -117, 127, 97, -21, 33, 13, 58, 28, -77, 95, 11, 109, 31, 38, 72, -40, -111, -65, 45, 100, 7, -92, 108, 86, 65, -54, 101, 25, 36, 89, -26, -94, -119, -114, -126, 86, 23, 125, -68, -60, 16, 122, 39, -33, -96, -43, 89, 31, -115, 75, 40, 80, -97, 75, -103, 6, -108, 25, 25, -42, 57, -54, -77, 112, -63, -104, 87, 18, -26, 2, 71, -95, -54, -62, -115, -108, 88, 119, -68, 27, -18, 0, -97, -88, -60, 84, 77, 100, -38, 49, -46, -122, -42, -106, -12, -95, -11, 61, -63, -58, 13, -42, 117, 91, -82, 127, 7, 72, -103, -73, -105, -75, -119, -19, -61, -88, 42, 27, -58, -52, -40, 9, -84, -32, -64, 88, -24, 97, -116, 93, -26, -58, 88, 48, -87, -35, 56, 48, 74, 20, -3, 111, 20, -39, 80, -58, -65, 7, -90, -69, 54, -5, 76, 11, -7, 101, -92, -69, -56, -51, -38, -84, 55, -100, 0, -120, -117, -34, -98, 72, 78, -120, -127, -65, -77, 61, -36, -116, 13, 97, 107, 106, 12, 95, 55, 23, 68, 5, 7, 34, 41, -26, 10, -46, 111, -91, -30, -58, -11, 68, 92, -115, -66, -116, -24, -16, 16, 36, 92, -119, 68, 4, 57, 103, 115, -26, -12, -88, -106, -30, -15, -87, 57, -85, 40, 49, -31, 86, 95, 91, 43, -58, -122, -34, -48, 60, 113, 63, 17, -80, 56, -10, -26, 53, 70, 7, -6, -55, 26, -82, 15, 111, 6, 7, 49, 50, -12, 26, -17, -57, -57, 104, -7, -47, -34, 79, -116, 99, -80, -17, 37, -88, 16, -93, 36, 47, 39, -90, 52, 63, 119, 10, 124, 57, -14, -48, -17, -118, 84, -39, -11, -87, -16, -68, 8, 26, 98, -44, -111, 97, -51, -121, 52, 51, 14, -108, 92, -112, -60, -109, 116, 91, 116, -92, 89, -94, 42, -4, 4, -118, -4, 36, 80, 30, -86, -128, 124, 79, 9, -28, 121, -120, -94, 58, 66, 17, -83, -87, -90, 120, 28, -83, 78, -10, 37, -32, 46, -74, 46, -98, 120, 100, 16, 91, -88, -33, -24, -104, -74, 111, -21, 17, 23, 20, -126, 40, 15, 47, -72, 88, 89, 65, 0, 6, 68, 120, -7, 32, 43, 46, 1, 125, 53, 13, -72, -100, -75, -127, -69, -115, 29, 92, -51, -83, -32, 68, -60, -108, -128, 71, 57, 73, 41, -24, -99, 84, -61, 105, -115, 83, -48, 82, 84, -6, 116, -120, 117, -65, 57, -51, -32, 39, -12, -46, 108, 11, 35, -125, -9, 30, -114, -10, 32, 112, 2, 33, 126, 23, 96, 105, 106, 2, 89, 73, 49, -28, 101, 103, -94, -95, -90, 10, -71, -103, 25, 80, 83, 60, 14, -34, 67, -20, 109, 7, -10, -19, 13, 101, 102, -36, -87, -69, 103, -5, 86, 75, -74, 61, -116, 17, 28, 108, -52, -43, -100, -5, 89, -33, -77, -19, 101, -70, 48, -75, -34, 80, -29, 114, 44, -13, 23, 67, 75, -84, 26, -126, 12, -56, -67, 35, -78, -70, -39, 94, -98, 49, -61, -26, -60, 126, 107, 85, 105, 110, 38, 25, 2, 29, -114, -120, -15, -49, -107, 21, -29, 89, 44, 39, -63, -67, 86, 85, -102, -109, 85, 91, -102, 93, 90, 87, -106, -3, 56, -11, -4, 119, -97, 5, -86, -126, -78, -115, 73, 26, 104, 74, 80, 65, -102, -117, 40, 66, 77, 121, 90, -49, 40, -15, -100, 53, 87, 19, -44, -42, -106, -25, 63, 44, 35, -50, -9, -101, -84, -92, -64, 92, 25, 81, 110, 122, 53, 25, 1, 38, 99, 101, 126, 21, 87, 61, -31, 16, -81, -45, 98, 97, -106, -22, -126, -89, -114, 75, -14, 47, -102, 9, 90, -108, 101, 102, -36, -21, 105, 110, -64, -121, -119, 113, -78, 62, -1, -124, 97, 114, -115, 75, -14, 115, -33, -105, -28, 62, 88, -2, 31, 121, -37, 39, -59, 51, 36, 7, -39, 124, 109, -67, 106, -122, -66, -68, 16, 60, -87, -54, 66, 89, -10, -99, -47, -76, -72, 80, -73, -85, -98, 38, 26, -41, -67, -49, -80, -91, 92, -76, 97, 75, -15, -73, 102, 75, -66, 104, -11, -35, -69, 49, 37, -62, 111, 126, -72, -103, 76, 102, -112, -87, 76, -58, 52, 69, -104, -24, -63, -39, -20, 18, -100, -117, 15, 107, 11, -18, 23, 113, -111, -87, 21, -80, -109, -52, 98, 53, -28, -14, 33, -64, 66, -106, 93, -101, -121, 107, -65, 46, 119, 50, -117, 22, 103, 56, -101, -28, -63, 85, 123, 78, -20, 63, -61, -86, -63, -15, -98, -53, 70, 20, -44, -100, 22, -5, -44, 15, 13, -112, -2, 115, -90, -84, -111, -115, 101, -22, 36, 20, -8, 92, -65, -125, 8, -126, 92, -13, -92, 78, 9, -105, 30, 53, 39, -9, -50, 37, 45, -40, 39, 88, -30, 92, -4, 89, -40, -111, -38, -127, -44, -74, 113, 22, 48, 9, -45, -127, -62, 57, 89, 28, 39, -48, 67, -12, 24, -113, 49, -43, 51, 71, 86, 94, 107, -121, -92, -78, 5, -31, -110, -42, 55, 37, -108, 45, 125, -113, 104, 56, -104, -55, -100, 114, -38, 70, -7, 55, 69, 66, -35, 81, -64, -56, 45, -2, -85, -51, -91, 27, 56, -94, 115, 62, 96, -54, -16, 76, 79, 113, 94, 73, -96, 78, 117, -57, 61, 39, 20, -8, 40, 34, -22, -28, 14, -124, 41, 109, 71, 56, -111, 104, -115, 29, -72, 107, -57, -121, -30, 16, 77, 84, -57, 91, 33, 47, -16, 52, 34, -19, 79, 106, 95, 13, 80, 29, -84, -55, -76, 66, -39, -11, -45] astore_1 aload_0 ldc literal_1294:"__e7-20.png@16384" aload_1 invokevirtual java.lang.Object put( java.util.Hashtable, java.lang.Object, java.lang.Object ) // pc=3 pop arrayinit [-16, 52, 22, 2, -53, -74, 21, -113, -90, 114, -13, 93, 115, -81, -85, 44, 77, 65, 117, -7, 77, 42, -88, -104, -14, -72, 104, 107, -52, 35, 16, -78, 30, 3, 47, 107, -47, -37, 93, -123, 23, 68, 6, -5, -22, 49, 62, -46, -127, 119, 99, -35, 24, 31, -19, -62, -16, -85, 22, 116, -76, 100, -31, 70, -46, -7, 87, -119, -47, 54, 83, -49, -14, -35, 59, 17, 1, -76, -6, 110, 120, -61, -53, -34, -57, 24, 25, -23, 69, 71, -5, 35, 16, 15, 10, -44, -43, -26, -112, -70, -128, -128, -116, 114, 114, -84, 2, -67, -67, -51, -24, -21, 107, 67, -17, -117, 70, 114, -84, 20, -103, -103, 49, 21, -9, -18, 93, -82, -8, 46, 63, -21, -35, 91, -43, -49, 58, -38, -48, -13, -12, 9, 90, -101, -22, -47, -34, -36, 64, 11, 113, -7, -119, -86, -96, 28, 29, 37, 6, 24, -3, 120, 73, -51, 51, -9, -76, 29, 35, 68, 81, -39, -5, -68, 7, 117, 85, 101, 52, -80, 113, 55, -7, -86, -28, -12, 36, -36, -46, 116, 4, 82, 76, -12, 22, 122, -95, -81, -60, 7, -67, 69, -98, 120, -102, -27, -124, -57, 55, 77, 105, 94, 24, -115, -73, -83, -15, 36, -37, 29, -49, 114, -35, 8, -128, 117, 65, 95, -111, 27, 94, 22, -72, -96, -11, -90, 9, -14, 3, -113, 35, -53, -9, -88, -40, -33, -96, -59, -20, 124, 23, -91, -126, 124, -41, -109, 73, -75, 97, -26, 104, -65, -23, -125, -98, -36, 43, -24, 47, 78, 70, 127, 105, 42, 94, 85, 103, 96, -88, -2, 1, 70, 90, 10, 49, -38, -100, 79, 32, 73, 26, 6, 30, -35, 68, 111, 97, 34, 105, -21, -117, -121, 23, 78, 53, 100, -39, 29, -97, 17, -36, -111, 4, -36, -77, -2, 15, 60, -84, -74, -33, -70, 117, 19, -51, -13, 66, 72, -120, 31, 44, 44, -69, 5, 126, 58, -73, -46, -98, 61, 53, 124, 124, 124, -76, -9, 55, 1, 22, -92, -65, 16, 60, -20, 20, -128, 119, -50, 120, 63, 100, 13, 85, -103, 3, 112, 49, 63, -126, -60, 16, 61, 4, 121, 104, 66, 77, 78, -32, -93, -102, 18, -97, 62, -128, 95, -119, -52, -95, -54, 95, -32, 98, 42, 105, -105, -126, 2, -5, -17, -65, -2, 26, -23, -77, -110, -14, 78, -116, 110, 54, 126, -99, -1, 59, -74, 110, 88, -125, -73, -34, 43, 80, -26, -59, -126, -37, 14, 108, -64, 21, 6, 8, 109, -97, -121, 57, -117, -105, -29, -32, -38, -107, 8, 95, 51, 11, 50, -116, -37, 31, -58, 93, 79, -98, -46, -21, 109, 91, -75, 72, 83, 91, 104, 59, 12, 121, 55, 64, -123, 127, 47, -100, 78, 10, -62, -53, 72, 21, 55, -62, 77, 81, 114, -21, 56, 114, 19, -59, -111, -24, -89, -123, -112, -77, 42, 56, -70, 111, 37, -114, -18, -94, -125, 42, -37, 82, -86, -41, -59, 40, -13, -70, 69, -22, -101, 87, -47, -47, -53, 74, -16, -88, -104, -23, 29, 125, 44, -56, -59, 58, 5, -109, 56, 84, -9, -122, 27, -8, 31, -61, -107, 82, 103, -72, -35, 58, 61, -64, 103, 124, 40, -21, -104, -97, 36, 78, 37, -87, 64, 51, 78, 30, 22, 15, -12, -55, -10, 9, -88, 70, 31, -125, -76, -81, 8, -40, -12, -9, 116, -84, 17, 91, -51, 56, 99, 110, 47, 126, 74, 92, -102, -49, 92, -44, -90, -84, 70, -5, -99, -11, 120, 82, -63, -113, 64, -37, -19, -16, -46, -104, 7, -3, 125, 20, -72, -97, -96, 67, 126, 60, 63, -118, 98, 121, 113, -57, -101, 1, 9, 62, 91, -48, 92, -60, -113, 54, -46, -74, 54, -123, 1, -44, -66, -58, 2, -108, -72, 31, -115, -41, 94, -50, -113, 48, -121, 45, 100, -2, -89, -61, -35, 0, 22, -40, 8, -52, -63, 57, -31, 57, -72, 27, -56, -118, 96, -61, -91, 8, -74, -37, -116, -10, 50, 1, -76, -45, -58, 91, 53, 109, -68, 53, -85, 86, -50, -110, 16, 21, -78, 11, -11, -11, 64, 82, 116, 4, 30, 100, -36, 68, 57, 1, 123, 9, 100, 59, 45, 57, 1, -83, -11, -107, -44, -36, 22, -67, -89, 79, -87, -7, 89, -99, 49, -120, -73, 53, 63, -19, -90, -91, 42, 95, 117, 66, 70, 42, -4, -40, 17, 113, 119, 65, 30, 46, 63, -54, 15, 74, -102, -117, 80, -6, -53, 124, 103, 60, -118, 84, 65, -70, -117, 96, 73, 113, -80, -62, -77, -89, -23, 103, -47, -13, -64, 6, -3, 37, -34, 24, 106, -120, -63, -48, -29, 104, 114, 127, -121, -94, -81, -40, 11, -99, 119, -50, -128, 10, 57, -78, -68, -91, -98, 95, 58, -71, 102, 10, 48, -80, -87, 113, 45, 37, -96, 66, -112, -120, 40, -69, 62, 95, -100, -92, -113, -62, 59, -71, 40, 45, 28, 11, 87, -61, 9, 50, -49, -120, 58, -54, 66, 80, 95, 2, -14, 65, -102, 80, -67, -86, 15, -119, -117, 10, 96, -42, 60, -16, 86, 71, -120, -47, 76, 74, -11, -48, 121, 1, 109, 78, 61, 2, 44, -90, 25, -52, 69, -124, -122, 59, 20, 21, 22, -95, -77, -93, 19, 3, 3, 3, -33, 65, 11, 82, 83, -9, -89, -96, 5, 89, -13, -48, -62, -65, 22, 21, 20, -62, -2, -100, 93, -60, 116, 75, -29, 72, -122, -8, -98, -78, -115, 24, -88, 57, -120, -31, -106, 35, 24, 107, -109, 71, 111, -39, 17, 80, -83, -126, 111, -56, -4, -114, -28, 35, -13, -111, 34, 77, -28, 40, 81, 96, 27, -19, -96, -99, 27, 37, 109, -122, -102, -91, -48, 95, 115, 0, -35, -91, 27, -16, 32, 96, 101, -16, -116, -34, 22, 92, 11, -106, -25, 105, -82, 29, 120, 100, -77, 18, 35, -41, -40, -16, -79, 82, 26, -24, 52, 1, -98, -37, 2, -35, 14, 40, -72, -82, 9, -93, 24, 125, 88, 37, -24, 67, -53, -1, 120, -89, -74, -81, -52, -100, -17, 40, -113, -10, -36, -99, -5, 117, 126, 101, 91, 33, 68, 97, -101, -53, 66, -126, 28, 108, 37, -78, -119, -128, -120, -115, 20, -98, -123, 92, 20, -99, -83, -22, -108, -96, -123, -100, 100, -83, -69, -113, -78, 120, -81, -14, -84, 94, -101, 43, 71, -31, -98, 124, 18, 87, -53, -99, 112, 58, 88, -32, -61, -110, -61, -45, 99, 16, -57, 46, -102, -73, 40, 117, -59, 34, -13, -84, -19, -85, 94, -107, -78, 111, 71, 21, 15, 81, 106, -16, 51, -93, 94, -118, 3, -49, 60, -49, -95, -37, -45, 14, 52, -15, -94, 9, 90, -44, 101, 81, 77, -50, 63, -30, -38, -115, -126, -67, 27, 63, -91, -83, 89, 18, 17, -65, 120, 122, -66, -121, -59, 115, 22, 46, 46, -38, 119, 107, -80, 67, -91, -102, -76, -81, 70, -85, 65, 61, -102, 12, -22, -16, -112, -121, 64, -117, 99, -7, 104, -77, -83, 65, 127, 76, 23, 70, 50, 7, 48, -110, -47, -121, 22, -117, 42, 52, 106, 60, -62, -24, -27, 30, 4, -87, 122, 94, -99, 102, 9, -109, -107, 60, -117, 70, -50, 124, -83, 78, -36, 73, 62, -117, -22, 82, 31, 52, -43, -5, 19, 48, 65, 106, 2, 40, -38, 90, -126, 8, -88, 8, 32, 23, 63, 12, 77, -115, -124, -108, 61, -10, 68, 67, -67, 59, 30, -41, -72, -93, -106, 64, -117, -62, 7, 14, -72, 28, -84, 59, -14, -41, 120, 106, 46, 75, -40, 45, 66, 86, 35, -70, 96, 45, -79, 36, 92, 14, -97, 108, 58, -28, 100, 30, 69, 95, -89, 47, -58, 95, 93, 39, -48, -30, 6, -66, -67, 75, 5, -58, 47, 0, -93, -58, -64, -48, 113, 96, 80, -128, 8, 11, 38, 59, 86, -95, 41, 122, 65, 103, -50, -7, 57, 76, -45, -18, -103, -21, -122, 65, -27, 119, -51, -16, -24, -98, 37, 33, -24, -105, -55, 71, -47, 13, -68, 127, -101, -127, -25, -99, 9, 85, -107, -123, 102, -4, 121, 55, -43, 44, 10, -17, 104, -103, -41, -106, 89, -4, 116, 18, 78, -99, 24, -42, 89, 58, 49, 108, 98, 18, -50, 59, 14, 73, 56, -19, -108, 20, 82, -34, -48, 103, -88, 68, -113, 20, 103, 122, -44, -89, -82, -59, -77, -78, -83, 120, 90, -79, 5, -43, 105, 107, -111, -30, -72, -94, 58, 90, 110, -7, -116, 113, 107, 37, 45, -24, -69, -50, 93, -27, 64, -54, 67, 75, 52, 118, -89, -93, 119, -88, -122, 0, -117, 92, -76, -12, -34, 65, -35, -77, 4, 20, -75, -8, -32, 78, -75, 25, -30, -117, 85, 105, -64, 34, 44, 95, 26, -63, -71, 18, 112, -53, -28, -128, 97, -36, 38, -100, 112, 91, 13, -63, 83, -12, 67, 127, 65, 11, 34, -76, 69, -87, -75, -29, 26, -108, -43, -104, -94, -11, -119, 37, 94, 14, 94, -61, -45, 23, -58, 4, 82, 120, -94, 103, -64, -120, 120, 91, 24, -29, -59, 107, 19, 34, -38, 120, -36, -90, -119, -78, 58, 118, -44, -111, 103, -87, -68, -98, 16, -15, 91, -69, -31, -28, -66, 100, 10, 26, 52, 105, 8, -75, -66, -10, -42, -58, -16, 21, 75, -116, 92, -1, 127, -84, -99, 7, 84, 21, 87, -9, -10, 73, 52, 22, 98, 16, 81, -108, -120, 70, -63, -106, -120, 52, -107, 42, 69, -108, 38, -67, 73, -105, -90, -128, 72, -75, 80, 20, 17, -80, -128, -12, 38, 93, 1, 21, 1, 69, -79, -128, 8, 72, -107, -90, 116, -23, 77, 122, -107, 46, -106, 104, -108, -25, 127, -18, -68, 121, 73, 12, -102, -28, 93, -33, 55, 107, -19, 53, -25, -50, -99, 57, 12, 115, -17, 61, 51, 103, -1, -10, -77, -73, 27, 38, 18, -35, 49, -111, 112, 6, -29, 9, -82, 100, -19, 66, -52, 21, -29, 55, -36, 49, -107, 112, 22, -19, -89, -9, -93, -1, -68, 62, -127, 21, -42, 24, -10, 54, -63, -96, -117, 14, 6, -113, 105, -94, 69, 95, -22, -117, 57, -34, -52, 14, -81, 91, 36, -88, -68, 40, -99, -42, -114, 103, -30, 98, 13, 89, -76, -127, 74, -17, 37, -87, -66, 36, 68, 121, -33, -118, -36, -120, -27, -101, -58, 110, -83, -31, 67, -30, 58, 126, -60, -80, -14, -62, 115, -59, -49, 61, 39, -41, 112, -4, -83, 122, 37, -27, -16, 55, -13, 110, 27, 51, 28, -83, 12, 35, -32, -79, -18, 18, -122, 82, 79, -95, -52, -122, 7, -83, -95, 74, 24, 46, 113, 66, -47, -7, 3, -72, -60, -63, -114, 12, 75, 5, -76, -92, -100, -4, -30, 121, 29, -38, -16, 29, -29, 89, -34, 5, -109, -87, -102, -84, 40, -73, -29, 68, -43, 81, 94, -44, 59, -14, -93, -35, 93, 20, 93, -34, 123, -48, 27, 40, -125, 1, 2, 47, -6, 46, -55, -94, 61, 88, 10, 13, -89, -7, 81, 105, -51, -127, -32, 61, 76, -109, 86, -68, 12, 43, -1, -18, -4, -44, -74, 45, 19, 54, -35, -63, 82, -23, 35, -69, -123, 0, 11, 97, 100, -40, 74, -32, -111, -115, 4, 30, 30, -107, 70, -110, -91, 44, 98, 14, -18, -2, 116, 81, -125, -21, -106, -35, -34, 13, 124, 95, 45, -106, -56, -61, -103, 124, 78, 93, 6, 22, 98, 50, -48, -8, 89, 98, 70, 115, -101, -40, -116, -111, -64, -18, -103, -61, 98, -110, -80, -105, 81, -60, 57, 85, 109, 92, 50, 50, -97, -119, 54, -75, -98, -119, -73, 58, -127, 12, 119, 31, 60, -119, -68, -116, 51, -6, 58, 95, -116, -80, -13, 21, -31, 82, 110, 84, -107, 71, -125, 22, 25, 59, 118, -17, -62, -112, -17, 5, -15, -9, -73, 98, 87, 17, 85, 69, 111, -127, 19, 7, 74, 78, -15, -52, 20, -38, 113, -67, 44, 117, 19, 66, 99, -104, 58, -102, -62, 52, -48, 122, 69, 31, 93, -73, 45, -47, 77, 96, 96, -43, 121, -79, 89, -121, 101, 85, 69, 101, 5, 85, -93, -30, -11, 43, 76, -75, 14, -32, -43, -43, 26, 76, 16, 88, 65, -127, -118, -126, 54, 76, -58, 85, 99, -68, -66, 7, 99, 109, -3, -104, -56, 108, -58, 56, 45, 71, 32, 105, 79, 54, -12, -31, -43, -44, 36, 53, 49, 29, 26, 28, -4, -20, 115, -71, 26, 21, -40, -39, -41, 81, -121, -23, -47, 94, 76, -113, 116, 18, 101, 70, 7, -34, 78, 14, -32, -35, 100, 63, 1, -103, 109, 120, 61, 66, -44, 73, 67, 77, -104, 28, 108, -60, 68, 127, 3, 70, 122, -21, 48, -36, 89, -119, -106, -22, 28, 36, -58, 5, 15, 125, 86, 63, 102, -43, -73, -91, -46, 91, -104, 112, 80, 100, 45, -12, -123, -104, 33, -75, 110, 62, 20, 54, 46, -60, 29, 43, 110, 92, -43, -33, 60, -29, 44, -50, -14, -85, -109, -56, -86, 119, -31, -102, 27, 63, 101, 57, 11, -64, -112, -113, -111, -20, -77, 8, 26, 60, -52, -108, -124, 84, -125, -109, 1, -30, -84, 11, -90, 105, 46, 9, 95, 61, -74, 5, -55, -25, 84, -101, -101, -46, -49, -31, -15, 37, 35, -8, 30, 33, -97, 101, -56, 1, 84, 37, 59, -96, -4, -58, 81, 60, -16, -44, 69, -76, -107, 18, 50, 3, 77, 81, 118, -53, 25, -107, -9, -50, -93, 46, -51, 19, -27, 9, 71, -111, 17, 98, -128, -22, -69, 103, 40, -80, 113, -45, 77, -95, -34, 83, -109, -19, -69, 89, -60, 47, -79, 97, -93, -79, -48, -102, 95, -51, 36, -40, 112, -23, 32, 31, -12, 56, -24, 113, 68, -118, 3, -75, -107, 37, 104, -18, -18, 71, -15, -13, 90, 4, 122, 123, -125, 84, -32, 71, 25, -33, 22, -116, -103, -21, -52, -116, 94, -70, -56, -3, -59, -70, 6, -111, 81, 91, -121, -6, -121, -102, 94, 15, 79, -73, 20, -60, 20, -108, 30, -42, -77, 57, -75, -58, 66, 9, -110, 39, 92, 112, -64, 54, 6, 65, 65, 37, -88, 47, -18, -59, 96, 51, -127, 74, 47, 94, 19, -96, -9, 26, -87, -50, -123, 30, -44, -115, 59, 48, -22, -121, -116, -76, 12, 59, -30, 108, -68, 74, -46, 121, 48, 80, -37, 76, -40, -4, 94, -58, 4, -32, -114, -14, 89, 52, 84, -104, -61, -93, -60, 9, -85, 45, 43, -31, 123, -54, 6, -93, -127, 12, 24, -13, 102, 64, 71, -24, 50, -124, -48, -50, -17, -14, 8, -76, -94, -19, 33, 34, -9, -35, 87, 33, 8, -119, -84, -35, 90, 87, 91, 59, 53, 54, 52, 8, -25, 3, 114, 104, -68, 101, -118, -103, 26, 21, 50, -82, -84, -59, -109, 51, 43, 112, -43, 116, 25, 110, 88, 48, -30, -87, -21, 15, -8, -83, -60, 16, -8, -40, -123, -10, -57, 30, 56, -90, -79, 7, 99, -61, 67, 32, -57, -66, 58, 114, -28, 8, -25, 103, 15, 67, -89, 24, -82, -116, 68, 51, -112, -5, -31, 82, -44, -100, 89, -123, 103, 39, 87, -29, 25, 25, 15, 43, -50, -81, 67, -75, -41, 6, 60, -9, 103, 71, 123, 56, 27, 70, -109, 127, -63, -69, 18, 118, -94, -90, -36, -117, 79, -115, -74, -104, -18, 12, 70, -10, 53, -71, -36, -81, 42, -20, 56, 56, 126, 58, 32, 40, 60, 33, -50, 66, 20, 110, -117, -105, -63, 124, -15, 114, -40, -48, -81, -128, -59, -9, -52, -48, 89, -51, 6, -79, -107, -84, 80, -27, -28, -102, -110, -28, -35, -2, -81, 34, 33, -121, 15, 46, -67, -47, -28, -56, -116, -26, -117, 92, -24, -16, -26, -92, -20, -123, 55, 23, -86, -4, -10, -94, 35, 80, 16, 93, -95, 123, -47, -29, -61, -125, -105, -121, -106, 62, -4, 55, -3, 93, -66, -111, -92, 122, -36, -59, 45, -11, 78, 78, 126, 124, 110, 103, -17, -59, -54, -42, -106, -12, -26, -50, -10, -46, -2, -63, -34, -110, -105, 35, 67, 69, 67, 99, 99, 37, 99, 31, 62, -26, -35, -55, -50, 127, 30, 124, -29, 118, -48, -33, 2, 11, -85, 78, -48, 25, -76, -126, -50, -92, 29, -28, -11, -100, 116, 23, 57, 43, -1, -73, 58, 37, -21, 100, 23, -6, 92, 124, -92, 4, 54, 109, -6, -86, 53, 63, -48, 57, 120, 47, 89, 118, 61, 114, 5, 99, -13, -100, -12, 99, 55, -11, -70, 123, 58, 110, -64, -7, -24, 106, -79, 47, 65, 11, -30, 96, -2, 36, -19, -101, 6, -85, -101, -27, 48, 8, 76, -127, -79, -67, 3, 70, 110, -56, 96, -30, -127, 37, -86, 51, -50, -61, 48, -46, 27, 70, 110, 54, 72, -72, 117, 6, -64, 36, 49, -96, -85, -69, 7, 102, -122, -22, -72, 117, 65, 23, -46, -90, -57, 64, -6, -104, -123, 22, -33, -50, 91, -64, -24, -24, -101, 52, -12, 30, -64, 27, 82, -121, -25, -32, 17, 107, 24, 93, 42, -59, -78, -115, 82, 33, -33, 124, -13, -19, -126, 47, -56, -32, 57, -51, -51, -51, 91, 73, 115, 47, 21, -79, 70, -125, 22, 60, -84, -55, 95, 6, -24, -14, -98, 109, -89, -113, -32, -41, 72, 79, -116, 55, -41, 99, 100, 106, -118, -126, 109, -97, 104, -48, 34, -27, 26, -75, 30, 27, 29, 5, 81, 12, -128, 56, 113, -29, 44, 45, 45, -25, -88, 88, -13, 23, 125, -77, -91, 112, -41, -118, 87, -53, -71, -83, 90, -43, -113, 122, 96, -3, -49, 27, -63, -54, -58, 6, -58, 21, -52, -48, -80, -76, 70, 80, -7, 12, -20, 116, 57, -16, 42, 120, 62, -90, 31, -24, 99, 32, -50, 16, 77, -2, -118, -56, 52, 91, 60, 30, -58, -9, -19, 111, -28, 34, -6, -110, 110, -40, -1, -108, 18, 106, 62, -65, -128, 112, -125, -92, -108, 12, 20, 20, 85, -96, 115, -64, 4, 74, -54, -22, -112, -35, -89, 64, -87, 44, -56, -102, 50, 73, 41, -46, 86, -40, 15, 127, -45, 109, -56, 117, 94, 1, 77, 53, 121, -20, 33, 106, -116, 29, 59, 5, 19, -1, 10, 45, 26, 27, 27, 103, -110, -110, -110, -80, 105, -45, 38, -120, -118, -118, -126, -68, -90, -108, 21, 4, 92, -52, 26, 1, 12, 84, 90, 40, -78, -90, 82, 66, 17, 103, 62, -91, -72, -72, 123, -9, -18, -100, -102, 22, 26, 26, 26, 55, 105, -23, -93, -118, -117, -117, 65, 91, 19, -107, 0, 85, 116, -111, -88, 50, 40, 48, -78, 107, -41, 46, -112, 113, 3, 1, 1, 1, -76, -44, 82, 72, 79, 79, -89, 38, 12, -76, 115, -16, 38, -29, 14, 41, 42, 121, -14, 75, -97, -121, -52, -86, 85, 31, 50, 89, 89, -15, -100, -4, -35, 55, 0, -120, -22, 8, 83, 52, -107, 5, 1, 22, 67, 52, -107, -123, -111, 17, -14, 22, 47, 70, -31, -118, 21, 120, -70, 124, 57, -92, 86, -81, -2, 18, -76, -104, -83, -125, 65, 64, 4, 1, 18, 59, 112, -10, -20, 89, -22, 117, 81, 81, 17, 1, 22, -65, 80, 70, -38, -44, 54, 82, 79, 1, -36, -36, 20, -76, -104, 61, -18, -33, 40, 45, -78, -116, 55, -106, -42, 92, -36, 13, 95, 7, 99, 24, -104, -39, -62, -117, -128, -117, -68, 99, 60, 72, -43, 97, 111, 113, -105, 94, 63, -17, -63, -47, -3, -21, -81, -20, -25, 127, 74, 0, -50, -84, 115, 106, -51, -102, 53, 21, 52, -5, 75, 87, 73, -92, 78, 75, -31, -17, -80, 66, -107, -40, 25, 98, 60, -1, 115, -50, -2, -56, -68, 16, -27, -94, 30, -40, -75, -66, 66, 64, 31, -7, -65, -6, 127, -123, 63, 1, 23, -105, -6, -33, 83, -19, -109, 101, -109, 96, 59, 61, 0, 86, -21, 62, -120, 95, 41, -57, -10, -72, 124, -16, 69, -27, 127, 53, 5, -21, 5, 75, -91, 15, -26, 26, -30, 53, 86, 86, 86, -76, -30, -37, 51, 68, 73, 3, 85, 85, 85, 16, 101, 32, 8, -44, 0, 25, -45, -95, -84, -86, 94, -45, 49, -115, -34, -82, 105, 96, -16, 13, -16, -10, 55, -32, -45, 12, 102, -105, 47, -11, 75, -96, -123, -120, -74, -64, 82, -8, 26, 111, -123, -66, -52, 122, 44, 87, 21, -60, 114, -18, -51, 88, -85, 78, 28, -11, 123, -74, 64, 74, 96, 37, 92, 52, 54, -64, 89, 109, 61, 28, -44, -40, 32, -53, -67, -84, -5, -77, 116, 103, -89, 126, 94, 82, -22, 39, 50, -42, 115, 71, 25, 35, -71, -90, -104, -88, -72, -128, -15, -118, -117, 104, 79, -73, 66, 101, -76, 26, 98, -116, 72, -80, -55, 81, 113, 52, -58, -103, 32, -17, 12, 15, 42, 61, -74, -95, -62, -105, 3, -27, -98, 91, -15, -60, -23, 39, -36, -43, 91, -118, 48, -39, -59, -70, -65, 67, -117, 111, 57, -27, 25, -80, -5, 48, 35, 68, 15, 50, 65, -38, 106, 53, 100, 28, -104, 17, -111, -83, -124, 61, -58, -53, -31, -59, 58, 31, -115, 92, 76, -24, 44, 72, -60, -28, -52, 36, -122, -57, -102, 49, 60, -34, -116, -119, -103, 9, 116, -28, 39, -96, -127, -68, 23, 61, -97, -82, 76, 117, -31, 31, -22, 123, -113, -77, 14, 72, -67, 27, 59, 107, -6, 59, 69, -87, -38, 21, 58, -118, -30, -48, -111, 23, -126, -71, 10, 47, -12, -28, 118, -32, -128, -94, -64, 108, -83, 11, 2, 44, 62, 59, -122, -12, -15, -59, 107, 23, -50, -69, -71, -91, 121, 31, 23, 38, 13, -73, 99, -46, -111, 15, 83, 1, -126, -104, -118, 35, -32, 34, -127, 88, 12, 49, 95, 2, 45, -114, 17, 104, -95, -77, 29, -107, 123, 57, -31, -52, -79, 97, -114, -126, 50, -8, -36, -23, -115, -98, 39, -113, -5, 7, 122, -100, 125, 123, 37, 44, 4, -47, -95, 33, 8, -14, -10, 68, 120, -96, 31, -91, -90, 32, 109, 10, 82, -60, 70, -122, -31, 114, 104, 48, 66, 124, -67, -32, -17, 121, 30, 17, 65, -2, -120, 10, 9, -124, -65, -57, 57, -104, 104, 107, 4, -50, -62, -16, -12, -5, 11, -118, 30, -36, 61, 88, 91, -10, -12, 109, 127, 79, 15, -103, -73, -67, -94, 69, 66, 83, 54, 61, 53, 65, 65, -117, -111, -95, 33, 80, -59, -1, 105, 105, -34, 126, -81, -101, -13, 106, 114, -110, 56, 23, 91, 81, -104, -99, 57, 11, 103, 28, -123, 24, 60, -3, 85, -41, 35, -47, 114, 7, -82, 91, -16, 33, -26, 32, 15, 10, 60, -10, 33, -41, 85, 10, 77, -73, -84, -47, -104, 104, -127, 98, 50, 118, -106, 69, -18, 39, -112, -62, 10, -75, -41, 77, -16, 52, 68, 25, -43, -105, -75, -48, 120, -45, 26, 79, -125, 53, -112, -27, 38, 5, 95, 21, -74, 44, 7, 1, 6, 103, 74, 13, -58, -66, 97, -21, 70, 54, -74, -56, -115, -21, -39, -50, 111, -35, -76, -87, 77, 82, 84, -108, -64, 8, 99, -104, -23, 25, -64, -38, -60, 20, 14, 22, 86, 112, -78, -78, -63, 73, -53, 35, 112, 59, 118, 12, -18, 14, -114, -80, -73, -78, -122, 45, 121, -49, -120, -116, 101, 62, -50, 46, 80, -110, -106, 121, -5, -13, -122, -1, -44, 17, 10, -15, -14, -36, -29, -19, 126, -122, -43, -55, -58, -110, 85, 87, 93, -75, 77, 81, 70, 10, -122, -38, -102, -88, 120, 90, -126, -50, 23, 109, -72, 65, 32, -113, -87, -95, 62, 52, 85, -107, -80, 111, -81, 4, -92, -60, 69, 32, 45, 33, 14, 18, -19, 10, 121, -14, 90, 93, -98, -88, -28, 118, 9, -67, 84, -111, -105, -107, -78, -44, 16, 16, 41, -14, -105, 71, -4, 105, 89, -108, 92, -79, -64, 37, -77, 29, -16, -41, -6, 17, 5, -82, -37, 80, -32, -62, -127, -44, -93, -101, -112, -31, -60, -15, -23, -34, -79, -83, 31, 31, 59, -2, -126, -121, -10, 4, -66, -7, 111, 39, -17, -3, -126, 44, -89, 45, -56, 60, -7, 11, -62, -116, 54, 118, -23, -56, 11, 82, 41, 57, 76, -44, 119, -17, 42, 33, 48, -89, -6, -106, 21, -118, -29, -83, -15, -48, 91, 25, -7, -66, 10, 40, 12, 81, 69, 110, -128, 10, 114, 124, -119, 90, -59, 71, -7, 99, -106, -81, -46, -57, -69, -25, -9, 33, -113, 92, -53, -126, 32, 101, 60, 9, 82, -63, -45, 112, 77, -108, 69, 105, 35, -58, 73, 122, 72, 85, 126, -17, -126, 57, -48, 34, -25, 17, 99, 65, -22, -19, -108, -106, -25, 85, 24, -24, -21, 67, 79, 119, 23, -38, 91, 91, -48, -8, -68, 122, -20, 73, 86, -6, -65, 78, -123, -110, 20, 19, 105, -106, -111, 124, 13, 53, 121, -9, 48, -48, 94, 71, -26, 9, -93, 120, 61, 49, -126, -127, -114, 70, -44, -34, 15, -60, -77, 8, 115, -108, 4, -23, -93, -48, 91, 29, 121, -66, 100, 76, 13, 50, 35, -25, 104, -118, -68, -32, -61, -56, 14, -78, -64, 61, 87, 117, -124, 90, -53, -41, 94, 61, 103, -63, -12, -103, 74, -17, -72, -84, 48, -65, -123, 88, -85, -128, -99, 4, 4, -113, 75, -128, -53, -104, 31, -94, -10, -46, -32, -73, 20, 127, -54, 99, 40, -24, -56, 107, 32, -28, -54, 123, 72, -72, -121, 87, -119, 95, -120, 67, 99, -69, -1, 90, 73, -10, 95, 5, 14, -119, -127, -45, -120, 15, 28, -6, -37, -63, 119, 72, 84, 122, -10, -2, 118, 68, -95, 66, 86, 74, -24, -5, 57, 65, -112, -110, -62, 44, 82, 58, -94, -113, 117, -35, -9, -61, 33, -42, -106, 6, 41, 40, 115, 79, 116, -122, 83, -20, 49, 28, -113, -79, -122, 85, -88, 25, -44, -114, 43, 67, -35, 73, 9, -118, -122, 82, -15, 4, 90, -48, -21, -104, -40, -59, -104, -40, -100, -102, -79, 114, 60, -1, -55, -48, -6, -36, 107, 45, 43, -81, 41, 67, -89, 80, 104, -39, -6, 94, 85, -73, -16, -4, 106, -67, 28, -59, 67, -25, 22, 31, -11, 78, -4, 120, 54, 58, 29, -102, -74, -66, 37, -77, -127, -63, -121, 85, -44, -22, 111, -40, 34, -5, -94, 54, -126, 85, -39, -15, -32, -116, 18, 74, 35, -83, 81, 18, 117, 20, 119, -100, 84, 16, -92, -62, -114, 107, 102, 92, 120, -28, -87, -125, 12, 15, 61, 68, 30, -106, 78, -113, -70, -96, -13, 60, -46, 93, 25, 38, 42, -100, -97, 54, -80, 46, -67, -51, -68, 116, -15, -70, -39, -25, -96, 40, 123, -87, -57, 105, -105, 62, -74, -44, 103, 16, 16, -112, -119, -26, -38, 116, 116, -73, 23, 97, -12, 101, 51, 1, 20, -19, 120, -13, -70, -113, -4, 110, 123, -15, 122, -86, 7, 111, -90, -69, 105, 109, 106, -5, -28, 88, 43, -79, 54, -116, 12, -42, 34, -1, 113, 36, 25, 35, -84, 84, -25, -88, -89, 18, 124, -27, -13, -14, 18, -47, -35, 93, -115, -111, -105, -19, -28, -73, 63, -118, -23, -23, 65, -116, -113, -11, 96, 124, -68, -105, 88, 15, 38, -56, 122, 106, 114, -104, 56, 25, 71, -16, -14, 101, 43, 42, 43, 30, 33, 45, 53, -54, 116, 14, -80, -118, -115, -66, 86, 64, -32, 32, 25, 107, -48, -34, -44, -128, -111, -127, 1, 124, -8, -16, -127, -102, -109, -66, -91, 5, 55, -116, -113, 97, 106, 98, 2, -125, 125, -67, -24, 108, 107, 66, 67, 109, 21, 42, -118, -97, 32, 45, 57, -95, -19, -117, -87, -100, 125, 84, -13, 105, 105, -76, 6, -98, 92, -64, 80, 73, 32, 1, 9, -105, -48, -109, 71, -38, -91, -63, 24, -83, -66, 74, -39, 72, 37, -127, 15, 37, 1, 4, 62, -8, -109, -9, -125, -56, -38, 27, -115, 41, -57, -112, 29, -88, 94, 50, 11, 110, 47, 28, -32, 44, 15, 59, 86, -46, -102, -30, -125, -50, -76, 32, -12, 102, -122, 98, -92, -30, 1, -90, 90, -118, 48, -43, -8, 4, -45, 47, 42, -120, 61, 35, 86, -122, 87, -19, -49, 48, -47, -112, -125, -15, -22, 116, 76, 54, -26, 97, -78, -71, 24, 93, -103, -47, -56, 61, -89, -97, -107, 121, 74, -115, -27, -117, -63, -43, 100, -95, -89, -1, -66, -123, -123, 101, 21, 86, -82, 100, 6, 59, 59, 59, 54, 111, 102, 15, 39, -101, -41, -2, -82, 98, 92, 78, -9, -43, -123, 82, 120, 54, -14, -14, -14, -126, -44, -57, -96, -98, -1, -8, -7, -7, -111, 28, 36, 2, -68, -34, -125, 79, -81, 118, 65, 101, -9, -113, -40, 47, -55, -114, 83, 100, -36, 77, -116, -106, 3, -41, -74, -43, 96, 96, -96, -57, -5, -15, -53, 30, 127, 5, 23, -76, -2, -120, -94, -10, -56, 34, -122, -91, -10, -110, -117, -65, 85, 121, -80, 121, -63, -81, -90, -28, 62, 73, 54, 67, -115, -121, 30, 3, 126, -52, 56, -94, 39, 4, 29, 53, 97, -44, -122, 108, -57, 117, 7, 17, -80, -82, 103, -121, -20, 79, 75, -111, -59, -75, 8, 38, -117, -24, 124, 25, -103, -106, -101, -23, 29, 56, 112, -126, -42, -41, -58, 53, 76, -87, 46, -90, 123, -96, -64, -3, 35, 92, 117, 37, 96, 44, -61, -121, -48, -117, -82, 104, -85, 76, 66, 98, -128, 2, -18, 93, 54, -61, -123, -93, 6, -16, 118, 48, -60, -3, -16, 19, -72, 96, -68, 11, 22, -94, 44, 48, -27, 103, -126, -38, 54, 6, 40, 109, 91, -15, 86, 95, -106, 29, 81, -98, -78, 80, -105, 21, 58, 49, -85, 2, 86, 100, -33, -20, 116, -29, -32, -121, -14, -41, -73, 112, 40, 68, 3, 18, -82, -126, -40, 31, 46, 15, -89, 108, 75, -104, -33, -44, -121, 85, -118, 17, 78, 60, 58, 12, 77, -78, -51, -22, -127, 17, 100, -67, 68, -63, 117, -16, -105, 23, 43, 119, 51, -49, -127, -80, 38, 66, 116, 60, -82, -6, -53, -33, 61, -113, 91, -116, -31, 82, 30, 124, -24, -43, 69, 91, -87, 18, -126, -100, 54, -62, 73, 125, 62, -4, -52, -105, 33, -64, -126, 9, 62, -26, -12, -120, 112, 101, -61, -115, 72, 57, -108, -92, 107, 80, -5, 62, -113, -5, 30, -41, 108, -66, 125, 109, 44, 68, -57, -5, -25, -2, -56, -74, -23, 63, -9, -41, 90, -84, -124, -32, -109, 27, -31, 126, 96, 9, 28, -28, -23, -32, -88, 72, 71, -75, 3, 29, -39, -47, 84, -92, 68, -37, -25, -9, -2, -24, -25, -12, 103, -84, -85, 105, -98, -97, -103, -118, 107, 81, -105, -32, 117, -50, 21, -95, -127, -66, -16, -9, 60, -121, -86, 18, 2, 6, -97, -105, -93, -68, 40, 23, -119, -79, -111, 24, -22, -19, -96, 25, 85, -53, -62, -34, -58, -36, -19, -97, -58, -22, -112, 3, 107, 54, 21, -122, -21, -2, -38, -105, -19, -118, -105, 79, -50, -47, -46, 64, 81, -128, -81, -25, -79, 27, -6, -98, 120, 98, -76, 54, 14, 47, -85, -93, -47, 91, -20, -125, -26, 7, -57, 81, 127, -21, 8, 81, 46, 5, -96, -4, -86, 49, 18, -114, -13, 83, -127, -83, 59, -115, 118, -83, 17, 57, 38, 53, -68, -5, -12, 62, 72, 123, -88, 66, 33, 64, 27, -102, 49, 7, -95, -97, 96, 1, 93, 2, 40, 100, 125, 52, -80, -5, -24, 62, -120, 25, 73, 65, -106, -64, 11, -75, 112, 3, 8, 29, -33, 59, 35, -26, 34, -125, 93, -10, 82, -32, -44, -29, 27, -27, -46, -31, -77, -33, -90, -71, 99, -2, -20, 121, 5, 6, 11, 60, 122, -104, -2, -87, -82, -74, -114, -106, -70, -108, -86, 93, 81, 82, 82, 2, -94, 12, 70, 68, 68, 4, 77, -87, 79, -87, 44, -54, -53, -53, 33, 35, 35, 67, 61, -77, 62, -72, 127, -97, 10, -50, -94, 29, -109, -98, -10, -16, 19, -83, -113, 63, 114, -65, 5, -83, -10, -22, 40, 101, 71, -1, 51, 110, -14, 15, -19, 33, 36, 70, 14, 47, 30, -117, 33, -59, -100, 29, -111, 50, 76, 8, 22, 95, -120, -112, -35, 11, 17, 42, -55, -124, 91, -90, 108, -24, -56, 22, -89, -10, 121, 89, 37, 65, -114, -31, -62, -117, 18, 118, -36, -11, 98, 113, -4, -38, -123, -52, -44, 97, 87, 72, -41, 89, -4, -66, -55, 111, 11, -58, 111, 113, -29, 67, -91, 14, 102, 106, -115, -128, 78, 71, -28, -57, -87, -63, -7, -74, 3, 2, 50, 78, -61, -3, -90, -11, -116, 123, -4, 97, -15, 57, -7, -46, -49, -4, -36, 118, 60, 66, 1, 38, -98, -62, 16, 54, 93, -6, -14, 7, 97, -70, 112, -70, -83, -1, -119, 42, 92, -52, 71, -73, 111, -123, 28, 29, 117, -79, 73, 122, 40, 93, -67, 11, -68, 112, 77, -48, -62, -107, 39, 14, -16, -69, 127, 8, -85, 101, -24, 108, -65, -102, -14, -127, 126, -63, -68, -72, -91, -117, -59, 19, 87, 46, 61, 19, -69, -119, -91, 63, -111, 123, 61, 30, -119, 19, 89, -78, -127, 22, -22, -115, -11, 80, 97, -80, 31, -23, 114, -94, -120, -33, -78, 122, 42, 121, -11, -14, -56, -21, 76, 75, 14, 94, 89, -78, -16, -117, -125, -44, -126, 111, -65, 91, -112, -80, 60, -86, -67, 106, 107, 17, 42, -124, 74, 80, -58, 91, -124, 98, -50, 2, -36, -1, -15, 54, 30, -13, -90, -95, 76, -89, 8, -19, 23, 26, -47, 27, -7, 2, -99, 65, -51, -88, 52, 41, 66, -71, 116, 1, 6, -99, 90, -31, 33, -29, 28, -15, 89, 36, 96, -10, 109, -54, -15, 17, -24, 117, 98, 127, 10, 113, -58, -107, -26, 123, 16, 32, -31, -121, -58, -70, 0, 10, 90, -44, -43, -111, 65, -72, -63, 15, 45, 77, 65, -88, -81, -11, 65, 13, 13, 88, 84, 93, 64, 45, -79, -118, -89, 110, 40, -52, 118, 69, 92, -60, 31, 5, -111, 13, 61, 24, 20, -19, 67, 86, -29, 78, -61, 106, -124, 87, 45, 67, 84, 2, 39, -22, -117, 108, 49, -36, 19, -122, 55, 99, -9, -15, -37, 116, 38, 102, -56, 64, -127, -23, 48, 96, -62, 6, 120, 41, 15, 12, -16, 3, -67, -36, 64, 11, 19, 122, -110, 23, 33, -5, -52, 55, 71, 63, 115, -124, 68, -24, -17, 41, 39, -64, -94, 48, -59, 22, 47, -98, -5, 82, -59, -72, 63, 126, 122, 64, 40, 126, 42, -98, 92, 85, 65, -84, -19, 90, 36, -71, 113, 34, 43, 78, -66, -65, -86, -56, -10, 127, -106, -48, 90, 37, 72, -47, -69, -37, -83, -15, -67, 117, 106, 57, -98, -58, -3, -120, -46, -69, 107, 80, -105, -55, -118, -2, 90, 54, 12, 54, 115, -94, 50, -29, 39, 92, -74, 99, 44, 15, 83, 99, -100, -13, -96, -94, -28, -72, -94, -43, -7, -70, 48, 18, -13, -84, -15, -76, 57, 6, -75, -35, -73, 9, -84, -120, 71, -59, -117, 24, 20, 54, 7, -32, 81, -51, 41, 36, 63, 53, 71, 76, -127, 38, 66, 115, -28, 16, -100, 45, 67, 64, -114, 56, 78, -34, -25, -128, 105, -60, 79, 80, 119, 90, 9, 9, 67, -90, -15, -33, -95, -59, 2, 98, 11, 41, -57, -74, 33, -125, -57, -107, -21, -110, -88, 110, 62, -123, -106, -10, 72, 116, -12, 6, 97, 100, -4, 1, 58, 7, 109, -47, 51, -28, -128, -82, -95, -125, 104, -17, -45, 67, 67, -89, 42, -98, -73, 40, 32, -89, 88, 2, -9, 115, 56, -111, 81, -64, 7, 39, -73, 63, -118, -77, 86, 107, -118, 86, 13, 57, 104, 98, -24, -126, 17, 94, 6, 28, -58, 72, -88, 13, 70, 46, 17, -93, -83, -125, -83, -16, 50, -16, 8, 49, 75, -116, -109, 118, -77, -75, 34, 58, -113, -85, 98, -28, -94, 49, 6, -100, -75, -48, 75, -64, 64, -113, -127, 20, -22, 20, 5, 39, -26, 56, -40, 22, 111, -94, -65, -67, -98, -57, -15, -98, -106, -58, 76, -123, -42, -31, 55, 121, -68, -110, 72, -3, 105, 7, -30, -66, -37, -16, -62, -125, -111, 45, 69, -107, -56, -4, 19, -41, 108, 69, 53, -89, 34, -54, 37, 116, -112, -53, 46, -126, 27, -12, 27, -31, -75, 108, -45, -69, -109, 107, 57, -1, 49, 90, -16, -111, -19, 90, -85, -127, 82, 31, -12, -90, 59, -93, -36, 95, 3, -125, -71, 86, 24, -50, -79, 69, -20, 38, 102, -124, 46, 92, -120, 68, 78, 118, 52, 38, -99, 24, -7, 98, 94, -39, -11, 11, -23, -113, 110, -103, -41, 118, 117, 47, 3, -78, -12, -41, -93, -44, -126, 3, -107, 4, 124, 52, -98, 18, 68, -37, 57, 113, -14, -37, 16, 71, -25, 69, 9, 116, 7, 72, -95, 47, 76, 22, 93, -2, 18, 40, 62, -76, 25, 62, 66, -33, 127, -80, -31, 89, -62, -6, 79, -25, -90, -67, -109, 101, -125, -93, -56, -70, 79, 49, 90, 60, 72, -73, 18, -89, -64, -59, 99, 123, 89, -28, 95, 52, 65, 65, -56, 9, -92, -71, 107, -29, -86, -103, -32, 71, 103, -71, -51, -82, -6, 59, -26, -42, 70, -111, 92, -73, 126, -83, 57, 31, -1, -80, -75, -48, 94, -104, -18, -110, -128, -79, -96, 24, 12, 5, 69, 103, -116, -123, -59, 103, 44, 37, 100, 102, 28, 100, -107, 102, -68, 53, 15, 32, -62, -40, 98, 38, -18, -80, 29, -18, 28, 119, 65, 81, 104, 52, -94, -99, -20, -97, -101, -120, 9, -51, 113, 84, -34, 112, 86, 94, -16, 120, -81, 104, 123, -125, -12, 110, -108, -13, 113, 99, -40, -43, -119, 82, -65, -4, -106, 116, -123, 103, -12, -38, 41, -33, -73, -73, 3, -20, -34, -36, 10, -44, 43, 63, 47, 58, 93, 31, 42, -121, -50, -21, -6, -24, 73, -79, -60, -117, 36, 11, -76, 95, 53, 68, -59, 89, -111, 55, 127, 20, 124, 14, 81, -102, 24, 27, 123, 63, 61, -3, 10, -109, 47, 6, 48, 117, -107, 64, -118, -102, 46, -116, 77, -115, 98, -84, -71, 23, 19, 87, 42, 49, 25, 83, -119, -15, -76, 6, -116, 53, 18, 120, 49, 57, -118, -15, -14, 78, 74, 121, -15, -22, -43, 20, -34, 76, 79, -29, 105, 73, -55, 103, -14, -70, -29, 39, -20, 115, -61, 35, 34, 104, 14, 106, -12, -12, 116, -95, -65, -81, 27, 3, 52, -21, 125, 65, -84, 29, 125, 93, -51, -24, 121, -47, -128, -18, -10, 122, 116, -74, 55, -96, -93, -83, 1, -43, -107, -27, -44, 13, -26, -8, 113, -5, -49, 100, -64, 124, -85, -26, 85, 75, -78, 46, -126, 30, -25, -113, 32, -9, 59, 104, 109, 103, -122, 9, -57, 6, -24, 109, 93, 6, -55, -97, 22, 78, 10, -81, 99, 40, 19, 94, -69, -92, 100, -9, -102, -7, 35, 50, -65, 48, 67, -122, 109, 49, -44, -71, -104, 8, -32, 96, -123, -10, 78, 38, -88, 108, 93, 8, -123, 13, -116, -76, -1, 119, -66, -121, 26, -53, -94, -101, 103, 85, 91, 27, -45, -36, -47, 112, -17, 36, -98, 39, -39, -95, -8, -118, 57, -54, -82, 89, 33, -3, -94, 50, 78, 107, -120, 66, 99, 59, 7, 12, -59, -73, -94, 40, -42, 2, 79, 46, 31, 65, 73, -100, 21, 114, -62, -116, 80, 16, 109, -118, -38, 59, 78, 104, 73, 119, -57, -99, -13, 74, 61, -66, -70, -21, 127, -8, -20, 59, -78, -29, -57, -97, -35, -43, -73, -3, -86, -1, -53, 119, -108, 12, -77, -91, 111, 12, 79, -85, 106, 113, 47, 51, 11, 87, 83, 31, 34, 60, 42, 26, -115, 123, 5, 48, 45, 43, -126, 94, 113, 94, -12, 31, -44, -98, -23, -10, 112, -31, -104, 83, 121, -43, -61, 51, 38, 46, 34, 46, -30, -68, -3, -123, -99, -77, -59, -75, 108, 55, 96, -59, -103, 95, -64, -107, 100, 15, -85, -52, 123, 8, -55, -83, -59, -3, -68, 86, -36, 73, -88, 69, -120, 83, 33, 46, -97, -67, 19, -100, -97, -110, 107, 55, 49, 52, -47, 59, 57, 62, 89, -105, -106, -106, 118, -99, 64, -117, -123, 20, 100, -40, 69, -49, -33, -18, 111, -121, 44, -13, -53, -88, -69, 101, -119, -124, 22, 125, -104, 38, 37, 99, -85, -43, 115, -104, -40, -123, -63, -27, -108, 11, 14, -69, -92, -31, 80, -8, 75, -104, -89, 36, 66, -55, -99, 121, -104, 127, 59, 121, -8, -3, -54, 66, -94, -84, -17, -47, 62, 115, 95, 71, 11, 92, 80, 34, -86, -121, 14, 63, -4, 86, -95, -117, 15, 79, 68, -128, 39, -36, 64, -34, 22, -78, -34, -116, -103, -52, 13, -8, 88, 99, 14, 124, -20, -58, -57, -55, 66, -40, -119, 46, -125, -57, 113, 115, -48, -114, 13, 11, 13, -3, 44, 42, 46, -34, -106, -31, -40, 96, -12, 15, 64, 58, 11, 80, -72, 29, 40, 16, 33, -86, 10, 9, -68, 47, -112, -60, -37, 39, -5, -16, -74, 72, 30, -17, -53, -43, 48, -45, 114, 16, 104, -31, -58, -89, 23, 122, -64, 112, 20, -127, 103, -63, 72, -117, -110, 78, -6, -37, 116, 126, -36, -36, -85, 52, 5, 4, 42, -9, 110, -40, -12, -98, -97, 105, 37, -124, -106, -81, -60, -10, 21, 44, 16, 101, -33, -16, 97, 63, 31, 95, -75, 36, 47, -17, -65, 78, 69, -48, -93, -10, 125, 74, -125, 17, 35, -98, -37, 109, 69, -99, -11, 70, 52, 28, -33, -126, 122, -121, 109, 40, 113, 18, 33, 109, 78, -44, -39, -17, 64, -109, -59, 90, -12, -86, -46, -25, -3, 99, 74, -88, 107, -15, 90, -89, 93, 93, -37, -54, -98, 21, 127, 26, 30, -24, -58, -24, 112, 31, -58, 71, 7, 41, 27, 38, -19, 62, -78, -83, -23, 69, 11, -30, -110, -109, 127, 61, -23, 31, 94, 17, -103, -110, -7, -43, -55, 44, -91, -84, -80, -24, 0, -35, -111, 78, -112, -74, 6, 81, 88, -52, 35, -90, 68, -9, -1, -80, -84, -38, 51, -49, -6, 68, -38, 62, 72, -82, -90, 115, 45, 94, -70, 102, -80, 67, -120, 15, 21, 59, -71, 112, -122, 126, -47, -11, -39, -102, 3, 26, -12, -33, 122, -7, -14, -98, -68, -101, -92, 94, 97, 100, -80, 108, -21, -105, -122, 102, -110, 87, -12, -109, 114, -48, 67, -100, 45, 28, -124, 103, -55, 16, -116, 108, 108, -47, -13, 60, 29, -8, -8, 1, 37, -11, -91, -96, 11, 127, 8, -70, -96, 124, 88, 103, 103, -126, 68, 55, 0, 0, 1, -10, -61, -80, 53, -110, -57, -75, -45, 42, -112, -77, 117, 3, -23, 99, 22, 90, 44, -6, -127, 69, 44, 58, -83, 22, 29, 67, -29, -56, -86, -17, -125, -1, -29, 22, 104, -123, 84, -126, 99, -1, 37, -4, -76, 93, 105, 14, -116, 32, 34, 85, -42, 29, 59, 118, -108, -83, 96, 102, -34, -5, -97, -100, -71, -13, 22, -86, 114, -77, 126, -106, 30, -54, 65, 116, -5, -14, 59, -70, 10, -55, 93, 78, 102, 120, -17, -29, -120, 55, 25, 119, 48, 56, 58, -122, -47, -79, 113, 76, 18, 72, -15, 41, -21, 62, 112, -17, 6, -112, 28, -121, 119, -49, 43, 48, 58, 53, -123, -90, -90, 38, 36, 39, 39, -25, 57, 58, 58, -82, -5, 44, 98, 111, 30, -35, -70, 10, -63, 101, -109, -26, -13, 23, 43, -80, -118, -99, 104, 58, 17, 117, 11, 87, -118, 10, -111, 67, -32, -57, -13, -33, 62, -30, -44, -27, 12, 120, 42, -46, 17, 7, 28, 35, 90, -61, 84, -127, 98, 47, -52, 20, 71, -31, 125, -98, 61, -90, -30, 9, 68, 61, 66, 7, 114, 33, -117, -1, 59, 63, -27, -40, -58, -61, -51, -57, 47, 52, 35, -81, -88, 10, 77, 93, 67, -56, -20, 83, -124, -38, 126, 93, 98, 58, -108, -70, 66, -106, -68, 38, 70, -75, -113, 28, 52, -128, -98, -114, 62, -10, -53, -119, -32, -103, -37, 50, -88, 43, -120, -125, 119, -121, -48, -32, -26, 45, 91, 25, 104, 125, -3, 57, 61, 20, 81, 58, 80, 105, -110, 72, 13, -99, 89, 117, -59, 95, -96, 5, -107, 30, -118, -88, -66, -88, 28, -54, 98, 98, 98, 120, -4, -8, 49, -83, 96, -11, 103, 74, 11, -110, 14, 74, -97, 68, -35, 83, 53, 33, -56, -124, -127, 6, 35, 40, 72, 97, 108, 108, 76, 115, 110, -45, 10, 69, 82, -57, 114, 113, 113, 81, -75, 36, 8, -4, -96, 38, 20, 68, -19, 1, -110, 114, 8, -98, -98, -98, 52, -80, -111, -6, 69, -91, 5, 73, 15, 85, 74, 79, -113, -5, -21, -42, -31, 73, 112, 48, 58, 8, 44, -22, 35, -25, 93, -101, -107, -123, 84, 21, 21, 100, -109, -25, -126, 39, -116, -116, -56, 95, -74, 12, 37, -60, -56, -2, -1, 8, 45, -72, -1, 63, 66, -117, 11, 27, -24, 56, 34, -28, -106, 44, 79, 48, -26, -10, 121, -30, 40, -12, 41, -53, 93, 9, -106, 22, 102, 8, 116, 50, 65, -31, 73, 126, -44, -97, -26, -123, -9, 70, -70, 44, 57, -14, 53, -68, -94, 37, -104, 119, -34, 92, -41, -20, 47, 105, 26, 42, -2, 106, -28, -5, -6, 27, 73, 15, 85, -49, -56, -56, -8, -126, -88, 45, 102, 72, -79, 76, 44, 88, -80, 0, 75, -105, 46, -19, -94, -10, -7, 27, -5, 44, -54, 63, 36, -53, 94, -91, -92, 31, -89, 58, -34, 32, -112, 64, 11, -94, -84, -96, -20, -14, -48, 111, 8, -23, 123, 15, 30, -73, 110, -4, 116, 114, 24, -126, -25, 59, -80, 39, 62, 31, -94, -73, 43, -80, 45, 60, -1, -85, -13, 25, 15, -7, 31, -6, -49, 72, -47, -41, 16, 88, -15, -98, 64, 64, 90, 106, 40, -102, -77, -29, 36, 31, 31, -97, -103, -126, -94, 82, 14, -7, -68, 41, 64, -107, -102, 95, 74, -91, -126, -6, 56, -125, -49, -106, 89, -91, -59, 92, -75, -59, 82, 29, 33, -58, -113, 62, 6, -101, 113, -126, -36, 79, -92, 121, -105, 66, -110, 119, 25, -108, 118, 48, 66, -110, 99, 9, -92, 57, 126, -128, -99, 12, 51, -114, -19, -5, 17, 26, 2, -53, -63, -63, -70, -56, -7, -77, -7, -33, 73, -82, -125, -115, 113, 18, -24, 77, -42, -62, 104, -31, 49, 12, -27, 31, 66, 103, -86, 30, -54, 34, -44, 48, 90, 113, 5, -71, -98, -118, -120, -47, 97, -59, 61, -13, -11, 40, 117, -39, -122, 23, -15, -69, 81, 79, -85, -105, -28, -80, 1, -113, -52, -104, 113, 93, 109, -39, -40, 37, -23, 69, -117, -1, 3, 68, -23, 56, 56, -28, -24, 33, 124, -120, 1, -5, -56, -36, -32, 80, -16, 70, 24, -8, -83, -125, -92, -18, 18, 20, -84, -6, 6, -49, -11, 119, -93, 123, -88, 2, -67, -29, 13, -24, 108, 45, -64, -32, 64, 5, -122, -120, 117, -76, -28, -93, 123, -76, 14, 29, 3, -49, 80, 69, -10, -55, 99, -7, 22, 59, -65, -7, -122, 26, 127, 31, -92, -60, -63, -36, -52, 8, 47, -5, -22, -88, 117, -62, -107, -13, -104, 24, 106, -64, 72, -103, 27, 82, 66, 45, 81, 127, -41, 16, 13, -9, 14, 34, 45, -58, 5, -125, 37, -50, -44, 123, 100, -97, -49, -114, 33, 125, 124, 5, 90, 108, -22, 108, -108, -31, -60, -72, 62, 55, 38, -19, -119, -38, -62, 95, 0, 83, -79, -60, 18, -8, 49, 21, 69, -42, 94, 2, -104, -76, -37, -119, -105, -38, -36, 120, 38, -79, 13, -50, 91, -39, -65, -102, -118, 45, -42, -17, -62, -114, -64, 115, 46, -75, 1, 4, 66, -124, 5, -8, 34, -23, 106, 12, -82, -57, 68, -61, -17, -62, 89, 42, 109, 84, -80, -49, 69, 120, -97, 117, -91, 32, 70, 36, -127, 23, -119, -41, -81, 82, -48, 34, -126, -64, 13, 27, 83, -109, -74, 57, -112, 60, 37, 81, -92, -24, 113, 70, 95, 71, 75, 11, 1] astore_1 aload_0 ldc literal_1295:"__e7-20.png@24576" aload_1 invokevirtual java.lang.Object put( java.util.Hashtable, java.lang.Object, java.lang.Object ) // pc=3 pop return } }
b810bb6ce60bbd4c72b4315164a036495c78cb9f
77e1b0b3f87d317736329c69d0bffe349167edd4
/spring-framework-5.1.x/spring-context/src/test/java/org/springframework/context/event/AnnotationDrivenEventListenerTests.java
9ec745d6a6a30ee6bafd05cbe92726baca1e925b
[ "Apache-2.0" ]
permissive
MayZhou/Java-Learn
2da5bfc0b4211949cb4e1ba3acd1a31bc1b1352e
485eccffe15e41cbd5356fd73d1d2ede12431c8e
refs/heads/master
2021-07-05T13:54:02.731321
2019-07-31T10:54:48
2019-07-31T10:54:48
193,471,320
0
0
Apache-2.0
2020-10-13T14:10:28
2019-06-24T09:05:01
Java
UTF-8
Java
false
false
31,170
java
/* * Copyright 2002-2018 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.context.event; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import java.util.ArrayList; import java.util.Arrays; import java.util.LinkedHashSet; import java.util.List; import java.util.Set; import java.util.concurrent.CountDownLatch; import java.util.concurrent.TimeUnit; import javax.annotation.PostConstruct; import org.junit.After; import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import org.springframework.aop.framework.Advised; import org.springframework.aop.support.AopUtils; import org.springframework.beans.factory.BeanCreationException; import org.springframework.beans.factory.BeanInitializationException; import org.springframework.beans.factory.ObjectFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.ApplicationEventPublisher; import org.springframework.context.ConfigurableApplicationContext; import org.springframework.context.PayloadApplicationEvent; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Import; import org.springframework.context.annotation.Scope; import org.springframework.context.annotation.ScopedProxyMode; import org.springframework.context.event.test.AbstractIdentifiable; import org.springframework.context.event.test.AnotherTestEvent; import org.springframework.context.event.test.EventCollector; import org.springframework.context.event.test.GenericEventPojo; import org.springframework.context.event.test.Identifiable; import org.springframework.context.event.test.TestEvent; import org.springframework.context.support.ClassPathXmlApplicationContext; import org.springframework.core.annotation.AliasFor; import org.springframework.core.annotation.Order; import org.springframework.scheduling.annotation.Async; import org.springframework.scheduling.annotation.EnableAsync; import org.springframework.stereotype.Component; import org.springframework.util.Assert; import org.springframework.validation.annotation.Validated; import org.springframework.validation.beanvalidation.MethodValidationPostProcessor; import static org.hamcrest.Matchers.*; import static org.junit.Assert.*; /** * @author Stephane Nicoll * @author Juergen Hoeller */ public class AnnotationDrivenEventListenerTests { @Rule public final ExpectedException thrown = ExpectedException.none(); private ConfigurableApplicationContext context; private EventCollector eventCollector; private CountDownLatch countDownLatch; // 1 call by default @After public void closeContext() { if (this.context != null) { this.context.close(); } } @Test public void simpleEventJavaConfig() { load(TestEventListener.class); TestEvent event = new TestEvent(this, "test"); TestEventListener listener = this.context.getBean(TestEventListener.class); this.eventCollector.assertNoEventReceived(listener); this.context.publishEvent(event); this.eventCollector.assertEvent(listener, event); this.eventCollector.assertTotalEventsCount(1); this.eventCollector.clear(); this.context.publishEvent(event); this.eventCollector.assertEvent(listener, event); this.eventCollector.assertTotalEventsCount(1); } @Test public void simpleEventXmlConfig() { this.context = new ClassPathXmlApplicationContext( "org/springframework/context/event/simple-event-configuration.xml"); TestEvent event = new TestEvent(this, "test"); TestEventListener listener = this.context.getBean(TestEventListener.class); this.eventCollector = getEventCollector(this.context); this.eventCollector.assertNoEventReceived(listener); this.context.publishEvent(event); this.eventCollector.assertEvent(listener, event); this.eventCollector.assertTotalEventsCount(1); } @Test public void metaAnnotationIsDiscovered() { load(MetaAnnotationListenerTestBean.class); MetaAnnotationListenerTestBean bean = this.context.getBean(MetaAnnotationListenerTestBean.class); this.eventCollector.assertNoEventReceived(bean); TestEvent event = new TestEvent(); this.context.publishEvent(event); this.eventCollector.assertEvent(bean, event); this.eventCollector.assertTotalEventsCount(1); } @Test public void contextEventsAreReceived() { load(ContextEventListener.class); ContextEventListener listener = this.context.getBean(ContextEventListener.class); List<Object> events = this.eventCollector.getEvents(listener); assertEquals("Wrong number of initial context events", 1, events.size()); assertEquals(ContextRefreshedEvent.class, events.get(0).getClass()); this.context.stop(); List<Object> eventsAfterStop = this.eventCollector.getEvents(listener); assertEquals("Wrong number of context events on shutdown", 2, eventsAfterStop.size()); assertEquals(ContextStoppedEvent.class, eventsAfterStop.get(1).getClass()); this.eventCollector.assertTotalEventsCount(2); } @Test public void methodSignatureNoEvent() { AnnotationConfigApplicationContext failingContext = new AnnotationConfigApplicationContext(); failingContext.register(BasicConfiguration.class, InvalidMethodSignatureEventListener.class); this.thrown.expect(BeanInitializationException.class); this.thrown.expectMessage(InvalidMethodSignatureEventListener.class.getName()); this.thrown.expectMessage("cannotBeCalled"); failingContext.refresh(); } @Test public void simpleReply() { load(TestEventListener.class, ReplyEventListener.class); AnotherTestEvent event = new AnotherTestEvent(this, "dummy"); ReplyEventListener replyEventListener = this.context.getBean(ReplyEventListener.class); TestEventListener listener = this.context.getBean(TestEventListener.class); this.eventCollector.assertNoEventReceived(listener); this.eventCollector.assertNoEventReceived(replyEventListener); this.context.publishEvent(event); this.eventCollector.assertEvent(replyEventListener, event); this.eventCollector.assertEvent(listener, new TestEvent(replyEventListener, event.getId(), "dummy")); // reply this.eventCollector.assertTotalEventsCount(2); } @Test public void nullReplyIgnored() { load(TestEventListener.class, ReplyEventListener.class); AnotherTestEvent event = new AnotherTestEvent(this, null); // No response ReplyEventListener replyEventListener = this.context.getBean(ReplyEventListener.class); TestEventListener listener = this.context.getBean(TestEventListener.class); this.eventCollector.assertNoEventReceived(listener); this.eventCollector.assertNoEventReceived(replyEventListener); this.context.publishEvent(event); this.eventCollector.assertEvent(replyEventListener, event); this.eventCollector.assertNoEventReceived(listener); this.eventCollector.assertTotalEventsCount(1); } @Test public void arrayReply() { load(TestEventListener.class, ReplyEventListener.class); AnotherTestEvent event = new AnotherTestEvent(this, new String[]{"first", "second"}); ReplyEventListener replyEventListener = this.context.getBean(ReplyEventListener.class); TestEventListener listener = this.context.getBean(TestEventListener.class); this.eventCollector.assertNoEventReceived(listener); this.eventCollector.assertNoEventReceived(replyEventListener); this.context.publishEvent(event); this.eventCollector.assertEvent(replyEventListener, event); this.eventCollector.assertEvent(listener, "first", "second"); // reply this.eventCollector.assertTotalEventsCount(3); } @Test public void collectionReply() { load(TestEventListener.class, ReplyEventListener.class); Set<Object> replies = new LinkedHashSet<>(); replies.add("first"); replies.add(4L); replies.add("third"); AnotherTestEvent event = new AnotherTestEvent(this, replies); ReplyEventListener replyEventListener = this.context.getBean(ReplyEventListener.class); TestEventListener listener = this.context.getBean(TestEventListener.class); this.eventCollector.assertNoEventReceived(listener); this.eventCollector.assertNoEventReceived(replyEventListener); this.context.publishEvent(event); this.eventCollector.assertEvent(replyEventListener, event); this.eventCollector.assertEvent(listener, "first", "third"); // reply (no listener for 4L) this.eventCollector.assertTotalEventsCount(3); } @Test public void collectionReplyNullValue() { load(TestEventListener.class, ReplyEventListener.class); AnotherTestEvent event = new AnotherTestEvent(this, Arrays.asList(null, "test")); ReplyEventListener replyEventListener = this.context.getBean(ReplyEventListener.class); TestEventListener listener = this.context.getBean(TestEventListener.class); this.eventCollector.assertNoEventReceived(listener); this.eventCollector.assertNoEventReceived(replyEventListener); this.context.publishEvent(event); this.eventCollector.assertEvent(replyEventListener, event); this.eventCollector.assertEvent(listener, "test"); this.eventCollector.assertTotalEventsCount(2); } @Test public void eventListenerWorksWithSimpleInterfaceProxy() throws Exception { load(ScopedProxyTestBean.class); SimpleService proxy = this.context.getBean(SimpleService.class); assertTrue("bean should be a proxy", proxy instanceof Advised); this.eventCollector.assertNoEventReceived(proxy.getId()); this.context.publishEvent(new ContextRefreshedEvent(this.context)); this.eventCollector.assertNoEventReceived(proxy.getId()); TestEvent event = new TestEvent(); this.context.publishEvent(event); this.eventCollector.assertEvent(proxy.getId(), event); this.eventCollector.assertTotalEventsCount(1); } @Test public void eventListenerWorksWithAnnotatedInterfaceProxy() throws Exception { load(AnnotatedProxyTestBean.class); AnnotatedSimpleService proxy = this.context.getBean(AnnotatedSimpleService.class); assertTrue("bean should be a proxy", proxy instanceof Advised); this.eventCollector.assertNoEventReceived(proxy.getId()); this.context.publishEvent(new ContextRefreshedEvent(this.context)); this.eventCollector.assertNoEventReceived(proxy.getId()); TestEvent event = new TestEvent(); this.context.publishEvent(event); this.eventCollector.assertEvent(proxy.getId(), event); this.eventCollector.assertTotalEventsCount(1); } @Test public void eventListenerWorksWithCglibProxy() throws Exception { load(CglibProxyTestBean.class); CglibProxyTestBean proxy = this.context.getBean(CglibProxyTestBean.class); assertTrue("bean should be a cglib proxy", AopUtils.isCglibProxy(proxy)); this.eventCollector.assertNoEventReceived(proxy.getId()); this.context.publishEvent(new ContextRefreshedEvent(this.context)); this.eventCollector.assertNoEventReceived(proxy.getId()); TestEvent event = new TestEvent(); this.context.publishEvent(event); this.eventCollector.assertEvent(proxy.getId(), event); this.eventCollector.assertTotalEventsCount(1); } @Test public void privateMethodOnCglibProxyFails() throws Exception { try { load(CglibProxyWithPrivateMethod.class); fail("Should have thrown BeanInitializationException"); } catch (BeanInitializationException ex) { assertTrue(ex.getCause() instanceof IllegalStateException); } } @Test public void eventListenerWorksWithCustomScope() throws Exception { load(CustomScopeTestBean.class); CustomScope customScope = new CustomScope(); this.context.getBeanFactory().registerScope("custom", customScope); CustomScopeTestBean proxy = this.context.getBean(CustomScopeTestBean.class); assertTrue("bean should be a cglib proxy", AopUtils.isCglibProxy(proxy)); this.eventCollector.assertNoEventReceived(proxy.getId()); this.context.publishEvent(new ContextRefreshedEvent(this.context)); this.eventCollector.assertNoEventReceived(proxy.getId()); customScope.active = false; this.context.publishEvent(new ContextRefreshedEvent(this.context)); customScope.active = true; this.eventCollector.assertNoEventReceived(proxy.getId()); TestEvent event = new TestEvent(); this.context.publishEvent(event); this.eventCollector.assertEvent(proxy.getId(), event); this.eventCollector.assertTotalEventsCount(1); try { customScope.active = false; this.context.publishEvent(new TestEvent()); fail("Should have thrown IllegalStateException"); } catch (BeanCreationException ex) { // expected assertTrue(ex.getCause() instanceof IllegalStateException); } } @Test public void asyncProcessingApplied() throws InterruptedException { loadAsync(AsyncEventListener.class); String threadName = Thread.currentThread().getName(); AnotherTestEvent event = new AnotherTestEvent(this, threadName); AsyncEventListener listener = this.context.getBean(AsyncEventListener.class); this.eventCollector.assertNoEventReceived(listener); this.context.publishEvent(event); this.countDownLatch.await(2, TimeUnit.SECONDS); this.eventCollector.assertEvent(listener, event); this.eventCollector.assertTotalEventsCount(1); } @Test public void asyncProcessingAppliedWithInterfaceProxy() throws InterruptedException { doLoad(AsyncConfigurationWithInterfaces.class, SimpleProxyTestBean.class); String threadName = Thread.currentThread().getName(); AnotherTestEvent event = new AnotherTestEvent(this, threadName); SimpleService listener = this.context.getBean(SimpleService.class); this.eventCollector.assertNoEventReceived(listener); this.context.publishEvent(event); this.countDownLatch.await(2, TimeUnit.SECONDS); this.eventCollector.assertEvent(listener, event); this.eventCollector.assertTotalEventsCount(1); } @Test public void asyncProcessingAppliedWithScopedProxy() throws InterruptedException { doLoad(AsyncConfigurationWithInterfaces.class, ScopedProxyTestBean.class); String threadName = Thread.currentThread().getName(); AnotherTestEvent event = new AnotherTestEvent(this, threadName); SimpleService listener = this.context.getBean(SimpleService.class); this.eventCollector.assertNoEventReceived(listener); this.context.publishEvent(event); this.countDownLatch.await(2, TimeUnit.SECONDS); this.eventCollector.assertEvent(listener, event); this.eventCollector.assertTotalEventsCount(1); } @Test public void exceptionPropagated() { load(ExceptionEventListener.class); TestEvent event = new TestEvent(this, "fail"); ExceptionEventListener listener = this.context.getBean(ExceptionEventListener.class); this.eventCollector.assertNoEventReceived(listener); try { this.context.publishEvent(event); fail("An exception should have thrown"); } catch (IllegalStateException e) { assertEquals("Wrong exception", "Test exception", e.getMessage()); this.eventCollector.assertEvent(listener, event); this.eventCollector.assertTotalEventsCount(1); } } @Test public void exceptionNotPropagatedWithAsync() throws InterruptedException { loadAsync(ExceptionEventListener.class); AnotherTestEvent event = new AnotherTestEvent(this, "fail"); ExceptionEventListener listener = this.context.getBean(ExceptionEventListener.class); this.eventCollector.assertNoEventReceived(listener); this.context.publishEvent(event); this.countDownLatch.await(2, TimeUnit.SECONDS); this.eventCollector.assertEvent(listener, event); this.eventCollector.assertTotalEventsCount(1); } @Test public void listenerWithSimplePayload() { load(TestEventListener.class); TestEventListener listener = this.context.getBean(TestEventListener.class); this.eventCollector.assertNoEventReceived(listener); this.context.publishEvent("test"); this.eventCollector.assertEvent(listener, "test"); this.eventCollector.assertTotalEventsCount(1); } @Test public void listenerWithNonMatchingPayload() { load(TestEventListener.class); TestEventListener listener = this.context.getBean(TestEventListener.class); this.eventCollector.assertNoEventReceived(listener); this.context.publishEvent(123L); this.eventCollector.assertNoEventReceived(listener); this.eventCollector.assertTotalEventsCount(0); } @Test public void replyWithPayload() { load(TestEventListener.class, ReplyEventListener.class); AnotherTestEvent event = new AnotherTestEvent(this, "String"); ReplyEventListener replyEventListener = this.context.getBean(ReplyEventListener.class); TestEventListener listener = this.context.getBean(TestEventListener.class); this.eventCollector.assertNoEventReceived(listener); this.eventCollector.assertNoEventReceived(replyEventListener); this.context.publishEvent(event); this.eventCollector.assertEvent(replyEventListener, event); this.eventCollector.assertEvent(listener, "String"); // reply this.eventCollector.assertTotalEventsCount(2); } @Test public void listenerWithGenericApplicationEvent() { load(GenericEventListener.class); GenericEventListener listener = this.context.getBean(GenericEventListener.class); this.eventCollector.assertNoEventReceived(listener); this.context.publishEvent("TEST"); this.eventCollector.assertEvent(listener, "TEST"); this.eventCollector.assertTotalEventsCount(1); } @Test public void listenerWithResolvableTypeEvent() { load(ResolvableTypeEventListener.class); ResolvableTypeEventListener listener = this.context.getBean(ResolvableTypeEventListener.class); this.eventCollector.assertNoEventReceived(listener); GenericEventPojo<String> event = new GenericEventPojo<>("TEST"); this.context.publishEvent(event); this.eventCollector.assertEvent(listener, event); this.eventCollector.assertTotalEventsCount(1); } @Test public void listenerWithResolvableTypeEventWrongGeneric() { load(ResolvableTypeEventListener.class); ResolvableTypeEventListener listener = this.context.getBean(ResolvableTypeEventListener.class); this.eventCollector.assertNoEventReceived(listener); GenericEventPojo<Long> event = new GenericEventPojo<>(123L); this.context.publishEvent(event); this.eventCollector.assertNoEventReceived(listener); this.eventCollector.assertTotalEventsCount(0); } @Test public void conditionMatch() { validateConditionMatch(ConditionalEventListener.class); } @Test public void conditionMatchWithProxy() { validateConditionMatch(ConditionalEventListener.class, MethodValidationPostProcessor.class); } private void validateConditionMatch(Class<?>... classes) { long timestamp = System.currentTimeMillis(); load(classes); TestEvent event = new TestEvent(this, "OK"); ConditionalEventInterface listener = this.context.getBean(ConditionalEventInterface.class); this.eventCollector.assertNoEventReceived(listener); this.context.publishEvent(event); this.eventCollector.assertEvent(listener, event); this.eventCollector.assertTotalEventsCount(1); this.context.publishEvent("OK"); this.eventCollector.assertEvent(listener, event, "OK"); this.eventCollector.assertTotalEventsCount(2); this.context.publishEvent("NOT OK"); this.eventCollector.assertTotalEventsCount(2); this.context.publishEvent(timestamp); this.eventCollector.assertEvent(listener, event, "OK", timestamp); this.eventCollector.assertTotalEventsCount(3); this.context.publishEvent(42d); this.eventCollector.assertEvent(listener, event, "OK", timestamp, 42d); this.eventCollector.assertTotalEventsCount(4); } @Test public void conditionDoesNotMatch() { long maxLong = Long.MAX_VALUE; load(ConditionalEventListener.class); TestEvent event = new TestEvent(this, "KO"); TestEventListener listener = this.context.getBean(ConditionalEventListener.class); this.eventCollector.assertNoEventReceived(listener); this.context.publishEvent(event); this.eventCollector.assertNoEventReceived(listener); this.eventCollector.assertTotalEventsCount(0); this.context.publishEvent("KO"); this.eventCollector.assertNoEventReceived(listener); this.eventCollector.assertTotalEventsCount(0); this.context.publishEvent(maxLong); this.eventCollector.assertNoEventReceived(listener); this.eventCollector.assertTotalEventsCount(0); this.context.publishEvent(24d); this.eventCollector.assertNoEventReceived(listener); this.eventCollector.assertTotalEventsCount(0); } @Test public void orderedListeners() { load(OrderedTestListener.class); OrderedTestListener listener = this.context.getBean(OrderedTestListener.class); assertTrue(listener.order.isEmpty()); this.context.publishEvent("whatever"); assertThat(listener.order, contains("first", "second", "third")); } @Test @Ignore // SPR-15122 public void listenersReceiveEarlyEvents() { load(EventOnPostConstruct.class, OrderedTestListener.class); OrderedTestListener listener = this.context.getBean(OrderedTestListener.class); assertThat(listener.order, contains("first", "second", "third")); } private void load(Class<?>... classes) { List<Class<?>> allClasses = new ArrayList<>(); allClasses.add(BasicConfiguration.class); allClasses.addAll(Arrays.asList(classes)); doLoad(allClasses.toArray(new Class<?>[allClasses.size()])); } private void loadAsync(Class<?>... classes) { List<Class<?>> allClasses = new ArrayList<>(); allClasses.add(AsyncConfiguration.class); allClasses.addAll(Arrays.asList(classes)); doLoad(allClasses.toArray(new Class<?>[allClasses.size()])); } private void doLoad(Class<?>... classes) { AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(classes); this.eventCollector = ctx.getBean(EventCollector.class); this.countDownLatch = ctx.getBean(CountDownLatch.class); this.context = ctx; } private EventCollector getEventCollector(ConfigurableApplicationContext context) { return context.getBean(EventCollector.class); } @Configuration static class BasicConfiguration { @Bean public EventCollector eventCollector() { return new EventCollector(); } @Bean public CountDownLatch testCountDownLatch() { return new CountDownLatch(1); } @Bean public TestConditionEvaluator conditionEvaluator() { return new TestConditionEvaluator(); } static class TestConditionEvaluator { public boolean valid(Double ratio) { return new Double(42).equals(ratio); } } } static abstract class AbstractTestEventListener extends AbstractIdentifiable { @Autowired private EventCollector eventCollector; protected void collectEvent(Object content) { this.eventCollector.addEvent(this, content); } } @Component static class TestEventListener extends AbstractTestEventListener { @EventListener public void handle(TestEvent event) { collectEvent(event); } @EventListener public void handleString(String content) { collectEvent(content); } } @EventListener @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @interface FooListener { } @Component static class MetaAnnotationListenerTestBean extends AbstractTestEventListener { @FooListener public void handleIt(TestEvent event) { collectEvent(event); } } @Component static class ContextEventListener extends AbstractTestEventListener { @EventListener public void handleContextEvent(ApplicationContextEvent event) { collectEvent(event); } } @Component static class InvalidMethodSignatureEventListener { @EventListener public void cannotBeCalled(String s, Integer what) { } } @Component static class ReplyEventListener extends AbstractTestEventListener { @EventListener public Object handle(AnotherTestEvent event) { collectEvent(event); if (event.content == null) { return null; } else if (event.content instanceof String) { String s = (String) event.content; if (s.equals("String")) { return event.content; } else { return new TestEvent(this, event.getId(), s); } } return event.content; } } @Component static class ExceptionEventListener extends AbstractTestEventListener { @Autowired private CountDownLatch countDownLatch; @EventListener public void handle(TestEvent event) { collectEvent(event); if ("fail".equals(event.msg)) { throw new IllegalStateException("Test exception"); } } @EventListener @Async public void handleAsync(AnotherTestEvent event) { collectEvent(event); if ("fail".equals(event.content)) { this.countDownLatch.countDown(); throw new IllegalStateException("Test exception"); } } } @Component static class AsyncEventListener extends AbstractTestEventListener { @Autowired private CountDownLatch countDownLatch; @EventListener @Async public void handleAsync(AnotherTestEvent event) { assertTrue(!Thread.currentThread().getName().equals(event.content)); collectEvent(event); this.countDownLatch.countDown(); } } @Configuration @Import(BasicConfiguration.class) @EnableAsync(proxyTargetClass = true) static class AsyncConfiguration { } @Configuration @Import(BasicConfiguration.class) @EnableAsync(proxyTargetClass = false) static class AsyncConfigurationWithInterfaces { } interface SimpleService extends Identifiable { void handleIt(TestEvent event); void handleAsync(AnotherTestEvent event); } @Component static class SimpleProxyTestBean extends AbstractIdentifiable implements SimpleService { @Autowired private EventCollector eventCollector; @Autowired private CountDownLatch countDownLatch; @EventListener @Override public void handleIt(TestEvent event) { this.eventCollector.addEvent(this, event); } @EventListener @Async public void handleAsync(AnotherTestEvent event) { assertTrue(!Thread.currentThread().getName().equals(event.content)); this.eventCollector.addEvent(this, event); this.countDownLatch.countDown(); } } @Component @Scope(proxyMode = ScopedProxyMode.INTERFACES) static class ScopedProxyTestBean extends AbstractIdentifiable implements SimpleService { @Autowired private EventCollector eventCollector; @Autowired private CountDownLatch countDownLatch; @EventListener @Override public void handleIt(TestEvent event) { this.eventCollector.addEvent(this, event); } @EventListener @Async public void handleAsync(AnotherTestEvent event) { assertTrue(!Thread.currentThread().getName().equals(event.content)); this.eventCollector.addEvent(this, event); this.countDownLatch.countDown(); } } interface AnnotatedSimpleService extends Identifiable { @EventListener void handleIt(TestEvent event); } @Component @Scope(proxyMode = ScopedProxyMode.INTERFACES) static class AnnotatedProxyTestBean extends AbstractIdentifiable implements AnnotatedSimpleService { @Autowired private EventCollector eventCollector; @Override public void handleIt(TestEvent event) { this.eventCollector.addEvent(this, event); } } @Component @Scope(proxyMode = ScopedProxyMode.TARGET_CLASS) static class CglibProxyTestBean extends AbstractTestEventListener { @EventListener public void handleIt(TestEvent event) { collectEvent(event); } } @Component @Scope(proxyMode = ScopedProxyMode.TARGET_CLASS) static class CglibProxyWithPrivateMethod extends AbstractTestEventListener { @EventListener private void handleIt(TestEvent event) { collectEvent(event); } } @Component @Scope(scopeName = "custom", proxyMode = ScopedProxyMode.TARGET_CLASS) static class CustomScopeTestBean extends AbstractTestEventListener { @EventListener public void handleIt(TestEvent event) { collectEvent(event); } } @Component static class GenericEventListener extends AbstractTestEventListener { @EventListener public void handleString(PayloadApplicationEvent<String> event) { collectEvent(event.getPayload()); } } @Component static class ResolvableTypeEventListener extends AbstractTestEventListener { @EventListener public void handleString(GenericEventPojo<String> value) { collectEvent(value); } } @EventListener @Retention(RetentionPolicy.RUNTIME) public @interface ConditionalEvent { @AliasFor(annotation = EventListener.class, attribute = "condition") String value(); } interface ConditionalEventInterface extends Identifiable { void handle(TestEvent event); void handleString(String payload); void handleTimestamp(Long timestamp); void handleRatio(Double ratio); } @Component @Validated static class ConditionalEventListener extends TestEventListener implements ConditionalEventInterface { @EventListener(condition = "'OK'.equals(#root.event.msg)") @Override public void handle(TestEvent event) { super.handle(event); } @Override @EventListener(condition = "#payload.startsWith('OK')") public void handleString(String payload) { super.handleString(payload); } @ConditionalEvent("#root.event.timestamp > #p0") public void handleTimestamp(Long timestamp) { collectEvent(timestamp); } @ConditionalEvent("@conditionEvaluator.valid(#p0)") public void handleRatio(Double ratio) { collectEvent(ratio); } } @Configuration static class OrderedTestListener extends TestEventListener { public final List<String> order = new ArrayList<>(); @EventListener @Order(50) public void handleThird(String payload) { this.order.add("third"); } @EventListener @Order(-50) public void handleFirst(String payload) { this.order.add("first"); } @EventListener public void handleSecond(String payload) { this.order.add("second"); } } static class EventOnPostConstruct { @Autowired ApplicationEventPublisher publisher; @PostConstruct public void init() { this.publisher.publishEvent("earlyEvent"); } } private static class CustomScope implements org.springframework.beans.factory.config.Scope { public boolean active = true; private Object instance = null; @Override public Object get(String name, ObjectFactory<?> objectFactory) { Assert.state(this.active, "Not active"); if (this.instance == null) { this.instance = objectFactory.getObject(); } return this.instance; } @Override public Object remove(String name) { return null; } @Override public void registerDestructionCallback(String name, Runnable callback) { } @Override public Object resolveContextualObject(String key) { return null; } @Override public String getConversationId() { return null; } } }
c792707e1a4c05952aed4a28aed6f0337d9b50da
b541e4b94cd245ad7b83d1ff5a2afd7e792719e0
/trunk/de.tu_bs.cs.isf.mbse.cvclipse.resource.cv/src-gen/de/tu_bs/cs/isf/mbse/cvclipse/resource/cv/mopp/CvExpectationConstants.java
96d10bb85d709298cbe43450a542cf8cea6d4727
[]
no_license
SeniorSpielbergo/CVclipse
e629c010971f368360eb6b090c67e9f19c670bf6
cc80da0d86b71084f892b55bd500cd60bcdbaf1e
refs/heads/master
2021-01-02T23:14:05.290619
2014-01-21T10:14:16
2014-01-21T10:14:16
null
0
0
null
null
null
null
UTF-8
Java
false
false
162,422
java
/** * <copyright> * </copyright> * * */ package de.tu_bs.cs.isf.mbse.cvclipse.resource.cv.mopp; /** * This class contains some constants that are used during code completion. */ public class CvExpectationConstants { public final static int EXPECTATIONS[][] = new int[1623][]; public static void initialize0() { EXPECTATIONS[0] = new int[2]; EXPECTATIONS[0][0] = 0; EXPECTATIONS[0][1] = 0; EXPECTATIONS[1] = new int[2]; EXPECTATIONS[1][0] = 1; EXPECTATIONS[1][1] = 1; EXPECTATIONS[2] = new int[2]; EXPECTATIONS[2][0] = 2; EXPECTATIONS[2][1] = 2; EXPECTATIONS[3] = new int[2]; EXPECTATIONS[3][0] = 3; EXPECTATIONS[3][1] = 3; EXPECTATIONS[4] = new int[2]; EXPECTATIONS[4][0] = 4; EXPECTATIONS[4][1] = 4; EXPECTATIONS[5] = new int[2]; EXPECTATIONS[5][0] = 5; EXPECTATIONS[5][1] = 4; EXPECTATIONS[6] = new int[2]; EXPECTATIONS[6][0] = 6; EXPECTATIONS[6][1] = 4; EXPECTATIONS[7] = new int[2]; EXPECTATIONS[7][0] = 7; EXPECTATIONS[7][1] = 4; EXPECTATIONS[8] = new int[2]; EXPECTATIONS[8][0] = 8; EXPECTATIONS[8][1] = 4; EXPECTATIONS[9] = new int[3]; EXPECTATIONS[9][0] = 9; EXPECTATIONS[9][1] = 4; EXPECTATIONS[9][2] = 0; EXPECTATIONS[10] = new int[2]; EXPECTATIONS[10][0] = 10; EXPECTATIONS[10][1] = 5; EXPECTATIONS[11] = new int[2]; EXPECTATIONS[11][0] = 4; EXPECTATIONS[11][1] = 6; EXPECTATIONS[12] = new int[2]; EXPECTATIONS[12][0] = 5; EXPECTATIONS[12][1] = 6; EXPECTATIONS[13] = new int[2]; EXPECTATIONS[13][0] = 6; EXPECTATIONS[13][1] = 6; EXPECTATIONS[14] = new int[2]; EXPECTATIONS[14][0] = 7; EXPECTATIONS[14][1] = 6; EXPECTATIONS[15] = new int[2]; EXPECTATIONS[15][0] = 8; EXPECTATIONS[15][1] = 6; EXPECTATIONS[16] = new int[3]; EXPECTATIONS[16][0] = 9; EXPECTATIONS[16][1] = 6; EXPECTATIONS[16][2] = 1; EXPECTATIONS[17] = new int[2]; EXPECTATIONS[17][0] = 4; EXPECTATIONS[17][1] = 7; EXPECTATIONS[18] = new int[2]; EXPECTATIONS[18][0] = 5; EXPECTATIONS[18][1] = 7; EXPECTATIONS[19] = new int[2]; EXPECTATIONS[19][0] = 6; EXPECTATIONS[19][1] = 7; EXPECTATIONS[20] = new int[2]; EXPECTATIONS[20][0] = 7; EXPECTATIONS[20][1] = 7; EXPECTATIONS[21] = new int[2]; EXPECTATIONS[21][0] = 8; EXPECTATIONS[21][1] = 7; EXPECTATIONS[22] = new int[3]; EXPECTATIONS[22][0] = 9; EXPECTATIONS[22][1] = 7; EXPECTATIONS[22][2] = 2; EXPECTATIONS[23] = new int[2]; EXPECTATIONS[23][0] = 5; EXPECTATIONS[23][1] = 8; EXPECTATIONS[24] = new int[2]; EXPECTATIONS[24][0] = 6; EXPECTATIONS[24][1] = 8; EXPECTATIONS[25] = new int[2]; EXPECTATIONS[25][0] = 7; EXPECTATIONS[25][1] = 8; EXPECTATIONS[26] = new int[2]; EXPECTATIONS[26][0] = 8; EXPECTATIONS[26][1] = 8; EXPECTATIONS[27] = new int[3]; EXPECTATIONS[27][0] = 9; EXPECTATIONS[27][1] = 8; EXPECTATIONS[27][2] = 3; EXPECTATIONS[28] = new int[2]; EXPECTATIONS[28][0] = 11; EXPECTATIONS[28][1] = 9; EXPECTATIONS[29] = new int[2]; EXPECTATIONS[29][0] = 12; EXPECTATIONS[29][1] = 10; EXPECTATIONS[30] = new int[2]; EXPECTATIONS[30][0] = 6; EXPECTATIONS[30][1] = 11; EXPECTATIONS[31] = new int[2]; EXPECTATIONS[31][0] = 7; EXPECTATIONS[31][1] = 11; EXPECTATIONS[32] = new int[2]; EXPECTATIONS[32][0] = 8; EXPECTATIONS[32][1] = 11; EXPECTATIONS[33] = new int[3]; EXPECTATIONS[33][0] = 9; EXPECTATIONS[33][1] = 11; EXPECTATIONS[33][2] = 4; EXPECTATIONS[34] = new int[2]; EXPECTATIONS[34][0] = 6; EXPECTATIONS[34][1] = 12; EXPECTATIONS[35] = new int[2]; EXPECTATIONS[35][0] = 7; EXPECTATIONS[35][1] = 12; EXPECTATIONS[36] = new int[2]; EXPECTATIONS[36][0] = 8; EXPECTATIONS[36][1] = 12; EXPECTATIONS[37] = new int[3]; EXPECTATIONS[37][0] = 9; EXPECTATIONS[37][1] = 12; EXPECTATIONS[37][2] = 5; EXPECTATIONS[38] = new int[2]; EXPECTATIONS[38][0] = 13; EXPECTATIONS[38][1] = 13; EXPECTATIONS[39] = new int[2]; EXPECTATIONS[39][0] = 14; EXPECTATIONS[39][1] = 14; EXPECTATIONS[40] = new int[2]; EXPECTATIONS[40][0] = 7; EXPECTATIONS[40][1] = 15; EXPECTATIONS[41] = new int[2]; EXPECTATIONS[41][0] = 8; EXPECTATIONS[41][1] = 15; EXPECTATIONS[42] = new int[3]; EXPECTATIONS[42][0] = 9; EXPECTATIONS[42][1] = 15; EXPECTATIONS[42][2] = 6; EXPECTATIONS[43] = new int[2]; EXPECTATIONS[43][0] = 7; EXPECTATIONS[43][1] = 16; EXPECTATIONS[44] = new int[2]; EXPECTATIONS[44][0] = 8; EXPECTATIONS[44][1] = 16; EXPECTATIONS[45] = new int[3]; EXPECTATIONS[45][0] = 9; EXPECTATIONS[45][1] = 16; EXPECTATIONS[45][2] = 7; EXPECTATIONS[46] = new int[2]; EXPECTATIONS[46][0] = 15; EXPECTATIONS[46][1] = 17; EXPECTATIONS[47] = new int[2]; EXPECTATIONS[47][0] = 16; EXPECTATIONS[47][1] = 18; EXPECTATIONS[48] = new int[2]; EXPECTATIONS[48][0] = 8; EXPECTATIONS[48][1] = 19; EXPECTATIONS[49] = new int[3]; EXPECTATIONS[49][0] = 9; EXPECTATIONS[49][1] = 19; EXPECTATIONS[49][2] = 8; EXPECTATIONS[50] = new int[2]; EXPECTATIONS[50][0] = 8; EXPECTATIONS[50][1] = 20; EXPECTATIONS[51] = new int[3]; EXPECTATIONS[51][0] = 9; EXPECTATIONS[51][1] = 20; EXPECTATIONS[51][2] = 9; EXPECTATIONS[52] = new int[2]; EXPECTATIONS[52][0] = 17; EXPECTATIONS[52][1] = 21; EXPECTATIONS[53] = new int[3]; EXPECTATIONS[53][0] = 18; EXPECTATIONS[53][1] = 22; EXPECTATIONS[53][2] = 10; EXPECTATIONS[54] = new int[3]; EXPECTATIONS[54][0] = 9; EXPECTATIONS[54][1] = 23; EXPECTATIONS[54][2] = 11; EXPECTATIONS[55] = new int[3]; EXPECTATIONS[55][0] = 9; EXPECTATIONS[55][1] = 24; EXPECTATIONS[55][2] = 12; EXPECTATIONS[56] = new int[3]; EXPECTATIONS[56][0] = 19; EXPECTATIONS[56][1] = 25; EXPECTATIONS[56][2] = 13; EXPECTATIONS[57] = new int[3]; EXPECTATIONS[57][0] = 20; EXPECTATIONS[57][1] = 25; EXPECTATIONS[57][2] = 14; EXPECTATIONS[58] = new int[3]; EXPECTATIONS[58][0] = 19; EXPECTATIONS[58][1] = 26; EXPECTATIONS[58][2] = 15; EXPECTATIONS[59] = new int[3]; EXPECTATIONS[59][0] = 20; EXPECTATIONS[59][1] = 26; EXPECTATIONS[59][2] = 16; EXPECTATIONS[60] = new int[3]; EXPECTATIONS[60][0] = 19; EXPECTATIONS[60][1] = 27; EXPECTATIONS[60][2] = 17; EXPECTATIONS[61] = new int[3]; EXPECTATIONS[61][0] = 20; EXPECTATIONS[61][1] = 27; EXPECTATIONS[61][2] = 18; EXPECTATIONS[62] = new int[3]; EXPECTATIONS[62][0] = 19; EXPECTATIONS[62][1] = 28; EXPECTATIONS[62][2] = 19; EXPECTATIONS[63] = new int[3]; EXPECTATIONS[63][0] = 20; EXPECTATIONS[63][1] = 28; EXPECTATIONS[63][2] = 20; EXPECTATIONS[64] = new int[3]; EXPECTATIONS[64][0] = 19; EXPECTATIONS[64][1] = 29; EXPECTATIONS[64][2] = 21; EXPECTATIONS[65] = new int[3]; EXPECTATIONS[65][0] = 20; EXPECTATIONS[65][1] = 29; EXPECTATIONS[65][2] = 22; EXPECTATIONS[66] = new int[2]; EXPECTATIONS[66][0] = 21; EXPECTATIONS[66][1] = 30; EXPECTATIONS[67] = new int[2]; EXPECTATIONS[67][0] = 22; EXPECTATIONS[67][1] = 30; EXPECTATIONS[68] = new int[2]; EXPECTATIONS[68][0] = 23; EXPECTATIONS[68][1] = 30; EXPECTATIONS[69] = new int[2]; EXPECTATIONS[69][0] = 24; EXPECTATIONS[69][1] = 30; EXPECTATIONS[70] = new int[2]; EXPECTATIONS[70][0] = 25; EXPECTATIONS[70][1] = 30; EXPECTATIONS[71] = new int[2]; EXPECTATIONS[71][0] = 26; EXPECTATIONS[71][1] = 30; EXPECTATIONS[72] = new int[2]; EXPECTATIONS[72][0] = 27; EXPECTATIONS[72][1] = 30; EXPECTATIONS[73] = new int[2]; EXPECTATIONS[73][0] = 28; EXPECTATIONS[73][1] = 30; EXPECTATIONS[74] = new int[2]; EXPECTATIONS[74][0] = 29; EXPECTATIONS[74][1] = 30; EXPECTATIONS[75] = new int[2]; EXPECTATIONS[75][0] = 30; EXPECTATIONS[75][1] = 30; EXPECTATIONS[76] = new int[2]; EXPECTATIONS[76][0] = 31; EXPECTATIONS[76][1] = 30; EXPECTATIONS[77] = new int[2]; EXPECTATIONS[77][0] = 32; EXPECTATIONS[77][1] = 30; EXPECTATIONS[78] = new int[2]; EXPECTATIONS[78][0] = 33; EXPECTATIONS[78][1] = 30; EXPECTATIONS[79] = new int[2]; EXPECTATIONS[79][0] = 34; EXPECTATIONS[79][1] = 30; EXPECTATIONS[80] = new int[2]; EXPECTATIONS[80][0] = 35; EXPECTATIONS[80][1] = 30; EXPECTATIONS[81] = new int[2]; EXPECTATIONS[81][0] = 36; EXPECTATIONS[81][1] = 30; EXPECTATIONS[82] = new int[2]; EXPECTATIONS[82][0] = 37; EXPECTATIONS[82][1] = 30; EXPECTATIONS[83] = new int[2]; EXPECTATIONS[83][0] = 38; EXPECTATIONS[83][1] = 30; EXPECTATIONS[84] = new int[3]; EXPECTATIONS[84][0] = 19; EXPECTATIONS[84][1] = 30; EXPECTATIONS[84][2] = 23; EXPECTATIONS[85] = new int[3]; EXPECTATIONS[85][0] = 20; EXPECTATIONS[85][1] = 30; EXPECTATIONS[85][2] = 24; EXPECTATIONS[86] = new int[2]; EXPECTATIONS[86][0] = 39; EXPECTATIONS[86][1] = 31; EXPECTATIONS[87] = new int[2]; EXPECTATIONS[87][0] = 40; EXPECTATIONS[87][1] = 32; EXPECTATIONS[88] = new int[2]; EXPECTATIONS[88][0] = 21; EXPECTATIONS[88][1] = 33; EXPECTATIONS[89] = new int[2]; EXPECTATIONS[89][0] = 22; EXPECTATIONS[89][1] = 33; EXPECTATIONS[90] = new int[2]; EXPECTATIONS[90][0] = 23; EXPECTATIONS[90][1] = 33; EXPECTATIONS[91] = new int[2]; EXPECTATIONS[91][0] = 24; EXPECTATIONS[91][1] = 33; EXPECTATIONS[92] = new int[2]; EXPECTATIONS[92][0] = 25; EXPECTATIONS[92][1] = 33; EXPECTATIONS[93] = new int[2]; EXPECTATIONS[93][0] = 26; EXPECTATIONS[93][1] = 33; EXPECTATIONS[94] = new int[2]; EXPECTATIONS[94][0] = 27; EXPECTATIONS[94][1] = 33; EXPECTATIONS[95] = new int[2]; EXPECTATIONS[95][0] = 28; EXPECTATIONS[95][1] = 33; EXPECTATIONS[96] = new int[2]; EXPECTATIONS[96][0] = 29; EXPECTATIONS[96][1] = 33; EXPECTATIONS[97] = new int[2]; EXPECTATIONS[97][0] = 30; EXPECTATIONS[97][1] = 33; EXPECTATIONS[98] = new int[2]; EXPECTATIONS[98][0] = 31; EXPECTATIONS[98][1] = 33; EXPECTATIONS[99] = new int[2]; EXPECTATIONS[99][0] = 32; EXPECTATIONS[99][1] = 33; EXPECTATIONS[100] = new int[2]; EXPECTATIONS[100][0] = 33; EXPECTATIONS[100][1] = 33; EXPECTATIONS[101] = new int[2]; EXPECTATIONS[101][0] = 34; EXPECTATIONS[101][1] = 33; EXPECTATIONS[102] = new int[2]; EXPECTATIONS[102][0] = 35; EXPECTATIONS[102][1] = 33; EXPECTATIONS[103] = new int[2]; EXPECTATIONS[103][0] = 36; EXPECTATIONS[103][1] = 33; EXPECTATIONS[104] = new int[2]; EXPECTATIONS[104][0] = 37; EXPECTATIONS[104][1] = 33; EXPECTATIONS[105] = new int[2]; EXPECTATIONS[105][0] = 38; EXPECTATIONS[105][1] = 33; EXPECTATIONS[106] = new int[3]; EXPECTATIONS[106][0] = 19; EXPECTATIONS[106][1] = 33; EXPECTATIONS[106][2] = 25; EXPECTATIONS[107] = new int[3]; EXPECTATIONS[107][0] = 20; EXPECTATIONS[107][1] = 33; EXPECTATIONS[107][2] = 26; EXPECTATIONS[108] = new int[2]; EXPECTATIONS[108][0] = 21; EXPECTATIONS[108][1] = 34; EXPECTATIONS[109] = new int[2]; EXPECTATIONS[109][0] = 22; EXPECTATIONS[109][1] = 34; EXPECTATIONS[110] = new int[2]; EXPECTATIONS[110][0] = 23; EXPECTATIONS[110][1] = 34; EXPECTATIONS[111] = new int[2]; EXPECTATIONS[111][0] = 24; EXPECTATIONS[111][1] = 34; EXPECTATIONS[112] = new int[2]; EXPECTATIONS[112][0] = 25; EXPECTATIONS[112][1] = 34; EXPECTATIONS[113] = new int[2]; EXPECTATIONS[113][0] = 26; EXPECTATIONS[113][1] = 34; EXPECTATIONS[114] = new int[2]; EXPECTATIONS[114][0] = 27; EXPECTATIONS[114][1] = 34; EXPECTATIONS[115] = new int[2]; EXPECTATIONS[115][0] = 28; EXPECTATIONS[115][1] = 34; EXPECTATIONS[116] = new int[2]; EXPECTATIONS[116][0] = 29; EXPECTATIONS[116][1] = 34; EXPECTATIONS[117] = new int[2]; EXPECTATIONS[117][0] = 30; EXPECTATIONS[117][1] = 34; EXPECTATIONS[118] = new int[2]; EXPECTATIONS[118][0] = 31; EXPECTATIONS[118][1] = 34; EXPECTATIONS[119] = new int[2]; EXPECTATIONS[119][0] = 32; EXPECTATIONS[119][1] = 34; EXPECTATIONS[120] = new int[2]; EXPECTATIONS[120][0] = 33; EXPECTATIONS[120][1] = 34; EXPECTATIONS[121] = new int[2]; EXPECTATIONS[121][0] = 34; EXPECTATIONS[121][1] = 34; EXPECTATIONS[122] = new int[2]; EXPECTATIONS[122][0] = 35; EXPECTATIONS[122][1] = 34; EXPECTATIONS[123] = new int[2]; EXPECTATIONS[123][0] = 36; EXPECTATIONS[123][1] = 34; EXPECTATIONS[124] = new int[2]; EXPECTATIONS[124][0] = 37; EXPECTATIONS[124][1] = 34; EXPECTATIONS[125] = new int[2]; EXPECTATIONS[125][0] = 38; EXPECTATIONS[125][1] = 34; EXPECTATIONS[126] = new int[3]; EXPECTATIONS[126][0] = 19; EXPECTATIONS[126][1] = 34; EXPECTATIONS[126][2] = 27; EXPECTATIONS[127] = new int[3]; EXPECTATIONS[127][0] = 20; EXPECTATIONS[127][1] = 34; EXPECTATIONS[127][2] = 28; EXPECTATIONS[128] = new int[2]; EXPECTATIONS[128][0] = 41; EXPECTATIONS[128][1] = 35; EXPECTATIONS[129] = new int[2]; EXPECTATIONS[129][0] = 42; EXPECTATIONS[129][1] = 36; EXPECTATIONS[130] = new int[2]; EXPECTATIONS[130][0] = 21; EXPECTATIONS[130][1] = 37; EXPECTATIONS[131] = new int[2]; EXPECTATIONS[131][0] = 22; EXPECTATIONS[131][1] = 37; EXPECTATIONS[132] = new int[2]; EXPECTATIONS[132][0] = 23; EXPECTATIONS[132][1] = 37; EXPECTATIONS[133] = new int[2]; EXPECTATIONS[133][0] = 24; EXPECTATIONS[133][1] = 37; EXPECTATIONS[134] = new int[2]; EXPECTATIONS[134][0] = 25; EXPECTATIONS[134][1] = 37; EXPECTATIONS[135] = new int[2]; EXPECTATIONS[135][0] = 26; EXPECTATIONS[135][1] = 37; EXPECTATIONS[136] = new int[2]; EXPECTATIONS[136][0] = 27; EXPECTATIONS[136][1] = 37; EXPECTATIONS[137] = new int[2]; EXPECTATIONS[137][0] = 28; EXPECTATIONS[137][1] = 37; EXPECTATIONS[138] = new int[2]; EXPECTATIONS[138][0] = 29; EXPECTATIONS[138][1] = 37; EXPECTATIONS[139] = new int[2]; EXPECTATIONS[139][0] = 30; EXPECTATIONS[139][1] = 37; EXPECTATIONS[140] = new int[2]; EXPECTATIONS[140][0] = 31; EXPECTATIONS[140][1] = 37; EXPECTATIONS[141] = new int[2]; EXPECTATIONS[141][0] = 32; EXPECTATIONS[141][1] = 37; EXPECTATIONS[142] = new int[2]; EXPECTATIONS[142][0] = 33; EXPECTATIONS[142][1] = 37; EXPECTATIONS[143] = new int[2]; EXPECTATIONS[143][0] = 34; EXPECTATIONS[143][1] = 37; EXPECTATIONS[144] = new int[2]; EXPECTATIONS[144][0] = 35; EXPECTATIONS[144][1] = 37; EXPECTATIONS[145] = new int[2]; EXPECTATIONS[145][0] = 36; EXPECTATIONS[145][1] = 37; EXPECTATIONS[146] = new int[2]; EXPECTATIONS[146][0] = 37; EXPECTATIONS[146][1] = 37; EXPECTATIONS[147] = new int[2]; EXPECTATIONS[147][0] = 38; EXPECTATIONS[147][1] = 37; EXPECTATIONS[148] = new int[3]; EXPECTATIONS[148][0] = 19; EXPECTATIONS[148][1] = 37; EXPECTATIONS[148][2] = 29; EXPECTATIONS[149] = new int[3]; EXPECTATIONS[149][0] = 20; EXPECTATIONS[149][1] = 37; EXPECTATIONS[149][2] = 30; EXPECTATIONS[150] = new int[2]; EXPECTATIONS[150][0] = 21; EXPECTATIONS[150][1] = 38; EXPECTATIONS[151] = new int[2]; EXPECTATIONS[151][0] = 22; EXPECTATIONS[151][1] = 38; EXPECTATIONS[152] = new int[2]; EXPECTATIONS[152][0] = 23; EXPECTATIONS[152][1] = 38; EXPECTATIONS[153] = new int[2]; EXPECTATIONS[153][0] = 24; EXPECTATIONS[153][1] = 38; EXPECTATIONS[154] = new int[2]; EXPECTATIONS[154][0] = 25; EXPECTATIONS[154][1] = 38; EXPECTATIONS[155] = new int[2]; EXPECTATIONS[155][0] = 26; EXPECTATIONS[155][1] = 38; EXPECTATIONS[156] = new int[2]; EXPECTATIONS[156][0] = 27; EXPECTATIONS[156][1] = 38; EXPECTATIONS[157] = new int[2]; EXPECTATIONS[157][0] = 28; EXPECTATIONS[157][1] = 38; EXPECTATIONS[158] = new int[2]; EXPECTATIONS[158][0] = 29; EXPECTATIONS[158][1] = 38; EXPECTATIONS[159] = new int[2]; EXPECTATIONS[159][0] = 30; EXPECTATIONS[159][1] = 38; EXPECTATIONS[160] = new int[2]; EXPECTATIONS[160][0] = 31; EXPECTATIONS[160][1] = 38; EXPECTATIONS[161] = new int[2]; EXPECTATIONS[161][0] = 32; EXPECTATIONS[161][1] = 38; EXPECTATIONS[162] = new int[2]; EXPECTATIONS[162][0] = 33; EXPECTATIONS[162][1] = 38; EXPECTATIONS[163] = new int[2]; EXPECTATIONS[163][0] = 34; EXPECTATIONS[163][1] = 38; EXPECTATIONS[164] = new int[2]; EXPECTATIONS[164][0] = 35; EXPECTATIONS[164][1] = 38; EXPECTATIONS[165] = new int[2]; EXPECTATIONS[165][0] = 36; EXPECTATIONS[165][1] = 38; EXPECTATIONS[166] = new int[2]; EXPECTATIONS[166][0] = 37; EXPECTATIONS[166][1] = 38; EXPECTATIONS[167] = new int[2]; EXPECTATIONS[167][0] = 38; EXPECTATIONS[167][1] = 38; EXPECTATIONS[168] = new int[3]; EXPECTATIONS[168][0] = 19; EXPECTATIONS[168][1] = 38; EXPECTATIONS[168][2] = 31; EXPECTATIONS[169] = new int[3]; EXPECTATIONS[169][0] = 20; EXPECTATIONS[169][1] = 38; EXPECTATIONS[169][2] = 32; EXPECTATIONS[170] = new int[2]; EXPECTATIONS[170][0] = 43; EXPECTATIONS[170][1] = 39; EXPECTATIONS[171] = new int[2]; EXPECTATIONS[171][0] = 44; EXPECTATIONS[171][1] = 40; EXPECTATIONS[172] = new int[2]; EXPECTATIONS[172][0] = 21; EXPECTATIONS[172][1] = 41; EXPECTATIONS[173] = new int[2]; EXPECTATIONS[173][0] = 22; EXPECTATIONS[173][1] = 41; EXPECTATIONS[174] = new int[2]; EXPECTATIONS[174][0] = 23; EXPECTATIONS[174][1] = 41; EXPECTATIONS[175] = new int[2]; EXPECTATIONS[175][0] = 24; EXPECTATIONS[175][1] = 41; EXPECTATIONS[176] = new int[2]; EXPECTATIONS[176][0] = 25; EXPECTATIONS[176][1] = 41; EXPECTATIONS[177] = new int[2]; EXPECTATIONS[177][0] = 26; EXPECTATIONS[177][1] = 41; EXPECTATIONS[178] = new int[2]; EXPECTATIONS[178][0] = 27; EXPECTATIONS[178][1] = 41; EXPECTATIONS[179] = new int[2]; EXPECTATIONS[179][0] = 28; EXPECTATIONS[179][1] = 41; EXPECTATIONS[180] = new int[2]; EXPECTATIONS[180][0] = 29; EXPECTATIONS[180][1] = 41; EXPECTATIONS[181] = new int[2]; EXPECTATIONS[181][0] = 30; EXPECTATIONS[181][1] = 41; EXPECTATIONS[182] = new int[2]; EXPECTATIONS[182][0] = 31; EXPECTATIONS[182][1] = 41; EXPECTATIONS[183] = new int[2]; EXPECTATIONS[183][0] = 32; EXPECTATIONS[183][1] = 41; EXPECTATIONS[184] = new int[2]; EXPECTATIONS[184][0] = 33; EXPECTATIONS[184][1] = 41; EXPECTATIONS[185] = new int[2]; EXPECTATIONS[185][0] = 34; EXPECTATIONS[185][1] = 41; EXPECTATIONS[186] = new int[2]; EXPECTATIONS[186][0] = 35; EXPECTATIONS[186][1] = 41; EXPECTATIONS[187] = new int[2]; EXPECTATIONS[187][0] = 36; EXPECTATIONS[187][1] = 41; EXPECTATIONS[188] = new int[2]; EXPECTATIONS[188][0] = 37; EXPECTATIONS[188][1] = 41; EXPECTATIONS[189] = new int[2]; EXPECTATIONS[189][0] = 38; EXPECTATIONS[189][1] = 41; EXPECTATIONS[190] = new int[3]; EXPECTATIONS[190][0] = 19; EXPECTATIONS[190][1] = 41; EXPECTATIONS[190][2] = 33; EXPECTATIONS[191] = new int[3]; EXPECTATIONS[191][0] = 20; EXPECTATIONS[191][1] = 41; EXPECTATIONS[191][2] = 34; EXPECTATIONS[192] = new int[2]; EXPECTATIONS[192][0] = 21; EXPECTATIONS[192][1] = 42; EXPECTATIONS[193] = new int[2]; EXPECTATIONS[193][0] = 22; EXPECTATIONS[193][1] = 42; EXPECTATIONS[194] = new int[2]; EXPECTATIONS[194][0] = 23; EXPECTATIONS[194][1] = 42; EXPECTATIONS[195] = new int[2]; EXPECTATIONS[195][0] = 24; EXPECTATIONS[195][1] = 42; EXPECTATIONS[196] = new int[2]; EXPECTATIONS[196][0] = 25; EXPECTATIONS[196][1] = 42; EXPECTATIONS[197] = new int[2]; EXPECTATIONS[197][0] = 26; EXPECTATIONS[197][1] = 42; EXPECTATIONS[198] = new int[2]; EXPECTATIONS[198][0] = 27; EXPECTATIONS[198][1] = 42; EXPECTATIONS[199] = new int[2]; EXPECTATIONS[199][0] = 28; EXPECTATIONS[199][1] = 42; EXPECTATIONS[200] = new int[2]; EXPECTATIONS[200][0] = 29; EXPECTATIONS[200][1] = 42; EXPECTATIONS[201] = new int[2]; EXPECTATIONS[201][0] = 30; EXPECTATIONS[201][1] = 42; EXPECTATIONS[202] = new int[2]; EXPECTATIONS[202][0] = 31; EXPECTATIONS[202][1] = 42; EXPECTATIONS[203] = new int[2]; EXPECTATIONS[203][0] = 32; EXPECTATIONS[203][1] = 42; EXPECTATIONS[204] = new int[2]; EXPECTATIONS[204][0] = 33; EXPECTATIONS[204][1] = 42; EXPECTATIONS[205] = new int[2]; EXPECTATIONS[205][0] = 34; EXPECTATIONS[205][1] = 42; EXPECTATIONS[206] = new int[2]; EXPECTATIONS[206][0] = 35; EXPECTATIONS[206][1] = 42; EXPECTATIONS[207] = new int[2]; EXPECTATIONS[207][0] = 36; EXPECTATIONS[207][1] = 42; EXPECTATIONS[208] = new int[2]; EXPECTATIONS[208][0] = 37; EXPECTATIONS[208][1] = 42; EXPECTATIONS[209] = new int[2]; EXPECTATIONS[209][0] = 38; EXPECTATIONS[209][1] = 42; EXPECTATIONS[210] = new int[3]; EXPECTATIONS[210][0] = 19; EXPECTATIONS[210][1] = 42; EXPECTATIONS[210][2] = 35; EXPECTATIONS[211] = new int[3]; EXPECTATIONS[211][0] = 20; EXPECTATIONS[211][1] = 42; EXPECTATIONS[211][2] = 36; EXPECTATIONS[212] = new int[2]; EXPECTATIONS[212][0] = 45; EXPECTATIONS[212][1] = 43; EXPECTATIONS[213] = new int[2]; EXPECTATIONS[213][0] = 46; EXPECTATIONS[213][1] = 44; EXPECTATIONS[214] = new int[2]; EXPECTATIONS[214][0] = 21; EXPECTATIONS[214][1] = 45; EXPECTATIONS[215] = new int[2]; EXPECTATIONS[215][0] = 22; EXPECTATIONS[215][1] = 45; EXPECTATIONS[216] = new int[2]; EXPECTATIONS[216][0] = 23; EXPECTATIONS[216][1] = 45; EXPECTATIONS[217] = new int[2]; EXPECTATIONS[217][0] = 24; EXPECTATIONS[217][1] = 45; EXPECTATIONS[218] = new int[2]; EXPECTATIONS[218][0] = 25; EXPECTATIONS[218][1] = 45; EXPECTATIONS[219] = new int[2]; EXPECTATIONS[219][0] = 26; EXPECTATIONS[219][1] = 45; EXPECTATIONS[220] = new int[2]; EXPECTATIONS[220][0] = 27; EXPECTATIONS[220][1] = 45; EXPECTATIONS[221] = new int[2]; EXPECTATIONS[221][0] = 28; EXPECTATIONS[221][1] = 45; EXPECTATIONS[222] = new int[2]; EXPECTATIONS[222][0] = 29; EXPECTATIONS[222][1] = 45; EXPECTATIONS[223] = new int[2]; EXPECTATIONS[223][0] = 30; EXPECTATIONS[223][1] = 45; EXPECTATIONS[224] = new int[2]; EXPECTATIONS[224][0] = 31; EXPECTATIONS[224][1] = 45; EXPECTATIONS[225] = new int[2]; EXPECTATIONS[225][0] = 32; EXPECTATIONS[225][1] = 45; EXPECTATIONS[226] = new int[2]; EXPECTATIONS[226][0] = 33; EXPECTATIONS[226][1] = 45; EXPECTATIONS[227] = new int[2]; EXPECTATIONS[227][0] = 34; EXPECTATIONS[227][1] = 45; EXPECTATIONS[228] = new int[2]; EXPECTATIONS[228][0] = 35; EXPECTATIONS[228][1] = 45; EXPECTATIONS[229] = new int[2]; EXPECTATIONS[229][0] = 36; EXPECTATIONS[229][1] = 45; EXPECTATIONS[230] = new int[2]; EXPECTATIONS[230][0] = 37; EXPECTATIONS[230][1] = 45; EXPECTATIONS[231] = new int[2]; EXPECTATIONS[231][0] = 38; EXPECTATIONS[231][1] = 45; EXPECTATIONS[232] = new int[3]; EXPECTATIONS[232][0] = 19; EXPECTATIONS[232][1] = 45; EXPECTATIONS[232][2] = 37; EXPECTATIONS[233] = new int[3]; EXPECTATIONS[233][0] = 20; EXPECTATIONS[233][1] = 45; EXPECTATIONS[233][2] = 38; EXPECTATIONS[234] = new int[2]; EXPECTATIONS[234][0] = 21; EXPECTATIONS[234][1] = 46; EXPECTATIONS[235] = new int[2]; EXPECTATIONS[235][0] = 22; EXPECTATIONS[235][1] = 46; EXPECTATIONS[236] = new int[2]; EXPECTATIONS[236][0] = 23; EXPECTATIONS[236][1] = 46; EXPECTATIONS[237] = new int[2]; EXPECTATIONS[237][0] = 24; EXPECTATIONS[237][1] = 46; EXPECTATIONS[238] = new int[2]; EXPECTATIONS[238][0] = 25; EXPECTATIONS[238][1] = 46; EXPECTATIONS[239] = new int[2]; EXPECTATIONS[239][0] = 26; EXPECTATIONS[239][1] = 46; EXPECTATIONS[240] = new int[2]; EXPECTATIONS[240][0] = 27; EXPECTATIONS[240][1] = 46; EXPECTATIONS[241] = new int[2]; EXPECTATIONS[241][0] = 28; EXPECTATIONS[241][1] = 46; EXPECTATIONS[242] = new int[2]; EXPECTATIONS[242][0] = 29; EXPECTATIONS[242][1] = 46; EXPECTATIONS[243] = new int[2]; EXPECTATIONS[243][0] = 30; EXPECTATIONS[243][1] = 46; EXPECTATIONS[244] = new int[2]; EXPECTATIONS[244][0] = 31; EXPECTATIONS[244][1] = 46; EXPECTATIONS[245] = new int[2]; EXPECTATIONS[245][0] = 32; EXPECTATIONS[245][1] = 46; EXPECTATIONS[246] = new int[2]; EXPECTATIONS[246][0] = 33; EXPECTATIONS[246][1] = 46; EXPECTATIONS[247] = new int[2]; EXPECTATIONS[247][0] = 34; EXPECTATIONS[247][1] = 46; EXPECTATIONS[248] = new int[2]; EXPECTATIONS[248][0] = 35; EXPECTATIONS[248][1] = 46; EXPECTATIONS[249] = new int[2]; EXPECTATIONS[249][0] = 36; EXPECTATIONS[249][1] = 46; EXPECTATIONS[250] = new int[2]; EXPECTATIONS[250][0] = 37; EXPECTATIONS[250][1] = 46; EXPECTATIONS[251] = new int[2]; EXPECTATIONS[251][0] = 38; EXPECTATIONS[251][1] = 46; EXPECTATIONS[252] = new int[3]; EXPECTATIONS[252][0] = 19; EXPECTATIONS[252][1] = 46; EXPECTATIONS[252][2] = 39; EXPECTATIONS[253] = new int[3]; EXPECTATIONS[253][0] = 20; EXPECTATIONS[253][1] = 46; EXPECTATIONS[253][2] = 40; EXPECTATIONS[254] = new int[2]; EXPECTATIONS[254][0] = 47; EXPECTATIONS[254][1] = 47; EXPECTATIONS[255] = new int[3]; EXPECTATIONS[255][0] = 18; EXPECTATIONS[255][1] = 48; EXPECTATIONS[255][2] = 41; EXPECTATIONS[256] = new int[2]; EXPECTATIONS[256][0] = 21; EXPECTATIONS[256][1] = 49; EXPECTATIONS[257] = new int[2]; EXPECTATIONS[257][0] = 22; EXPECTATIONS[257][1] = 49; EXPECTATIONS[258] = new int[2]; EXPECTATIONS[258][0] = 23; EXPECTATIONS[258][1] = 49; EXPECTATIONS[259] = new int[2]; EXPECTATIONS[259][0] = 24; EXPECTATIONS[259][1] = 49; EXPECTATIONS[260] = new int[2]; EXPECTATIONS[260][0] = 25; EXPECTATIONS[260][1] = 49; EXPECTATIONS[261] = new int[2]; EXPECTATIONS[261][0] = 26; EXPECTATIONS[261][1] = 49; EXPECTATIONS[262] = new int[2]; EXPECTATIONS[262][0] = 27; EXPECTATIONS[262][1] = 49; EXPECTATIONS[263] = new int[2]; EXPECTATIONS[263][0] = 28; EXPECTATIONS[263][1] = 49; EXPECTATIONS[264] = new int[2]; EXPECTATIONS[264][0] = 29; EXPECTATIONS[264][1] = 49; EXPECTATIONS[265] = new int[2]; EXPECTATIONS[265][0] = 30; EXPECTATIONS[265][1] = 49; EXPECTATIONS[266] = new int[2]; EXPECTATIONS[266][0] = 31; EXPECTATIONS[266][1] = 49; EXPECTATIONS[267] = new int[2]; EXPECTATIONS[267][0] = 32; EXPECTATIONS[267][1] = 49; EXPECTATIONS[268] = new int[2]; EXPECTATIONS[268][0] = 33; EXPECTATIONS[268][1] = 49; EXPECTATIONS[269] = new int[2]; EXPECTATIONS[269][0] = 34; EXPECTATIONS[269][1] = 49; EXPECTATIONS[270] = new int[2]; EXPECTATIONS[270][0] = 35; EXPECTATIONS[270][1] = 49; EXPECTATIONS[271] = new int[2]; EXPECTATIONS[271][0] = 36; EXPECTATIONS[271][1] = 49; EXPECTATIONS[272] = new int[2]; EXPECTATIONS[272][0] = 37; EXPECTATIONS[272][1] = 49; EXPECTATIONS[273] = new int[2]; EXPECTATIONS[273][0] = 38; EXPECTATIONS[273][1] = 49; EXPECTATIONS[274] = new int[3]; EXPECTATIONS[274][0] = 19; EXPECTATIONS[274][1] = 49; EXPECTATIONS[274][2] = 42; EXPECTATIONS[275] = new int[3]; EXPECTATIONS[275][0] = 20; EXPECTATIONS[275][1] = 49; EXPECTATIONS[275][2] = 43; EXPECTATIONS[276] = new int[2]; EXPECTATIONS[276][0] = 21; EXPECTATIONS[276][1] = 50; EXPECTATIONS[277] = new int[2]; EXPECTATIONS[277][0] = 22; EXPECTATIONS[277][1] = 50; EXPECTATIONS[278] = new int[2]; EXPECTATIONS[278][0] = 23; EXPECTATIONS[278][1] = 50; EXPECTATIONS[279] = new int[2]; EXPECTATIONS[279][0] = 24; EXPECTATIONS[279][1] = 50; EXPECTATIONS[280] = new int[2]; EXPECTATIONS[280][0] = 25; EXPECTATIONS[280][1] = 50; EXPECTATIONS[281] = new int[2]; EXPECTATIONS[281][0] = 26; EXPECTATIONS[281][1] = 50; EXPECTATIONS[282] = new int[2]; EXPECTATIONS[282][0] = 27; EXPECTATIONS[282][1] = 50; EXPECTATIONS[283] = new int[2]; EXPECTATIONS[283][0] = 28; EXPECTATIONS[283][1] = 50; EXPECTATIONS[284] = new int[2]; EXPECTATIONS[284][0] = 29; EXPECTATIONS[284][1] = 50; EXPECTATIONS[285] = new int[2]; EXPECTATIONS[285][0] = 30; EXPECTATIONS[285][1] = 50; EXPECTATIONS[286] = new int[2]; EXPECTATIONS[286][0] = 31; EXPECTATIONS[286][1] = 50; EXPECTATIONS[287] = new int[2]; EXPECTATIONS[287][0] = 32; EXPECTATIONS[287][1] = 50; EXPECTATIONS[288] = new int[2]; EXPECTATIONS[288][0] = 33; EXPECTATIONS[288][1] = 50; EXPECTATIONS[289] = new int[2]; EXPECTATIONS[289][0] = 34; EXPECTATIONS[289][1] = 50; EXPECTATIONS[290] = new int[2]; EXPECTATIONS[290][0] = 35; EXPECTATIONS[290][1] = 50; EXPECTATIONS[291] = new int[2]; EXPECTATIONS[291][0] = 36; EXPECTATIONS[291][1] = 50; EXPECTATIONS[292] = new int[2]; EXPECTATIONS[292][0] = 37; EXPECTATIONS[292][1] = 50; EXPECTATIONS[293] = new int[2]; EXPECTATIONS[293][0] = 38; EXPECTATIONS[293][1] = 50; EXPECTATIONS[294] = new int[3]; EXPECTATIONS[294][0] = 19; EXPECTATIONS[294][1] = 50; EXPECTATIONS[294][2] = 44; EXPECTATIONS[295] = new int[3]; EXPECTATIONS[295][0] = 20; EXPECTATIONS[295][1] = 50; EXPECTATIONS[295][2] = 45; EXPECTATIONS[296] = new int[2]; EXPECTATIONS[296][0] = 48; EXPECTATIONS[296][1] = 51; EXPECTATIONS[297] = new int[3]; EXPECTATIONS[297][0] = 49; EXPECTATIONS[297][1] = 52; EXPECTATIONS[297][2] = 46; EXPECTATIONS[298] = new int[2]; EXPECTATIONS[298][0] = 50; EXPECTATIONS[298][1] = 53; EXPECTATIONS[299] = new int[2]; EXPECTATIONS[299][0] = 21; EXPECTATIONS[299][1] = 53; EXPECTATIONS[300] = new int[2]; EXPECTATIONS[300][0] = 22; EXPECTATIONS[300][1] = 53; EXPECTATIONS[301] = new int[2]; EXPECTATIONS[301][0] = 23; EXPECTATIONS[301][1] = 53; EXPECTATIONS[302] = new int[2]; EXPECTATIONS[302][0] = 24; EXPECTATIONS[302][1] = 53; EXPECTATIONS[303] = new int[2]; EXPECTATIONS[303][0] = 25; EXPECTATIONS[303][1] = 53; EXPECTATIONS[304] = new int[2]; EXPECTATIONS[304][0] = 26; EXPECTATIONS[304][1] = 53; EXPECTATIONS[305] = new int[2]; EXPECTATIONS[305][0] = 27; EXPECTATIONS[305][1] = 53; EXPECTATIONS[306] = new int[2]; EXPECTATIONS[306][0] = 28; EXPECTATIONS[306][1] = 53; EXPECTATIONS[307] = new int[2]; EXPECTATIONS[307][0] = 29; EXPECTATIONS[307][1] = 53; EXPECTATIONS[308] = new int[2]; EXPECTATIONS[308][0] = 30; EXPECTATIONS[308][1] = 53; EXPECTATIONS[309] = new int[2]; EXPECTATIONS[309][0] = 31; EXPECTATIONS[309][1] = 53; EXPECTATIONS[310] = new int[2]; EXPECTATIONS[310][0] = 32; EXPECTATIONS[310][1] = 53; EXPECTATIONS[311] = new int[2]; EXPECTATIONS[311][0] = 33; EXPECTATIONS[311][1] = 53; EXPECTATIONS[312] = new int[2]; EXPECTATIONS[312][0] = 34; EXPECTATIONS[312][1] = 53; EXPECTATIONS[313] = new int[2]; EXPECTATIONS[313][0] = 35; EXPECTATIONS[313][1] = 53; EXPECTATIONS[314] = new int[2]; EXPECTATIONS[314][0] = 36; EXPECTATIONS[314][1] = 53; EXPECTATIONS[315] = new int[2]; EXPECTATIONS[315][0] = 37; EXPECTATIONS[315][1] = 53; EXPECTATIONS[316] = new int[2]; EXPECTATIONS[316][0] = 38; EXPECTATIONS[316][1] = 53; EXPECTATIONS[317] = new int[3]; EXPECTATIONS[317][0] = 19; EXPECTATIONS[317][1] = 53; EXPECTATIONS[317][2] = 47; EXPECTATIONS[318] = new int[3]; EXPECTATIONS[318][0] = 20; EXPECTATIONS[318][1] = 53; EXPECTATIONS[318][2] = 48; EXPECTATIONS[319] = new int[3]; EXPECTATIONS[319][0] = 49; EXPECTATIONS[319][1] = 54; EXPECTATIONS[319][2] = 49; EXPECTATIONS[320] = new int[2]; EXPECTATIONS[320][0] = 50; EXPECTATIONS[320][1] = 55; EXPECTATIONS[321] = new int[2]; EXPECTATIONS[321][0] = 21; EXPECTATIONS[321][1] = 55; EXPECTATIONS[322] = new int[2]; EXPECTATIONS[322][0] = 22; EXPECTATIONS[322][1] = 55; EXPECTATIONS[323] = new int[2]; EXPECTATIONS[323][0] = 23; EXPECTATIONS[323][1] = 55; EXPECTATIONS[324] = new int[2]; EXPECTATIONS[324][0] = 24; EXPECTATIONS[324][1] = 55; EXPECTATIONS[325] = new int[2]; EXPECTATIONS[325][0] = 25; EXPECTATIONS[325][1] = 55; EXPECTATIONS[326] = new int[2]; EXPECTATIONS[326][0] = 26; EXPECTATIONS[326][1] = 55; EXPECTATIONS[327] = new int[2]; EXPECTATIONS[327][0] = 27; EXPECTATIONS[327][1] = 55; EXPECTATIONS[328] = new int[2]; EXPECTATIONS[328][0] = 28; EXPECTATIONS[328][1] = 55; EXPECTATIONS[329] = new int[2]; EXPECTATIONS[329][0] = 29; EXPECTATIONS[329][1] = 55; EXPECTATIONS[330] = new int[2]; EXPECTATIONS[330][0] = 30; EXPECTATIONS[330][1] = 55; EXPECTATIONS[331] = new int[2]; EXPECTATIONS[331][0] = 31; EXPECTATIONS[331][1] = 55; EXPECTATIONS[332] = new int[2]; EXPECTATIONS[332][0] = 32; EXPECTATIONS[332][1] = 55; EXPECTATIONS[333] = new int[2]; EXPECTATIONS[333][0] = 33; EXPECTATIONS[333][1] = 55; EXPECTATIONS[334] = new int[2]; EXPECTATIONS[334][0] = 34; EXPECTATIONS[334][1] = 55; EXPECTATIONS[335] = new int[2]; EXPECTATIONS[335][0] = 35; EXPECTATIONS[335][1] = 55; EXPECTATIONS[336] = new int[2]; EXPECTATIONS[336][0] = 36; EXPECTATIONS[336][1] = 55; EXPECTATIONS[337] = new int[2]; EXPECTATIONS[337][0] = 37; EXPECTATIONS[337][1] = 55; EXPECTATIONS[338] = new int[2]; EXPECTATIONS[338][0] = 38; EXPECTATIONS[338][1] = 55; EXPECTATIONS[339] = new int[3]; EXPECTATIONS[339][0] = 19; EXPECTATIONS[339][1] = 55; EXPECTATIONS[339][2] = 50; EXPECTATIONS[340] = new int[3]; EXPECTATIONS[340][0] = 20; EXPECTATIONS[340][1] = 55; EXPECTATIONS[340][2] = 51; EXPECTATIONS[341] = new int[2]; EXPECTATIONS[341][0] = 50; EXPECTATIONS[341][1] = 56; EXPECTATIONS[342] = new int[2]; EXPECTATIONS[342][0] = 21; EXPECTATIONS[342][1] = 56; EXPECTATIONS[343] = new int[2]; EXPECTATIONS[343][0] = 22; EXPECTATIONS[343][1] = 56; EXPECTATIONS[344] = new int[2]; EXPECTATIONS[344][0] = 23; EXPECTATIONS[344][1] = 56; EXPECTATIONS[345] = new int[2]; EXPECTATIONS[345][0] = 24; EXPECTATIONS[345][1] = 56; EXPECTATIONS[346] = new int[2]; EXPECTATIONS[346][0] = 25; EXPECTATIONS[346][1] = 56; EXPECTATIONS[347] = new int[2]; EXPECTATIONS[347][0] = 26; EXPECTATIONS[347][1] = 56; EXPECTATIONS[348] = new int[2]; EXPECTATIONS[348][0] = 27; EXPECTATIONS[348][1] = 56; EXPECTATIONS[349] = new int[2]; EXPECTATIONS[349][0] = 28; EXPECTATIONS[349][1] = 56; EXPECTATIONS[350] = new int[2]; EXPECTATIONS[350][0] = 29; EXPECTATIONS[350][1] = 56; EXPECTATIONS[351] = new int[2]; EXPECTATIONS[351][0] = 30; EXPECTATIONS[351][1] = 56; EXPECTATIONS[352] = new int[2]; EXPECTATIONS[352][0] = 31; EXPECTATIONS[352][1] = 56; EXPECTATIONS[353] = new int[2]; EXPECTATIONS[353][0] = 32; EXPECTATIONS[353][1] = 56; EXPECTATIONS[354] = new int[2]; EXPECTATIONS[354][0] = 33; EXPECTATIONS[354][1] = 56; EXPECTATIONS[355] = new int[2]; EXPECTATIONS[355][0] = 34; EXPECTATIONS[355][1] = 56; EXPECTATIONS[356] = new int[2]; EXPECTATIONS[356][0] = 35; EXPECTATIONS[356][1] = 56; EXPECTATIONS[357] = new int[2]; EXPECTATIONS[357][0] = 36; EXPECTATIONS[357][1] = 56; EXPECTATIONS[358] = new int[2]; EXPECTATIONS[358][0] = 37; EXPECTATIONS[358][1] = 56; EXPECTATIONS[359] = new int[2]; EXPECTATIONS[359][0] = 38; EXPECTATIONS[359][1] = 56; EXPECTATIONS[360] = new int[3]; EXPECTATIONS[360][0] = 19; EXPECTATIONS[360][1] = 56; EXPECTATIONS[360][2] = 52; EXPECTATIONS[361] = new int[3]; EXPECTATIONS[361][0] = 20; EXPECTATIONS[361][1] = 56; EXPECTATIONS[361][2] = 53; EXPECTATIONS[362] = new int[2]; EXPECTATIONS[362][0] = 21; EXPECTATIONS[362][1] = 57; EXPECTATIONS[363] = new int[2]; EXPECTATIONS[363][0] = 22; EXPECTATIONS[363][1] = 57; EXPECTATIONS[364] = new int[2]; EXPECTATIONS[364][0] = 23; EXPECTATIONS[364][1] = 57; EXPECTATIONS[365] = new int[2]; EXPECTATIONS[365][0] = 24; EXPECTATIONS[365][1] = 57; EXPECTATIONS[366] = new int[2]; EXPECTATIONS[366][0] = 25; EXPECTATIONS[366][1] = 57; EXPECTATIONS[367] = new int[2]; EXPECTATIONS[367][0] = 26; EXPECTATIONS[367][1] = 57; EXPECTATIONS[368] = new int[2]; EXPECTATIONS[368][0] = 27; EXPECTATIONS[368][1] = 57; EXPECTATIONS[369] = new int[2]; EXPECTATIONS[369][0] = 28; EXPECTATIONS[369][1] = 57; EXPECTATIONS[370] = new int[2]; EXPECTATIONS[370][0] = 29; EXPECTATIONS[370][1] = 57; EXPECTATIONS[371] = new int[2]; EXPECTATIONS[371][0] = 30; EXPECTATIONS[371][1] = 57; EXPECTATIONS[372] = new int[2]; EXPECTATIONS[372][0] = 31; EXPECTATIONS[372][1] = 57; EXPECTATIONS[373] = new int[2]; EXPECTATIONS[373][0] = 32; EXPECTATIONS[373][1] = 57; EXPECTATIONS[374] = new int[2]; EXPECTATIONS[374][0] = 33; EXPECTATIONS[374][1] = 57; EXPECTATIONS[375] = new int[2]; EXPECTATIONS[375][0] = 34; EXPECTATIONS[375][1] = 57; EXPECTATIONS[376] = new int[2]; EXPECTATIONS[376][0] = 35; EXPECTATIONS[376][1] = 57; EXPECTATIONS[377] = new int[2]; EXPECTATIONS[377][0] = 36; EXPECTATIONS[377][1] = 57; EXPECTATIONS[378] = new int[2]; EXPECTATIONS[378][0] = 37; EXPECTATIONS[378][1] = 57; EXPECTATIONS[379] = new int[2]; EXPECTATIONS[379][0] = 38; EXPECTATIONS[379][1] = 57; EXPECTATIONS[380] = new int[3]; EXPECTATIONS[380][0] = 19; EXPECTATIONS[380][1] = 57; EXPECTATIONS[380][2] = 54; EXPECTATIONS[381] = new int[3]; EXPECTATIONS[381][0] = 20; EXPECTATIONS[381][1] = 57; EXPECTATIONS[381][2] = 55; EXPECTATIONS[382] = new int[2]; EXPECTATIONS[382][0] = 51; EXPECTATIONS[382][1] = 58; EXPECTATIONS[383] = new int[3]; EXPECTATIONS[383][0] = 49; EXPECTATIONS[383][1] = 59; EXPECTATIONS[383][2] = 56; EXPECTATIONS[384] = new int[2]; EXPECTATIONS[384][0] = 52; EXPECTATIONS[384][1] = 60; EXPECTATIONS[385] = new int[2]; EXPECTATIONS[385][0] = 21; EXPECTATIONS[385][1] = 60; EXPECTATIONS[386] = new int[2]; EXPECTATIONS[386][0] = 22; EXPECTATIONS[386][1] = 60; EXPECTATIONS[387] = new int[2]; EXPECTATIONS[387][0] = 23; EXPECTATIONS[387][1] = 60; EXPECTATIONS[388] = new int[2]; EXPECTATIONS[388][0] = 24; EXPECTATIONS[388][1] = 60; EXPECTATIONS[389] = new int[2]; EXPECTATIONS[389][0] = 25; EXPECTATIONS[389][1] = 60; EXPECTATIONS[390] = new int[2]; EXPECTATIONS[390][0] = 26; EXPECTATIONS[390][1] = 60; EXPECTATIONS[391] = new int[2]; EXPECTATIONS[391][0] = 27; EXPECTATIONS[391][1] = 60; EXPECTATIONS[392] = new int[2]; EXPECTATIONS[392][0] = 28; EXPECTATIONS[392][1] = 60; EXPECTATIONS[393] = new int[2]; EXPECTATIONS[393][0] = 29; EXPECTATIONS[393][1] = 60; EXPECTATIONS[394] = new int[2]; EXPECTATIONS[394][0] = 30; EXPECTATIONS[394][1] = 60; EXPECTATIONS[395] = new int[2]; EXPECTATIONS[395][0] = 31; EXPECTATIONS[395][1] = 60; EXPECTATIONS[396] = new int[2]; EXPECTATIONS[396][0] = 32; EXPECTATIONS[396][1] = 60; EXPECTATIONS[397] = new int[2]; EXPECTATIONS[397][0] = 33; EXPECTATIONS[397][1] = 60; EXPECTATIONS[398] = new int[2]; EXPECTATIONS[398][0] = 34; EXPECTATIONS[398][1] = 60; EXPECTATIONS[399] = new int[2]; EXPECTATIONS[399][0] = 35; EXPECTATIONS[399][1] = 60; EXPECTATIONS[400] = new int[2]; EXPECTATIONS[400][0] = 36; EXPECTATIONS[400][1] = 60; EXPECTATIONS[401] = new int[2]; EXPECTATIONS[401][0] = 37; EXPECTATIONS[401][1] = 60; EXPECTATIONS[402] = new int[2]; EXPECTATIONS[402][0] = 38; EXPECTATIONS[402][1] = 60; EXPECTATIONS[403] = new int[3]; EXPECTATIONS[403][0] = 19; EXPECTATIONS[403][1] = 60; EXPECTATIONS[403][2] = 57; EXPECTATIONS[404] = new int[3]; EXPECTATIONS[404][0] = 20; EXPECTATIONS[404][1] = 60; EXPECTATIONS[404][2] = 58; EXPECTATIONS[405] = new int[3]; EXPECTATIONS[405][0] = 49; EXPECTATIONS[405][1] = 61; EXPECTATIONS[405][2] = 59; EXPECTATIONS[406] = new int[2]; EXPECTATIONS[406][0] = 52; EXPECTATIONS[406][1] = 62; EXPECTATIONS[407] = new int[2]; EXPECTATIONS[407][0] = 21; EXPECTATIONS[407][1] = 62; EXPECTATIONS[408] = new int[2]; EXPECTATIONS[408][0] = 22; EXPECTATIONS[408][1] = 62; EXPECTATIONS[409] = new int[2]; EXPECTATIONS[409][0] = 23; EXPECTATIONS[409][1] = 62; EXPECTATIONS[410] = new int[2]; EXPECTATIONS[410][0] = 24; EXPECTATIONS[410][1] = 62; EXPECTATIONS[411] = new int[2]; EXPECTATIONS[411][0] = 25; EXPECTATIONS[411][1] = 62; EXPECTATIONS[412] = new int[2]; EXPECTATIONS[412][0] = 26; EXPECTATIONS[412][1] = 62; EXPECTATIONS[413] = new int[2]; EXPECTATIONS[413][0] = 27; EXPECTATIONS[413][1] = 62; EXPECTATIONS[414] = new int[2]; EXPECTATIONS[414][0] = 28; EXPECTATIONS[414][1] = 62; EXPECTATIONS[415] = new int[2]; EXPECTATIONS[415][0] = 29; EXPECTATIONS[415][1] = 62; EXPECTATIONS[416] = new int[2]; EXPECTATIONS[416][0] = 30; EXPECTATIONS[416][1] = 62; EXPECTATIONS[417] = new int[2]; EXPECTATIONS[417][0] = 31; EXPECTATIONS[417][1] = 62; EXPECTATIONS[418] = new int[2]; EXPECTATIONS[418][0] = 32; EXPECTATIONS[418][1] = 62; EXPECTATIONS[419] = new int[2]; EXPECTATIONS[419][0] = 33; EXPECTATIONS[419][1] = 62; EXPECTATIONS[420] = new int[2]; EXPECTATIONS[420][0] = 34; EXPECTATIONS[420][1] = 62; EXPECTATIONS[421] = new int[2]; EXPECTATIONS[421][0] = 35; EXPECTATIONS[421][1] = 62; EXPECTATIONS[422] = new int[2]; EXPECTATIONS[422][0] = 36; EXPECTATIONS[422][1] = 62; EXPECTATIONS[423] = new int[2]; EXPECTATIONS[423][0] = 37; EXPECTATIONS[423][1] = 62; EXPECTATIONS[424] = new int[2]; EXPECTATIONS[424][0] = 38; EXPECTATIONS[424][1] = 62; EXPECTATIONS[425] = new int[3]; EXPECTATIONS[425][0] = 19; EXPECTATIONS[425][1] = 62; EXPECTATIONS[425][2] = 60; EXPECTATIONS[426] = new int[3]; EXPECTATIONS[426][0] = 20; EXPECTATIONS[426][1] = 62; EXPECTATIONS[426][2] = 61; EXPECTATIONS[427] = new int[2]; EXPECTATIONS[427][0] = 52; EXPECTATIONS[427][1] = 63; EXPECTATIONS[428] = new int[2]; EXPECTATIONS[428][0] = 21; EXPECTATIONS[428][1] = 63; EXPECTATIONS[429] = new int[2]; EXPECTATIONS[429][0] = 22; EXPECTATIONS[429][1] = 63; EXPECTATIONS[430] = new int[2]; EXPECTATIONS[430][0] = 23; EXPECTATIONS[430][1] = 63; EXPECTATIONS[431] = new int[2]; EXPECTATIONS[431][0] = 24; EXPECTATIONS[431][1] = 63; EXPECTATIONS[432] = new int[2]; EXPECTATIONS[432][0] = 25; EXPECTATIONS[432][1] = 63; EXPECTATIONS[433] = new int[2]; EXPECTATIONS[433][0] = 26; EXPECTATIONS[433][1] = 63; EXPECTATIONS[434] = new int[2]; EXPECTATIONS[434][0] = 27; EXPECTATIONS[434][1] = 63; EXPECTATIONS[435] = new int[2]; EXPECTATIONS[435][0] = 28; EXPECTATIONS[435][1] = 63; EXPECTATIONS[436] = new int[2]; EXPECTATIONS[436][0] = 29; EXPECTATIONS[436][1] = 63; EXPECTATIONS[437] = new int[2]; EXPECTATIONS[437][0] = 30; EXPECTATIONS[437][1] = 63; EXPECTATIONS[438] = new int[2]; EXPECTATIONS[438][0] = 31; EXPECTATIONS[438][1] = 63; EXPECTATIONS[439] = new int[2]; EXPECTATIONS[439][0] = 32; EXPECTATIONS[439][1] = 63; EXPECTATIONS[440] = new int[2]; EXPECTATIONS[440][0] = 33; EXPECTATIONS[440][1] = 63; EXPECTATIONS[441] = new int[2]; EXPECTATIONS[441][0] = 34; EXPECTATIONS[441][1] = 63; EXPECTATIONS[442] = new int[2]; EXPECTATIONS[442][0] = 35; EXPECTATIONS[442][1] = 63; EXPECTATIONS[443] = new int[2]; EXPECTATIONS[443][0] = 36; EXPECTATIONS[443][1] = 63; EXPECTATIONS[444] = new int[2]; EXPECTATIONS[444][0] = 37; EXPECTATIONS[444][1] = 63; EXPECTATIONS[445] = new int[2]; EXPECTATIONS[445][0] = 38; EXPECTATIONS[445][1] = 63; EXPECTATIONS[446] = new int[3]; EXPECTATIONS[446][0] = 19; EXPECTATIONS[446][1] = 63; EXPECTATIONS[446][2] = 62; EXPECTATIONS[447] = new int[3]; EXPECTATIONS[447][0] = 20; EXPECTATIONS[447][1] = 63; EXPECTATIONS[447][2] = 63; EXPECTATIONS[448] = new int[2]; EXPECTATIONS[448][0] = 21; EXPECTATIONS[448][1] = 64; EXPECTATIONS[449] = new int[2]; EXPECTATIONS[449][0] = 22; EXPECTATIONS[449][1] = 64; EXPECTATIONS[450] = new int[2]; EXPECTATIONS[450][0] = 23; EXPECTATIONS[450][1] = 64; EXPECTATIONS[451] = new int[2]; EXPECTATIONS[451][0] = 24; EXPECTATIONS[451][1] = 64; EXPECTATIONS[452] = new int[2]; EXPECTATIONS[452][0] = 25; EXPECTATIONS[452][1] = 64; EXPECTATIONS[453] = new int[2]; EXPECTATIONS[453][0] = 26; EXPECTATIONS[453][1] = 64; EXPECTATIONS[454] = new int[2]; EXPECTATIONS[454][0] = 27; EXPECTATIONS[454][1] = 64; EXPECTATIONS[455] = new int[2]; EXPECTATIONS[455][0] = 28; EXPECTATIONS[455][1] = 64; EXPECTATIONS[456] = new int[2]; EXPECTATIONS[456][0] = 29; EXPECTATIONS[456][1] = 64; EXPECTATIONS[457] = new int[2]; EXPECTATIONS[457][0] = 30; EXPECTATIONS[457][1] = 64; EXPECTATIONS[458] = new int[2]; EXPECTATIONS[458][0] = 31; EXPECTATIONS[458][1] = 64; EXPECTATIONS[459] = new int[2]; EXPECTATIONS[459][0] = 32; EXPECTATIONS[459][1] = 64; EXPECTATIONS[460] = new int[2]; EXPECTATIONS[460][0] = 33; EXPECTATIONS[460][1] = 64; EXPECTATIONS[461] = new int[2]; EXPECTATIONS[461][0] = 34; EXPECTATIONS[461][1] = 64; EXPECTATIONS[462] = new int[2]; EXPECTATIONS[462][0] = 35; EXPECTATIONS[462][1] = 64; EXPECTATIONS[463] = new int[2]; EXPECTATIONS[463][0] = 36; EXPECTATIONS[463][1] = 64; EXPECTATIONS[464] = new int[2]; EXPECTATIONS[464][0] = 37; EXPECTATIONS[464][1] = 64; EXPECTATIONS[465] = new int[2]; EXPECTATIONS[465][0] = 38; EXPECTATIONS[465][1] = 64; EXPECTATIONS[466] = new int[3]; EXPECTATIONS[466][0] = 19; EXPECTATIONS[466][1] = 64; EXPECTATIONS[466][2] = 64; EXPECTATIONS[467] = new int[3]; EXPECTATIONS[467][0] = 20; EXPECTATIONS[467][1] = 64; EXPECTATIONS[467][2] = 65; EXPECTATIONS[468] = new int[2]; EXPECTATIONS[468][0] = 53; EXPECTATIONS[468][1] = 65; EXPECTATIONS[469] = new int[2]; EXPECTATIONS[469][0] = 54; EXPECTATIONS[469][1] = 66; EXPECTATIONS[470] = new int[2]; EXPECTATIONS[470][0] = 21; EXPECTATIONS[470][1] = 67; EXPECTATIONS[471] = new int[2]; EXPECTATIONS[471][0] = 22; EXPECTATIONS[471][1] = 67; EXPECTATIONS[472] = new int[2]; EXPECTATIONS[472][0] = 23; EXPECTATIONS[472][1] = 67; EXPECTATIONS[473] = new int[2]; EXPECTATIONS[473][0] = 24; EXPECTATIONS[473][1] = 67; EXPECTATIONS[474] = new int[2]; EXPECTATIONS[474][0] = 25; EXPECTATIONS[474][1] = 67; EXPECTATIONS[475] = new int[2]; EXPECTATIONS[475][0] = 26; EXPECTATIONS[475][1] = 67; EXPECTATIONS[476] = new int[2]; EXPECTATIONS[476][0] = 27; EXPECTATIONS[476][1] = 67; EXPECTATIONS[477] = new int[2]; EXPECTATIONS[477][0] = 28; EXPECTATIONS[477][1] = 67; EXPECTATIONS[478] = new int[2]; EXPECTATIONS[478][0] = 29; EXPECTATIONS[478][1] = 67; EXPECTATIONS[479] = new int[2]; EXPECTATIONS[479][0] = 30; EXPECTATIONS[479][1] = 67; EXPECTATIONS[480] = new int[2]; EXPECTATIONS[480][0] = 31; EXPECTATIONS[480][1] = 67; EXPECTATIONS[481] = new int[2]; EXPECTATIONS[481][0] = 32; EXPECTATIONS[481][1] = 67; EXPECTATIONS[482] = new int[2]; EXPECTATIONS[482][0] = 33; EXPECTATIONS[482][1] = 67; EXPECTATIONS[483] = new int[2]; EXPECTATIONS[483][0] = 34; EXPECTATIONS[483][1] = 67; EXPECTATIONS[484] = new int[2]; EXPECTATIONS[484][0] = 35; EXPECTATIONS[484][1] = 67; EXPECTATIONS[485] = new int[2]; EXPECTATIONS[485][0] = 36; EXPECTATIONS[485][1] = 67; EXPECTATIONS[486] = new int[2]; EXPECTATIONS[486][0] = 37; EXPECTATIONS[486][1] = 67; EXPECTATIONS[487] = new int[2]; EXPECTATIONS[487][0] = 38; EXPECTATIONS[487][1] = 67; EXPECTATIONS[488] = new int[3]; EXPECTATIONS[488][0] = 19; EXPECTATIONS[488][1] = 67; EXPECTATIONS[488][2] = 66; EXPECTATIONS[489] = new int[3]; EXPECTATIONS[489][0] = 20; EXPECTATIONS[489][1] = 67; EXPECTATIONS[489][2] = 67; EXPECTATIONS[490] = new int[2]; EXPECTATIONS[490][0] = 21; EXPECTATIONS[490][1] = 68; EXPECTATIONS[491] = new int[2]; EXPECTATIONS[491][0] = 22; EXPECTATIONS[491][1] = 68; EXPECTATIONS[492] = new int[2]; EXPECTATIONS[492][0] = 23; EXPECTATIONS[492][1] = 68; EXPECTATIONS[493] = new int[2]; EXPECTATIONS[493][0] = 24; EXPECTATIONS[493][1] = 68; EXPECTATIONS[494] = new int[2]; EXPECTATIONS[494][0] = 25; EXPECTATIONS[494][1] = 68; EXPECTATIONS[495] = new int[2]; EXPECTATIONS[495][0] = 26; EXPECTATIONS[495][1] = 68; EXPECTATIONS[496] = new int[2]; EXPECTATIONS[496][0] = 27; EXPECTATIONS[496][1] = 68; EXPECTATIONS[497] = new int[2]; EXPECTATIONS[497][0] = 28; EXPECTATIONS[497][1] = 68; EXPECTATIONS[498] = new int[2]; EXPECTATIONS[498][0] = 29; EXPECTATIONS[498][1] = 68; EXPECTATIONS[499] = new int[2]; EXPECTATIONS[499][0] = 30; EXPECTATIONS[499][1] = 68; EXPECTATIONS[500] = new int[2]; EXPECTATIONS[500][0] = 31; EXPECTATIONS[500][1] = 68; EXPECTATIONS[501] = new int[2]; EXPECTATIONS[501][0] = 32; EXPECTATIONS[501][1] = 68; EXPECTATIONS[502] = new int[2]; EXPECTATIONS[502][0] = 33; EXPECTATIONS[502][1] = 68; EXPECTATIONS[503] = new int[2]; EXPECTATIONS[503][0] = 34; EXPECTATIONS[503][1] = 68; EXPECTATIONS[504] = new int[2]; EXPECTATIONS[504][0] = 35; EXPECTATIONS[504][1] = 68; EXPECTATIONS[505] = new int[2]; EXPECTATIONS[505][0] = 36; EXPECTATIONS[505][1] = 68; EXPECTATIONS[506] = new int[2]; EXPECTATIONS[506][0] = 37; EXPECTATIONS[506][1] = 68; EXPECTATIONS[507] = new int[2]; EXPECTATIONS[507][0] = 38; EXPECTATIONS[507][1] = 68; EXPECTATIONS[508] = new int[3]; EXPECTATIONS[508][0] = 19; EXPECTATIONS[508][1] = 68; EXPECTATIONS[508][2] = 68; EXPECTATIONS[509] = new int[3]; EXPECTATIONS[509][0] = 20; EXPECTATIONS[509][1] = 68; EXPECTATIONS[509][2] = 69; EXPECTATIONS[510] = new int[2]; EXPECTATIONS[510][0] = 55; EXPECTATIONS[510][1] = 69; EXPECTATIONS[511] = new int[2]; EXPECTATIONS[511][0] = 56; EXPECTATIONS[511][1] = 70; EXPECTATIONS[512] = new int[2]; EXPECTATIONS[512][0] = 21; EXPECTATIONS[512][1] = 71; EXPECTATIONS[513] = new int[2]; EXPECTATIONS[513][0] = 22; EXPECTATIONS[513][1] = 71; EXPECTATIONS[514] = new int[2]; EXPECTATIONS[514][0] = 23; EXPECTATIONS[514][1] = 71; EXPECTATIONS[515] = new int[2]; EXPECTATIONS[515][0] = 24; EXPECTATIONS[515][1] = 71; EXPECTATIONS[516] = new int[2]; EXPECTATIONS[516][0] = 25; EXPECTATIONS[516][1] = 71; EXPECTATIONS[517] = new int[2]; EXPECTATIONS[517][0] = 26; EXPECTATIONS[517][1] = 71; EXPECTATIONS[518] = new int[2]; EXPECTATIONS[518][0] = 27; EXPECTATIONS[518][1] = 71; EXPECTATIONS[519] = new int[2]; EXPECTATIONS[519][0] = 28; EXPECTATIONS[519][1] = 71; EXPECTATIONS[520] = new int[2]; EXPECTATIONS[520][0] = 29; EXPECTATIONS[520][1] = 71; EXPECTATIONS[521] = new int[2]; EXPECTATIONS[521][0] = 30; EXPECTATIONS[521][1] = 71; EXPECTATIONS[522] = new int[2]; EXPECTATIONS[522][0] = 31; EXPECTATIONS[522][1] = 71; EXPECTATIONS[523] = new int[2]; EXPECTATIONS[523][0] = 32; EXPECTATIONS[523][1] = 71; EXPECTATIONS[524] = new int[2]; EXPECTATIONS[524][0] = 33; EXPECTATIONS[524][1] = 71; EXPECTATIONS[525] = new int[2]; EXPECTATIONS[525][0] = 34; EXPECTATIONS[525][1] = 71; EXPECTATIONS[526] = new int[2]; EXPECTATIONS[526][0] = 35; EXPECTATIONS[526][1] = 71; EXPECTATIONS[527] = new int[2]; EXPECTATIONS[527][0] = 36; EXPECTATIONS[527][1] = 71; EXPECTATIONS[528] = new int[2]; EXPECTATIONS[528][0] = 37; EXPECTATIONS[528][1] = 71; EXPECTATIONS[529] = new int[2]; EXPECTATIONS[529][0] = 38; EXPECTATIONS[529][1] = 71; EXPECTATIONS[530] = new int[3]; EXPECTATIONS[530][0] = 19; EXPECTATIONS[530][1] = 71; EXPECTATIONS[530][2] = 70; EXPECTATIONS[531] = new int[3]; EXPECTATIONS[531][0] = 20; EXPECTATIONS[531][1] = 71; EXPECTATIONS[531][2] = 71; EXPECTATIONS[532] = new int[2]; EXPECTATIONS[532][0] = 21; EXPECTATIONS[532][1] = 72; EXPECTATIONS[533] = new int[2]; EXPECTATIONS[533][0] = 22; EXPECTATIONS[533][1] = 72; EXPECTATIONS[534] = new int[2]; EXPECTATIONS[534][0] = 23; EXPECTATIONS[534][1] = 72; EXPECTATIONS[535] = new int[2]; EXPECTATIONS[535][0] = 24; EXPECTATIONS[535][1] = 72; EXPECTATIONS[536] = new int[2]; EXPECTATIONS[536][0] = 25; EXPECTATIONS[536][1] = 72; EXPECTATIONS[537] = new int[2]; EXPECTATIONS[537][0] = 26; EXPECTATIONS[537][1] = 72; EXPECTATIONS[538] = new int[2]; EXPECTATIONS[538][0] = 27; EXPECTATIONS[538][1] = 72; EXPECTATIONS[539] = new int[2]; EXPECTATIONS[539][0] = 28; EXPECTATIONS[539][1] = 72; EXPECTATIONS[540] = new int[2]; EXPECTATIONS[540][0] = 29; EXPECTATIONS[540][1] = 72; EXPECTATIONS[541] = new int[2]; EXPECTATIONS[541][0] = 30; EXPECTATIONS[541][1] = 72; EXPECTATIONS[542] = new int[2]; EXPECTATIONS[542][0] = 31; EXPECTATIONS[542][1] = 72; EXPECTATIONS[543] = new int[2]; EXPECTATIONS[543][0] = 32; EXPECTATIONS[543][1] = 72; EXPECTATIONS[544] = new int[2]; EXPECTATIONS[544][0] = 33; EXPECTATIONS[544][1] = 72; EXPECTATIONS[545] = new int[2]; EXPECTATIONS[545][0] = 34; EXPECTATIONS[545][1] = 72; EXPECTATIONS[546] = new int[2]; EXPECTATIONS[546][0] = 35; EXPECTATIONS[546][1] = 72; EXPECTATIONS[547] = new int[2]; EXPECTATIONS[547][0] = 36; EXPECTATIONS[547][1] = 72; EXPECTATIONS[548] = new int[2]; EXPECTATIONS[548][0] = 37; EXPECTATIONS[548][1] = 72; EXPECTATIONS[549] = new int[2]; EXPECTATIONS[549][0] = 38; EXPECTATIONS[549][1] = 72; EXPECTATIONS[550] = new int[3]; EXPECTATIONS[550][0] = 19; EXPECTATIONS[550][1] = 72; EXPECTATIONS[550][2] = 72; EXPECTATIONS[551] = new int[3]; EXPECTATIONS[551][0] = 20; EXPECTATIONS[551][1] = 72; EXPECTATIONS[551][2] = 73; EXPECTATIONS[552] = new int[2]; EXPECTATIONS[552][0] = 57; EXPECTATIONS[552][1] = 73; EXPECTATIONS[553] = new int[3]; EXPECTATIONS[553][0] = 49; EXPECTATIONS[553][1] = 74; EXPECTATIONS[553][2] = 74; EXPECTATIONS[554] = new int[2]; EXPECTATIONS[554][0] = 58; EXPECTATIONS[554][1] = 75; EXPECTATIONS[555] = new int[2]; EXPECTATIONS[555][0] = 21; EXPECTATIONS[555][1] = 75; EXPECTATIONS[556] = new int[2]; EXPECTATIONS[556][0] = 22; EXPECTATIONS[556][1] = 75; EXPECTATIONS[557] = new int[2]; EXPECTATIONS[557][0] = 23; EXPECTATIONS[557][1] = 75; EXPECTATIONS[558] = new int[2]; EXPECTATIONS[558][0] = 24; EXPECTATIONS[558][1] = 75; EXPECTATIONS[559] = new int[2]; EXPECTATIONS[559][0] = 25; EXPECTATIONS[559][1] = 75; EXPECTATIONS[560] = new int[2]; EXPECTATIONS[560][0] = 26; EXPECTATIONS[560][1] = 75; EXPECTATIONS[561] = new int[2]; EXPECTATIONS[561][0] = 27; EXPECTATIONS[561][1] = 75; EXPECTATIONS[562] = new int[2]; EXPECTATIONS[562][0] = 28; EXPECTATIONS[562][1] = 75; EXPECTATIONS[563] = new int[2]; EXPECTATIONS[563][0] = 29; EXPECTATIONS[563][1] = 75; EXPECTATIONS[564] = new int[2]; EXPECTATIONS[564][0] = 30; EXPECTATIONS[564][1] = 75; EXPECTATIONS[565] = new int[2]; EXPECTATIONS[565][0] = 31; EXPECTATIONS[565][1] = 75; EXPECTATIONS[566] = new int[2]; EXPECTATIONS[566][0] = 32; EXPECTATIONS[566][1] = 75; EXPECTATIONS[567] = new int[2]; EXPECTATIONS[567][0] = 33; EXPECTATIONS[567][1] = 75; EXPECTATIONS[568] = new int[2]; EXPECTATIONS[568][0] = 34; EXPECTATIONS[568][1] = 75; EXPECTATIONS[569] = new int[2]; EXPECTATIONS[569][0] = 35; EXPECTATIONS[569][1] = 75; EXPECTATIONS[570] = new int[2]; EXPECTATIONS[570][0] = 36; EXPECTATIONS[570][1] = 75; EXPECTATIONS[571] = new int[2]; EXPECTATIONS[571][0] = 37; EXPECTATIONS[571][1] = 75; EXPECTATIONS[572] = new int[2]; EXPECTATIONS[572][0] = 38; EXPECTATIONS[572][1] = 75; EXPECTATIONS[573] = new int[3]; EXPECTATIONS[573][0] = 19; EXPECTATIONS[573][1] = 75; EXPECTATIONS[573][2] = 75; EXPECTATIONS[574] = new int[3]; EXPECTATIONS[574][0] = 20; EXPECTATIONS[574][1] = 75; EXPECTATIONS[574][2] = 76; EXPECTATIONS[575] = new int[3]; EXPECTATIONS[575][0] = 49; EXPECTATIONS[575][1] = 76; EXPECTATIONS[575][2] = 77; EXPECTATIONS[576] = new int[2]; EXPECTATIONS[576][0] = 58; EXPECTATIONS[576][1] = 77; EXPECTATIONS[577] = new int[2]; EXPECTATIONS[577][0] = 21; EXPECTATIONS[577][1] = 77; EXPECTATIONS[578] = new int[2]; EXPECTATIONS[578][0] = 22; EXPECTATIONS[578][1] = 77; EXPECTATIONS[579] = new int[2]; EXPECTATIONS[579][0] = 23; EXPECTATIONS[579][1] = 77; EXPECTATIONS[580] = new int[2]; EXPECTATIONS[580][0] = 24; EXPECTATIONS[580][1] = 77; EXPECTATIONS[581] = new int[2]; EXPECTATIONS[581][0] = 25; EXPECTATIONS[581][1] = 77; EXPECTATIONS[582] = new int[2]; EXPECTATIONS[582][0] = 26; EXPECTATIONS[582][1] = 77; EXPECTATIONS[583] = new int[2]; EXPECTATIONS[583][0] = 27; EXPECTATIONS[583][1] = 77; EXPECTATIONS[584] = new int[2]; EXPECTATIONS[584][0] = 28; EXPECTATIONS[584][1] = 77; EXPECTATIONS[585] = new int[2]; EXPECTATIONS[585][0] = 29; EXPECTATIONS[585][1] = 77; EXPECTATIONS[586] = new int[2]; EXPECTATIONS[586][0] = 30; EXPECTATIONS[586][1] = 77; EXPECTATIONS[587] = new int[2]; EXPECTATIONS[587][0] = 31; EXPECTATIONS[587][1] = 77; EXPECTATIONS[588] = new int[2]; EXPECTATIONS[588][0] = 32; EXPECTATIONS[588][1] = 77; EXPECTATIONS[589] = new int[2]; EXPECTATIONS[589][0] = 33; EXPECTATIONS[589][1] = 77; EXPECTATIONS[590] = new int[2]; EXPECTATIONS[590][0] = 34; EXPECTATIONS[590][1] = 77; EXPECTATIONS[591] = new int[2]; EXPECTATIONS[591][0] = 35; EXPECTATIONS[591][1] = 77; EXPECTATIONS[592] = new int[2]; EXPECTATIONS[592][0] = 36; EXPECTATIONS[592][1] = 77; EXPECTATIONS[593] = new int[2]; EXPECTATIONS[593][0] = 37; EXPECTATIONS[593][1] = 77; EXPECTATIONS[594] = new int[2]; EXPECTATIONS[594][0] = 38; EXPECTATIONS[594][1] = 77; EXPECTATIONS[595] = new int[3]; EXPECTATIONS[595][0] = 19; EXPECTATIONS[595][1] = 77; EXPECTATIONS[595][2] = 78; EXPECTATIONS[596] = new int[3]; EXPECTATIONS[596][0] = 20; EXPECTATIONS[596][1] = 77; EXPECTATIONS[596][2] = 79; EXPECTATIONS[597] = new int[2]; EXPECTATIONS[597][0] = 58; EXPECTATIONS[597][1] = 78; EXPECTATIONS[598] = new int[2]; EXPECTATIONS[598][0] = 21; EXPECTATIONS[598][1] = 78; EXPECTATIONS[599] = new int[2]; EXPECTATIONS[599][0] = 22; EXPECTATIONS[599][1] = 78; EXPECTATIONS[600] = new int[2]; EXPECTATIONS[600][0] = 23; EXPECTATIONS[600][1] = 78; EXPECTATIONS[601] = new int[2]; EXPECTATIONS[601][0] = 24; EXPECTATIONS[601][1] = 78; EXPECTATIONS[602] = new int[2]; EXPECTATIONS[602][0] = 25; EXPECTATIONS[602][1] = 78; EXPECTATIONS[603] = new int[2]; EXPECTATIONS[603][0] = 26; EXPECTATIONS[603][1] = 78; EXPECTATIONS[604] = new int[2]; EXPECTATIONS[604][0] = 27; EXPECTATIONS[604][1] = 78; EXPECTATIONS[605] = new int[2]; EXPECTATIONS[605][0] = 28; EXPECTATIONS[605][1] = 78; EXPECTATIONS[606] = new int[2]; EXPECTATIONS[606][0] = 29; EXPECTATIONS[606][1] = 78; EXPECTATIONS[607] = new int[2]; EXPECTATIONS[607][0] = 30; EXPECTATIONS[607][1] = 78; EXPECTATIONS[608] = new int[2]; EXPECTATIONS[608][0] = 31; EXPECTATIONS[608][1] = 78; EXPECTATIONS[609] = new int[2]; EXPECTATIONS[609][0] = 32; EXPECTATIONS[609][1] = 78; EXPECTATIONS[610] = new int[2]; EXPECTATIONS[610][0] = 33; EXPECTATIONS[610][1] = 78; EXPECTATIONS[611] = new int[2]; EXPECTATIONS[611][0] = 34; EXPECTATIONS[611][1] = 78; EXPECTATIONS[612] = new int[2]; EXPECTATIONS[612][0] = 35; EXPECTATIONS[612][1] = 78; EXPECTATIONS[613] = new int[2]; EXPECTATIONS[613][0] = 36; EXPECTATIONS[613][1] = 78; EXPECTATIONS[614] = new int[2]; EXPECTATIONS[614][0] = 37; EXPECTATIONS[614][1] = 78; EXPECTATIONS[615] = new int[2]; EXPECTATIONS[615][0] = 38; EXPECTATIONS[615][1] = 78; EXPECTATIONS[616] = new int[3]; EXPECTATIONS[616][0] = 19; EXPECTATIONS[616][1] = 78; EXPECTATIONS[616][2] = 80; EXPECTATIONS[617] = new int[3]; EXPECTATIONS[617][0] = 20; EXPECTATIONS[617][1] = 78; EXPECTATIONS[617][2] = 81; EXPECTATIONS[618] = new int[2]; EXPECTATIONS[618][0] = 21; EXPECTATIONS[618][1] = 79; EXPECTATIONS[619] = new int[2]; EXPECTATIONS[619][0] = 22; EXPECTATIONS[619][1] = 79; EXPECTATIONS[620] = new int[2]; EXPECTATIONS[620][0] = 23; EXPECTATIONS[620][1] = 79; EXPECTATIONS[621] = new int[2]; EXPECTATIONS[621][0] = 24; EXPECTATIONS[621][1] = 79; EXPECTATIONS[622] = new int[2]; EXPECTATIONS[622][0] = 25; EXPECTATIONS[622][1] = 79; EXPECTATIONS[623] = new int[2]; EXPECTATIONS[623][0] = 26; EXPECTATIONS[623][1] = 79; EXPECTATIONS[624] = new int[2]; EXPECTATIONS[624][0] = 27; EXPECTATIONS[624][1] = 79; EXPECTATIONS[625] = new int[2]; EXPECTATIONS[625][0] = 28; EXPECTATIONS[625][1] = 79; EXPECTATIONS[626] = new int[2]; EXPECTATIONS[626][0] = 29; EXPECTATIONS[626][1] = 79; EXPECTATIONS[627] = new int[2]; EXPECTATIONS[627][0] = 30; EXPECTATIONS[627][1] = 79; EXPECTATIONS[628] = new int[2]; EXPECTATIONS[628][0] = 31; EXPECTATIONS[628][1] = 79; EXPECTATIONS[629] = new int[2]; EXPECTATIONS[629][0] = 32; EXPECTATIONS[629][1] = 79; EXPECTATIONS[630] = new int[2]; EXPECTATIONS[630][0] = 33; EXPECTATIONS[630][1] = 79; EXPECTATIONS[631] = new int[2]; EXPECTATIONS[631][0] = 34; EXPECTATIONS[631][1] = 79; EXPECTATIONS[632] = new int[2]; EXPECTATIONS[632][0] = 35; EXPECTATIONS[632][1] = 79; EXPECTATIONS[633] = new int[2]; EXPECTATIONS[633][0] = 36; EXPECTATIONS[633][1] = 79; EXPECTATIONS[634] = new int[2]; EXPECTATIONS[634][0] = 37; EXPECTATIONS[634][1] = 79; EXPECTATIONS[635] = new int[2]; EXPECTATIONS[635][0] = 38; EXPECTATIONS[635][1] = 79; EXPECTATIONS[636] = new int[3]; EXPECTATIONS[636][0] = 19; EXPECTATIONS[636][1] = 79; EXPECTATIONS[636][2] = 82; EXPECTATIONS[637] = new int[3]; EXPECTATIONS[637][0] = 20; EXPECTATIONS[637][1] = 79; EXPECTATIONS[637][2] = 83; EXPECTATIONS[638] = new int[2]; EXPECTATIONS[638][0] = 59; EXPECTATIONS[638][1] = 80; EXPECTATIONS[639] = new int[2]; EXPECTATIONS[639][0] = 60; EXPECTATIONS[639][1] = 81; EXPECTATIONS[640] = new int[2]; EXPECTATIONS[640][0] = 21; EXPECTATIONS[640][1] = 82; EXPECTATIONS[641] = new int[2]; EXPECTATIONS[641][0] = 22; EXPECTATIONS[641][1] = 82; EXPECTATIONS[642] = new int[2]; EXPECTATIONS[642][0] = 23; EXPECTATIONS[642][1] = 82; EXPECTATIONS[643] = new int[2]; EXPECTATIONS[643][0] = 24; EXPECTATIONS[643][1] = 82; EXPECTATIONS[644] = new int[2]; EXPECTATIONS[644][0] = 25; EXPECTATIONS[644][1] = 82; EXPECTATIONS[645] = new int[2]; EXPECTATIONS[645][0] = 26; EXPECTATIONS[645][1] = 82; EXPECTATIONS[646] = new int[2]; EXPECTATIONS[646][0] = 27; EXPECTATIONS[646][1] = 82; EXPECTATIONS[647] = new int[2]; EXPECTATIONS[647][0] = 28; EXPECTATIONS[647][1] = 82; EXPECTATIONS[648] = new int[2]; EXPECTATIONS[648][0] = 29; EXPECTATIONS[648][1] = 82; EXPECTATIONS[649] = new int[2]; EXPECTATIONS[649][0] = 30; EXPECTATIONS[649][1] = 82; EXPECTATIONS[650] = new int[2]; EXPECTATIONS[650][0] = 31; EXPECTATIONS[650][1] = 82; EXPECTATIONS[651] = new int[2]; EXPECTATIONS[651][0] = 32; EXPECTATIONS[651][1] = 82; EXPECTATIONS[652] = new int[2]; EXPECTATIONS[652][0] = 33; EXPECTATIONS[652][1] = 82; EXPECTATIONS[653] = new int[2]; EXPECTATIONS[653][0] = 34; EXPECTATIONS[653][1] = 82; EXPECTATIONS[654] = new int[2]; EXPECTATIONS[654][0] = 35; EXPECTATIONS[654][1] = 82; EXPECTATIONS[655] = new int[2]; EXPECTATIONS[655][0] = 36; EXPECTATIONS[655][1] = 82; EXPECTATIONS[656] = new int[2]; EXPECTATIONS[656][0] = 37; EXPECTATIONS[656][1] = 82; EXPECTATIONS[657] = new int[2]; EXPECTATIONS[657][0] = 38; EXPECTATIONS[657][1] = 82; EXPECTATIONS[658] = new int[3]; EXPECTATIONS[658][0] = 19; EXPECTATIONS[658][1] = 82; EXPECTATIONS[658][2] = 84; EXPECTATIONS[659] = new int[3]; EXPECTATIONS[659][0] = 20; EXPECTATIONS[659][1] = 82; EXPECTATIONS[659][2] = 85; EXPECTATIONS[660] = new int[2]; EXPECTATIONS[660][0] = 21; EXPECTATIONS[660][1] = 83; EXPECTATIONS[661] = new int[2]; EXPECTATIONS[661][0] = 22; EXPECTATIONS[661][1] = 83; EXPECTATIONS[662] = new int[2]; EXPECTATIONS[662][0] = 23; EXPECTATIONS[662][1] = 83; EXPECTATIONS[663] = new int[2]; EXPECTATIONS[663][0] = 24; EXPECTATIONS[663][1] = 83; EXPECTATIONS[664] = new int[2]; EXPECTATIONS[664][0] = 25; EXPECTATIONS[664][1] = 83; EXPECTATIONS[665] = new int[2]; EXPECTATIONS[665][0] = 26; EXPECTATIONS[665][1] = 83; EXPECTATIONS[666] = new int[2]; EXPECTATIONS[666][0] = 27; EXPECTATIONS[666][1] = 83; EXPECTATIONS[667] = new int[2]; EXPECTATIONS[667][0] = 28; EXPECTATIONS[667][1] = 83; EXPECTATIONS[668] = new int[2]; EXPECTATIONS[668][0] = 29; EXPECTATIONS[668][1] = 83; EXPECTATIONS[669] = new int[2]; EXPECTATIONS[669][0] = 30; EXPECTATIONS[669][1] = 83; EXPECTATIONS[670] = new int[2]; EXPECTATIONS[670][0] = 31; EXPECTATIONS[670][1] = 83; EXPECTATIONS[671] = new int[2]; EXPECTATIONS[671][0] = 32; EXPECTATIONS[671][1] = 83; EXPECTATIONS[672] = new int[2]; EXPECTATIONS[672][0] = 33; EXPECTATIONS[672][1] = 83; EXPECTATIONS[673] = new int[2]; EXPECTATIONS[673][0] = 34; EXPECTATIONS[673][1] = 83; EXPECTATIONS[674] = new int[2]; EXPECTATIONS[674][0] = 35; EXPECTATIONS[674][1] = 83; EXPECTATIONS[675] = new int[2]; EXPECTATIONS[675][0] = 36; EXPECTATIONS[675][1] = 83; EXPECTATIONS[676] = new int[2]; EXPECTATIONS[676][0] = 37; EXPECTATIONS[676][1] = 83; EXPECTATIONS[677] = new int[2]; EXPECTATIONS[677][0] = 38; EXPECTATIONS[677][1] = 83; EXPECTATIONS[678] = new int[3]; EXPECTATIONS[678][0] = 19; EXPECTATIONS[678][1] = 83; EXPECTATIONS[678][2] = 86; EXPECTATIONS[679] = new int[3]; EXPECTATIONS[679][0] = 20; EXPECTATIONS[679][1] = 83; EXPECTATIONS[679][2] = 87; EXPECTATIONS[680] = new int[2]; EXPECTATIONS[680][0] = 61; EXPECTATIONS[680][1] = 84; EXPECTATIONS[681] = new int[2]; EXPECTATIONS[681][0] = 62; EXPECTATIONS[681][1] = 85; EXPECTATIONS[682] = new int[2]; EXPECTATIONS[682][0] = 21; EXPECTATIONS[682][1] = 86; EXPECTATIONS[683] = new int[2]; EXPECTATIONS[683][0] = 22; EXPECTATIONS[683][1] = 86; EXPECTATIONS[684] = new int[2]; EXPECTATIONS[684][0] = 23; EXPECTATIONS[684][1] = 86; EXPECTATIONS[685] = new int[2]; EXPECTATIONS[685][0] = 24; EXPECTATIONS[685][1] = 86; EXPECTATIONS[686] = new int[2]; EXPECTATIONS[686][0] = 25; EXPECTATIONS[686][1] = 86; EXPECTATIONS[687] = new int[2]; EXPECTATIONS[687][0] = 26; EXPECTATIONS[687][1] = 86; EXPECTATIONS[688] = new int[2]; EXPECTATIONS[688][0] = 27; EXPECTATIONS[688][1] = 86; EXPECTATIONS[689] = new int[2]; EXPECTATIONS[689][0] = 28; EXPECTATIONS[689][1] = 86; EXPECTATIONS[690] = new int[2]; EXPECTATIONS[690][0] = 29; EXPECTATIONS[690][1] = 86; EXPECTATIONS[691] = new int[2]; EXPECTATIONS[691][0] = 30; EXPECTATIONS[691][1] = 86; EXPECTATIONS[692] = new int[2]; EXPECTATIONS[692][0] = 31; EXPECTATIONS[692][1] = 86; EXPECTATIONS[693] = new int[2]; EXPECTATIONS[693][0] = 32; EXPECTATIONS[693][1] = 86; EXPECTATIONS[694] = new int[2]; EXPECTATIONS[694][0] = 33; EXPECTATIONS[694][1] = 86; EXPECTATIONS[695] = new int[2]; EXPECTATIONS[695][0] = 34; EXPECTATIONS[695][1] = 86; EXPECTATIONS[696] = new int[2]; EXPECTATIONS[696][0] = 35; EXPECTATIONS[696][1] = 86; EXPECTATIONS[697] = new int[2]; EXPECTATIONS[697][0] = 36; EXPECTATIONS[697][1] = 86; EXPECTATIONS[698] = new int[2]; EXPECTATIONS[698][0] = 37; EXPECTATIONS[698][1] = 86; EXPECTATIONS[699] = new int[2]; EXPECTATIONS[699][0] = 38; EXPECTATIONS[699][1] = 86; EXPECTATIONS[700] = new int[3]; EXPECTATIONS[700][0] = 19; EXPECTATIONS[700][1] = 86; EXPECTATIONS[700][2] = 88; EXPECTATIONS[701] = new int[3]; EXPECTATIONS[701][0] = 20; EXPECTATIONS[701][1] = 86; EXPECTATIONS[701][2] = 89; EXPECTATIONS[702] = new int[2]; EXPECTATIONS[702][0] = 21; EXPECTATIONS[702][1] = 87; EXPECTATIONS[703] = new int[2]; EXPECTATIONS[703][0] = 22; EXPECTATIONS[703][1] = 87; EXPECTATIONS[704] = new int[2]; EXPECTATIONS[704][0] = 23; EXPECTATIONS[704][1] = 87; EXPECTATIONS[705] = new int[2]; EXPECTATIONS[705][0] = 24; EXPECTATIONS[705][1] = 87; EXPECTATIONS[706] = new int[2]; EXPECTATIONS[706][0] = 25; EXPECTATIONS[706][1] = 87; EXPECTATIONS[707] = new int[2]; EXPECTATIONS[707][0] = 26; EXPECTATIONS[707][1] = 87; EXPECTATIONS[708] = new int[2]; EXPECTATIONS[708][0] = 27; EXPECTATIONS[708][1] = 87; EXPECTATIONS[709] = new int[2]; EXPECTATIONS[709][0] = 28; EXPECTATIONS[709][1] = 87; EXPECTATIONS[710] = new int[2]; EXPECTATIONS[710][0] = 29; EXPECTATIONS[710][1] = 87; EXPECTATIONS[711] = new int[2]; EXPECTATIONS[711][0] = 30; EXPECTATIONS[711][1] = 87; EXPECTATIONS[712] = new int[2]; EXPECTATIONS[712][0] = 31; EXPECTATIONS[712][1] = 87; EXPECTATIONS[713] = new int[2]; EXPECTATIONS[713][0] = 32; EXPECTATIONS[713][1] = 87; EXPECTATIONS[714] = new int[2]; EXPECTATIONS[714][0] = 33; EXPECTATIONS[714][1] = 87; EXPECTATIONS[715] = new int[2]; EXPECTATIONS[715][0] = 34; EXPECTATIONS[715][1] = 87; EXPECTATIONS[716] = new int[2]; EXPECTATIONS[716][0] = 35; EXPECTATIONS[716][1] = 87; EXPECTATIONS[717] = new int[2]; EXPECTATIONS[717][0] = 36; EXPECTATIONS[717][1] = 87; EXPECTATIONS[718] = new int[2]; EXPECTATIONS[718][0] = 37; EXPECTATIONS[718][1] = 87; EXPECTATIONS[719] = new int[2]; EXPECTATIONS[719][0] = 38; EXPECTATIONS[719][1] = 87; EXPECTATIONS[720] = new int[3]; EXPECTATIONS[720][0] = 19; EXPECTATIONS[720][1] = 87; EXPECTATIONS[720][2] = 90; EXPECTATIONS[721] = new int[3]; EXPECTATIONS[721][0] = 20; EXPECTATIONS[721][1] = 87; EXPECTATIONS[721][2] = 91; EXPECTATIONS[722] = new int[2]; EXPECTATIONS[722][0] = 63; EXPECTATIONS[722][1] = 88; EXPECTATIONS[723] = new int[2]; EXPECTATIONS[723][0] = 64; EXPECTATIONS[723][1] = 89; EXPECTATIONS[724] = new int[2]; EXPECTATIONS[724][0] = 21; EXPECTATIONS[724][1] = 90; EXPECTATIONS[725] = new int[2]; EXPECTATIONS[725][0] = 22; EXPECTATIONS[725][1] = 90; EXPECTATIONS[726] = new int[2]; EXPECTATIONS[726][0] = 23; EXPECTATIONS[726][1] = 90; EXPECTATIONS[727] = new int[2]; EXPECTATIONS[727][0] = 24; EXPECTATIONS[727][1] = 90; EXPECTATIONS[728] = new int[2]; EXPECTATIONS[728][0] = 25; EXPECTATIONS[728][1] = 90; EXPECTATIONS[729] = new int[2]; EXPECTATIONS[729][0] = 26; EXPECTATIONS[729][1] = 90; EXPECTATIONS[730] = new int[2]; EXPECTATIONS[730][0] = 27; EXPECTATIONS[730][1] = 90; EXPECTATIONS[731] = new int[2]; EXPECTATIONS[731][0] = 28; EXPECTATIONS[731][1] = 90; EXPECTATIONS[732] = new int[2]; EXPECTATIONS[732][0] = 29; EXPECTATIONS[732][1] = 90; EXPECTATIONS[733] = new int[2]; EXPECTATIONS[733][0] = 30; EXPECTATIONS[733][1] = 90; EXPECTATIONS[734] = new int[2]; EXPECTATIONS[734][0] = 31; EXPECTATIONS[734][1] = 90; EXPECTATIONS[735] = new int[2]; EXPECTATIONS[735][0] = 32; EXPECTATIONS[735][1] = 90; EXPECTATIONS[736] = new int[2]; EXPECTATIONS[736][0] = 33; EXPECTATIONS[736][1] = 90; EXPECTATIONS[737] = new int[2]; EXPECTATIONS[737][0] = 34; EXPECTATIONS[737][1] = 90; EXPECTATIONS[738] = new int[2]; EXPECTATIONS[738][0] = 35; EXPECTATIONS[738][1] = 90; EXPECTATIONS[739] = new int[2]; EXPECTATIONS[739][0] = 36; EXPECTATIONS[739][1] = 90; EXPECTATIONS[740] = new int[2]; EXPECTATIONS[740][0] = 37; EXPECTATIONS[740][1] = 90; EXPECTATIONS[741] = new int[2]; EXPECTATIONS[741][0] = 38; EXPECTATIONS[741][1] = 90; EXPECTATIONS[742] = new int[3]; EXPECTATIONS[742][0] = 19; EXPECTATIONS[742][1] = 90; EXPECTATIONS[742][2] = 92; EXPECTATIONS[743] = new int[3]; EXPECTATIONS[743][0] = 20; EXPECTATIONS[743][1] = 90; EXPECTATIONS[743][2] = 93; EXPECTATIONS[744] = new int[2]; EXPECTATIONS[744][0] = 21; EXPECTATIONS[744][1] = 91; EXPECTATIONS[745] = new int[2]; EXPECTATIONS[745][0] = 22; EXPECTATIONS[745][1] = 91; EXPECTATIONS[746] = new int[2]; EXPECTATIONS[746][0] = 23; EXPECTATIONS[746][1] = 91; EXPECTATIONS[747] = new int[2]; EXPECTATIONS[747][0] = 24; EXPECTATIONS[747][1] = 91; EXPECTATIONS[748] = new int[2]; EXPECTATIONS[748][0] = 25; EXPECTATIONS[748][1] = 91; EXPECTATIONS[749] = new int[2]; EXPECTATIONS[749][0] = 26; EXPECTATIONS[749][1] = 91; EXPECTATIONS[750] = new int[2]; EXPECTATIONS[750][0] = 27; EXPECTATIONS[750][1] = 91; EXPECTATIONS[751] = new int[2]; EXPECTATIONS[751][0] = 28; EXPECTATIONS[751][1] = 91; EXPECTATIONS[752] = new int[2]; EXPECTATIONS[752][0] = 29; EXPECTATIONS[752][1] = 91; EXPECTATIONS[753] = new int[2]; EXPECTATIONS[753][0] = 30; EXPECTATIONS[753][1] = 91; EXPECTATIONS[754] = new int[2]; EXPECTATIONS[754][0] = 31; EXPECTATIONS[754][1] = 91; EXPECTATIONS[755] = new int[2]; EXPECTATIONS[755][0] = 32; EXPECTATIONS[755][1] = 91; EXPECTATIONS[756] = new int[2]; EXPECTATIONS[756][0] = 33; EXPECTATIONS[756][1] = 91; EXPECTATIONS[757] = new int[2]; EXPECTATIONS[757][0] = 34; EXPECTATIONS[757][1] = 91; EXPECTATIONS[758] = new int[2]; EXPECTATIONS[758][0] = 35; EXPECTATIONS[758][1] = 91; EXPECTATIONS[759] = new int[2]; EXPECTATIONS[759][0] = 36; EXPECTATIONS[759][1] = 91; EXPECTATIONS[760] = new int[2]; EXPECTATIONS[760][0] = 37; EXPECTATIONS[760][1] = 91; EXPECTATIONS[761] = new int[2]; EXPECTATIONS[761][0] = 38; EXPECTATIONS[761][1] = 91; EXPECTATIONS[762] = new int[3]; EXPECTATIONS[762][0] = 19; EXPECTATIONS[762][1] = 91; EXPECTATIONS[762][2] = 94; EXPECTATIONS[763] = new int[3]; EXPECTATIONS[763][0] = 20; EXPECTATIONS[763][1] = 91; EXPECTATIONS[763][2] = 95; EXPECTATIONS[764] = new int[2]; EXPECTATIONS[764][0] = 65; EXPECTATIONS[764][1] = 92; EXPECTATIONS[765] = new int[2]; EXPECTATIONS[765][0] = 66; EXPECTATIONS[765][1] = 93; EXPECTATIONS[766] = new int[2]; EXPECTATIONS[766][0] = 21; EXPECTATIONS[766][1] = 94; EXPECTATIONS[767] = new int[2]; EXPECTATIONS[767][0] = 22; EXPECTATIONS[767][1] = 94; EXPECTATIONS[768] = new int[2]; EXPECTATIONS[768][0] = 23; EXPECTATIONS[768][1] = 94; EXPECTATIONS[769] = new int[2]; EXPECTATIONS[769][0] = 24; EXPECTATIONS[769][1] = 94; EXPECTATIONS[770] = new int[2]; EXPECTATIONS[770][0] = 25; EXPECTATIONS[770][1] = 94; EXPECTATIONS[771] = new int[2]; EXPECTATIONS[771][0] = 26; EXPECTATIONS[771][1] = 94; EXPECTATIONS[772] = new int[2]; EXPECTATIONS[772][0] = 27; EXPECTATIONS[772][1] = 94; EXPECTATIONS[773] = new int[2]; EXPECTATIONS[773][0] = 28; EXPECTATIONS[773][1] = 94; EXPECTATIONS[774] = new int[2]; EXPECTATIONS[774][0] = 29; EXPECTATIONS[774][1] = 94; EXPECTATIONS[775] = new int[2]; EXPECTATIONS[775][0] = 30; EXPECTATIONS[775][1] = 94; EXPECTATIONS[776] = new int[2]; EXPECTATIONS[776][0] = 31; EXPECTATIONS[776][1] = 94; EXPECTATIONS[777] = new int[2]; EXPECTATIONS[777][0] = 32; EXPECTATIONS[777][1] = 94; EXPECTATIONS[778] = new int[2]; EXPECTATIONS[778][0] = 33; EXPECTATIONS[778][1] = 94; EXPECTATIONS[779] = new int[2]; EXPECTATIONS[779][0] = 34; EXPECTATIONS[779][1] = 94; EXPECTATIONS[780] = new int[2]; EXPECTATIONS[780][0] = 35; EXPECTATIONS[780][1] = 94; EXPECTATIONS[781] = new int[2]; EXPECTATIONS[781][0] = 36; EXPECTATIONS[781][1] = 94; EXPECTATIONS[782] = new int[2]; EXPECTATIONS[782][0] = 37; EXPECTATIONS[782][1] = 94; EXPECTATIONS[783] = new int[2]; EXPECTATIONS[783][0] = 38; EXPECTATIONS[783][1] = 94; EXPECTATIONS[784] = new int[3]; EXPECTATIONS[784][0] = 19; EXPECTATIONS[784][1] = 94; EXPECTATIONS[784][2] = 96; EXPECTATIONS[785] = new int[3]; EXPECTATIONS[785][0] = 20; EXPECTATIONS[785][1] = 94; EXPECTATIONS[785][2] = 97; EXPECTATIONS[786] = new int[2]; EXPECTATIONS[786][0] = 21; EXPECTATIONS[786][1] = 95; EXPECTATIONS[787] = new int[2]; EXPECTATIONS[787][0] = 22; EXPECTATIONS[787][1] = 95; EXPECTATIONS[788] = new int[2]; EXPECTATIONS[788][0] = 23; EXPECTATIONS[788][1] = 95; EXPECTATIONS[789] = new int[2]; EXPECTATIONS[789][0] = 24; EXPECTATIONS[789][1] = 95; EXPECTATIONS[790] = new int[2]; EXPECTATIONS[790][0] = 25; EXPECTATIONS[790][1] = 95; EXPECTATIONS[791] = new int[2]; EXPECTATIONS[791][0] = 26; EXPECTATIONS[791][1] = 95; EXPECTATIONS[792] = new int[2]; EXPECTATIONS[792][0] = 27; EXPECTATIONS[792][1] = 95; EXPECTATIONS[793] = new int[2]; EXPECTATIONS[793][0] = 28; EXPECTATIONS[793][1] = 95; EXPECTATIONS[794] = new int[2]; EXPECTATIONS[794][0] = 29; EXPECTATIONS[794][1] = 95; EXPECTATIONS[795] = new int[2]; EXPECTATIONS[795][0] = 30; EXPECTATIONS[795][1] = 95; EXPECTATIONS[796] = new int[2]; EXPECTATIONS[796][0] = 31; EXPECTATIONS[796][1] = 95; EXPECTATIONS[797] = new int[2]; EXPECTATIONS[797][0] = 32; EXPECTATIONS[797][1] = 95; EXPECTATIONS[798] = new int[2]; EXPECTATIONS[798][0] = 33; EXPECTATIONS[798][1] = 95; EXPECTATIONS[799] = new int[2]; EXPECTATIONS[799][0] = 34; EXPECTATIONS[799][1] = 95; EXPECTATIONS[800] = new int[2]; EXPECTATIONS[800][0] = 35; EXPECTATIONS[800][1] = 95; EXPECTATIONS[801] = new int[2]; EXPECTATIONS[801][0] = 36; EXPECTATIONS[801][1] = 95; EXPECTATIONS[802] = new int[2]; EXPECTATIONS[802][0] = 37; EXPECTATIONS[802][1] = 95; EXPECTATIONS[803] = new int[2]; EXPECTATIONS[803][0] = 38; EXPECTATIONS[803][1] = 95; EXPECTATIONS[804] = new int[3]; EXPECTATIONS[804][0] = 19; EXPECTATIONS[804][1] = 95; EXPECTATIONS[804][2] = 98; EXPECTATIONS[805] = new int[3]; EXPECTATIONS[805][0] = 20; EXPECTATIONS[805][1] = 95; EXPECTATIONS[805][2] = 99; EXPECTATIONS[806] = new int[2]; EXPECTATIONS[806][0] = 67; EXPECTATIONS[806][1] = 96; EXPECTATIONS[807] = new int[2]; EXPECTATIONS[807][0] = 68; EXPECTATIONS[807][1] = 97; EXPECTATIONS[808] = new int[2]; EXPECTATIONS[808][0] = 21; EXPECTATIONS[808][1] = 98; EXPECTATIONS[809] = new int[2]; EXPECTATIONS[809][0] = 22; EXPECTATIONS[809][1] = 98; EXPECTATIONS[810] = new int[2]; EXPECTATIONS[810][0] = 23; EXPECTATIONS[810][1] = 98; EXPECTATIONS[811] = new int[2]; EXPECTATIONS[811][0] = 24; EXPECTATIONS[811][1] = 98; EXPECTATIONS[812] = new int[2]; EXPECTATIONS[812][0] = 25; EXPECTATIONS[812][1] = 98; EXPECTATIONS[813] = new int[2]; EXPECTATIONS[813][0] = 26; EXPECTATIONS[813][1] = 98; EXPECTATIONS[814] = new int[2]; EXPECTATIONS[814][0] = 27; EXPECTATIONS[814][1] = 98; EXPECTATIONS[815] = new int[2]; EXPECTATIONS[815][0] = 28; EXPECTATIONS[815][1] = 98; EXPECTATIONS[816] = new int[2]; EXPECTATIONS[816][0] = 29; EXPECTATIONS[816][1] = 98; EXPECTATIONS[817] = new int[2]; EXPECTATIONS[817][0] = 30; EXPECTATIONS[817][1] = 98; EXPECTATIONS[818] = new int[2]; EXPECTATIONS[818][0] = 31; EXPECTATIONS[818][1] = 98; EXPECTATIONS[819] = new int[2]; EXPECTATIONS[819][0] = 32; EXPECTATIONS[819][1] = 98; EXPECTATIONS[820] = new int[2]; EXPECTATIONS[820][0] = 33; EXPECTATIONS[820][1] = 98; EXPECTATIONS[821] = new int[2]; EXPECTATIONS[821][0] = 34; EXPECTATIONS[821][1] = 98; EXPECTATIONS[822] = new int[2]; EXPECTATIONS[822][0] = 35; EXPECTATIONS[822][1] = 98; EXPECTATIONS[823] = new int[2]; EXPECTATIONS[823][0] = 36; EXPECTATIONS[823][1] = 98; EXPECTATIONS[824] = new int[2]; EXPECTATIONS[824][0] = 37; EXPECTATIONS[824][1] = 98; EXPECTATIONS[825] = new int[2]; EXPECTATIONS[825][0] = 38; EXPECTATIONS[825][1] = 98; EXPECTATIONS[826] = new int[3]; EXPECTATIONS[826][0] = 19; EXPECTATIONS[826][1] = 98; EXPECTATIONS[826][2] = 100; EXPECTATIONS[827] = new int[3]; EXPECTATIONS[827][0] = 20; EXPECTATIONS[827][1] = 98; EXPECTATIONS[827][2] = 101; EXPECTATIONS[828] = new int[2]; EXPECTATIONS[828][0] = 21; EXPECTATIONS[828][1] = 99; EXPECTATIONS[829] = new int[2]; EXPECTATIONS[829][0] = 22; EXPECTATIONS[829][1] = 99; EXPECTATIONS[830] = new int[2]; EXPECTATIONS[830][0] = 23; EXPECTATIONS[830][1] = 99; EXPECTATIONS[831] = new int[2]; EXPECTATIONS[831][0] = 24; EXPECTATIONS[831][1] = 99; EXPECTATIONS[832] = new int[2]; EXPECTATIONS[832][0] = 25; EXPECTATIONS[832][1] = 99; EXPECTATIONS[833] = new int[2]; EXPECTATIONS[833][0] = 26; EXPECTATIONS[833][1] = 99; EXPECTATIONS[834] = new int[2]; EXPECTATIONS[834][0] = 27; EXPECTATIONS[834][1] = 99; EXPECTATIONS[835] = new int[2]; EXPECTATIONS[835][0] = 28; EXPECTATIONS[835][1] = 99; EXPECTATIONS[836] = new int[2]; EXPECTATIONS[836][0] = 29; EXPECTATIONS[836][1] = 99; EXPECTATIONS[837] = new int[2]; EXPECTATIONS[837][0] = 30; EXPECTATIONS[837][1] = 99; EXPECTATIONS[838] = new int[2]; EXPECTATIONS[838][0] = 31; EXPECTATIONS[838][1] = 99; EXPECTATIONS[839] = new int[2]; EXPECTATIONS[839][0] = 32; EXPECTATIONS[839][1] = 99; EXPECTATIONS[840] = new int[2]; EXPECTATIONS[840][0] = 33; EXPECTATIONS[840][1] = 99; EXPECTATIONS[841] = new int[2]; EXPECTATIONS[841][0] = 34; EXPECTATIONS[841][1] = 99; EXPECTATIONS[842] = new int[2]; EXPECTATIONS[842][0] = 35; EXPECTATIONS[842][1] = 99; EXPECTATIONS[843] = new int[2]; EXPECTATIONS[843][0] = 36; EXPECTATIONS[843][1] = 99; EXPECTATIONS[844] = new int[2]; EXPECTATIONS[844][0] = 37; EXPECTATIONS[844][1] = 99; EXPECTATIONS[845] = new int[2]; EXPECTATIONS[845][0] = 38; EXPECTATIONS[845][1] = 99; EXPECTATIONS[846] = new int[3]; EXPECTATIONS[846][0] = 19; EXPECTATIONS[846][1] = 99; EXPECTATIONS[846][2] = 102; EXPECTATIONS[847] = new int[3]; EXPECTATIONS[847][0] = 20; EXPECTATIONS[847][1] = 99; EXPECTATIONS[847][2] = 103; EXPECTATIONS[848] = new int[2]; EXPECTATIONS[848][0] = 69; EXPECTATIONS[848][1] = 100; EXPECTATIONS[849] = new int[2]; EXPECTATIONS[849][0] = 70; EXPECTATIONS[849][1] = 101; EXPECTATIONS[850] = new int[2]; EXPECTATIONS[850][0] = 21; EXPECTATIONS[850][1] = 102; EXPECTATIONS[851] = new int[2]; EXPECTATIONS[851][0] = 22; EXPECTATIONS[851][1] = 102; EXPECTATIONS[852] = new int[2]; EXPECTATIONS[852][0] = 23; EXPECTATIONS[852][1] = 102; EXPECTATIONS[853] = new int[2]; EXPECTATIONS[853][0] = 24; EXPECTATIONS[853][1] = 102; EXPECTATIONS[854] = new int[2]; EXPECTATIONS[854][0] = 25; EXPECTATIONS[854][1] = 102; EXPECTATIONS[855] = new int[2]; EXPECTATIONS[855][0] = 26; EXPECTATIONS[855][1] = 102; EXPECTATIONS[856] = new int[2]; EXPECTATIONS[856][0] = 27; EXPECTATIONS[856][1] = 102; EXPECTATIONS[857] = new int[2]; EXPECTATIONS[857][0] = 28; EXPECTATIONS[857][1] = 102; EXPECTATIONS[858] = new int[2]; EXPECTATIONS[858][0] = 29; EXPECTATIONS[858][1] = 102; EXPECTATIONS[859] = new int[2]; EXPECTATIONS[859][0] = 30; EXPECTATIONS[859][1] = 102; EXPECTATIONS[860] = new int[2]; EXPECTATIONS[860][0] = 31; EXPECTATIONS[860][1] = 102; EXPECTATIONS[861] = new int[2]; EXPECTATIONS[861][0] = 32; EXPECTATIONS[861][1] = 102; EXPECTATIONS[862] = new int[2]; EXPECTATIONS[862][0] = 33; EXPECTATIONS[862][1] = 102; EXPECTATIONS[863] = new int[2]; EXPECTATIONS[863][0] = 34; EXPECTATIONS[863][1] = 102; EXPECTATIONS[864] = new int[2]; EXPECTATIONS[864][0] = 35; EXPECTATIONS[864][1] = 102; EXPECTATIONS[865] = new int[2]; EXPECTATIONS[865][0] = 36; EXPECTATIONS[865][1] = 102; EXPECTATIONS[866] = new int[2]; EXPECTATIONS[866][0] = 37; EXPECTATIONS[866][1] = 102; EXPECTATIONS[867] = new int[2]; EXPECTATIONS[867][0] = 38; EXPECTATIONS[867][1] = 102; EXPECTATIONS[868] = new int[3]; EXPECTATIONS[868][0] = 19; EXPECTATIONS[868][1] = 102; EXPECTATIONS[868][2] = 104; EXPECTATIONS[869] = new int[3]; EXPECTATIONS[869][0] = 20; EXPECTATIONS[869][1] = 102; EXPECTATIONS[869][2] = 105; EXPECTATIONS[870] = new int[2]; EXPECTATIONS[870][0] = 21; EXPECTATIONS[870][1] = 103; EXPECTATIONS[871] = new int[2]; EXPECTATIONS[871][0] = 22; EXPECTATIONS[871][1] = 103; EXPECTATIONS[872] = new int[2]; EXPECTATIONS[872][0] = 23; EXPECTATIONS[872][1] = 103; EXPECTATIONS[873] = new int[2]; EXPECTATIONS[873][0] = 24; EXPECTATIONS[873][1] = 103; EXPECTATIONS[874] = new int[2]; EXPECTATIONS[874][0] = 25; EXPECTATIONS[874][1] = 103; EXPECTATIONS[875] = new int[2]; EXPECTATIONS[875][0] = 26; EXPECTATIONS[875][1] = 103; EXPECTATIONS[876] = new int[2]; EXPECTATIONS[876][0] = 27; EXPECTATIONS[876][1] = 103; EXPECTATIONS[877] = new int[2]; EXPECTATIONS[877][0] = 28; EXPECTATIONS[877][1] = 103; EXPECTATIONS[878] = new int[2]; EXPECTATIONS[878][0] = 29; EXPECTATIONS[878][1] = 103; EXPECTATIONS[879] = new int[2]; EXPECTATIONS[879][0] = 30; EXPECTATIONS[879][1] = 103; EXPECTATIONS[880] = new int[2]; EXPECTATIONS[880][0] = 31; EXPECTATIONS[880][1] = 103; EXPECTATIONS[881] = new int[2]; EXPECTATIONS[881][0] = 32; EXPECTATIONS[881][1] = 103; EXPECTATIONS[882] = new int[2]; EXPECTATIONS[882][0] = 33; EXPECTATIONS[882][1] = 103; EXPECTATIONS[883] = new int[2]; EXPECTATIONS[883][0] = 34; EXPECTATIONS[883][1] = 103; EXPECTATIONS[884] = new int[2]; EXPECTATIONS[884][0] = 35; EXPECTATIONS[884][1] = 103; EXPECTATIONS[885] = new int[2]; EXPECTATIONS[885][0] = 36; EXPECTATIONS[885][1] = 103; EXPECTATIONS[886] = new int[2]; EXPECTATIONS[886][0] = 37; EXPECTATIONS[886][1] = 103; EXPECTATIONS[887] = new int[2]; EXPECTATIONS[887][0] = 38; EXPECTATIONS[887][1] = 103; EXPECTATIONS[888] = new int[3]; EXPECTATIONS[888][0] = 19; EXPECTATIONS[888][1] = 103; EXPECTATIONS[888][2] = 106; EXPECTATIONS[889] = new int[3]; EXPECTATIONS[889][0] = 20; EXPECTATIONS[889][1] = 103; EXPECTATIONS[889][2] = 107; EXPECTATIONS[890] = new int[2]; EXPECTATIONS[890][0] = 71; EXPECTATIONS[890][1] = 104; EXPECTATIONS[891] = new int[2]; EXPECTATIONS[891][0] = 72; EXPECTATIONS[891][1] = 105; EXPECTATIONS[892] = new int[2]; EXPECTATIONS[892][0] = 21; EXPECTATIONS[892][1] = 106; EXPECTATIONS[893] = new int[2]; EXPECTATIONS[893][0] = 22; EXPECTATIONS[893][1] = 106; EXPECTATIONS[894] = new int[2]; EXPECTATIONS[894][0] = 23; EXPECTATIONS[894][1] = 106; EXPECTATIONS[895] = new int[2]; EXPECTATIONS[895][0] = 24; EXPECTATIONS[895][1] = 106; EXPECTATIONS[896] = new int[2]; EXPECTATIONS[896][0] = 25; EXPECTATIONS[896][1] = 106; EXPECTATIONS[897] = new int[2]; EXPECTATIONS[897][0] = 26; EXPECTATIONS[897][1] = 106; EXPECTATIONS[898] = new int[2]; EXPECTATIONS[898][0] = 27; EXPECTATIONS[898][1] = 106; EXPECTATIONS[899] = new int[2]; EXPECTATIONS[899][0] = 28; EXPECTATIONS[899][1] = 106; EXPECTATIONS[900] = new int[2]; EXPECTATIONS[900][0] = 29; EXPECTATIONS[900][1] = 106; EXPECTATIONS[901] = new int[2]; EXPECTATIONS[901][0] = 30; EXPECTATIONS[901][1] = 106; EXPECTATIONS[902] = new int[2]; EXPECTATIONS[902][0] = 31; EXPECTATIONS[902][1] = 106; EXPECTATIONS[903] = new int[2]; EXPECTATIONS[903][0] = 32; EXPECTATIONS[903][1] = 106; EXPECTATIONS[904] = new int[2]; EXPECTATIONS[904][0] = 33; EXPECTATIONS[904][1] = 106; EXPECTATIONS[905] = new int[2]; EXPECTATIONS[905][0] = 34; EXPECTATIONS[905][1] = 106; EXPECTATIONS[906] = new int[2]; EXPECTATIONS[906][0] = 35; EXPECTATIONS[906][1] = 106; EXPECTATIONS[907] = new int[2]; EXPECTATIONS[907][0] = 36; EXPECTATIONS[907][1] = 106; EXPECTATIONS[908] = new int[2]; EXPECTATIONS[908][0] = 37; EXPECTATIONS[908][1] = 106; EXPECTATIONS[909] = new int[2]; EXPECTATIONS[909][0] = 38; EXPECTATIONS[909][1] = 106; EXPECTATIONS[910] = new int[3]; EXPECTATIONS[910][0] = 19; EXPECTATIONS[910][1] = 106; EXPECTATIONS[910][2] = 108; EXPECTATIONS[911] = new int[3]; EXPECTATIONS[911][0] = 20; EXPECTATIONS[911][1] = 106; EXPECTATIONS[911][2] = 109; EXPECTATIONS[912] = new int[2]; EXPECTATIONS[912][0] = 21; EXPECTATIONS[912][1] = 107; EXPECTATIONS[913] = new int[2]; EXPECTATIONS[913][0] = 22; EXPECTATIONS[913][1] = 107; EXPECTATIONS[914] = new int[2]; EXPECTATIONS[914][0] = 23; EXPECTATIONS[914][1] = 107; EXPECTATIONS[915] = new int[2]; EXPECTATIONS[915][0] = 24; EXPECTATIONS[915][1] = 107; EXPECTATIONS[916] = new int[2]; EXPECTATIONS[916][0] = 25; EXPECTATIONS[916][1] = 107; EXPECTATIONS[917] = new int[2]; EXPECTATIONS[917][0] = 26; EXPECTATIONS[917][1] = 107; EXPECTATIONS[918] = new int[2]; EXPECTATIONS[918][0] = 27; EXPECTATIONS[918][1] = 107; EXPECTATIONS[919] = new int[2]; EXPECTATIONS[919][0] = 28; EXPECTATIONS[919][1] = 107; EXPECTATIONS[920] = new int[2]; EXPECTATIONS[920][0] = 29; EXPECTATIONS[920][1] = 107; EXPECTATIONS[921] = new int[2]; EXPECTATIONS[921][0] = 30; EXPECTATIONS[921][1] = 107; EXPECTATIONS[922] = new int[2]; EXPECTATIONS[922][0] = 31; EXPECTATIONS[922][1] = 107; EXPECTATIONS[923] = new int[2]; EXPECTATIONS[923][0] = 32; EXPECTATIONS[923][1] = 107; EXPECTATIONS[924] = new int[2]; EXPECTATIONS[924][0] = 33; EXPECTATIONS[924][1] = 107; EXPECTATIONS[925] = new int[2]; EXPECTATIONS[925][0] = 34; EXPECTATIONS[925][1] = 107; EXPECTATIONS[926] = new int[2]; EXPECTATIONS[926][0] = 35; EXPECTATIONS[926][1] = 107; EXPECTATIONS[927] = new int[2]; EXPECTATIONS[927][0] = 36; EXPECTATIONS[927][1] = 107; EXPECTATIONS[928] = new int[2]; EXPECTATIONS[928][0] = 37; EXPECTATIONS[928][1] = 107; EXPECTATIONS[929] = new int[2]; EXPECTATIONS[929][0] = 38; EXPECTATIONS[929][1] = 107; EXPECTATIONS[930] = new int[3]; EXPECTATIONS[930][0] = 19; EXPECTATIONS[930][1] = 107; EXPECTATIONS[930][2] = 110; EXPECTATIONS[931] = new int[3]; EXPECTATIONS[931][0] = 20; EXPECTATIONS[931][1] = 107; EXPECTATIONS[931][2] = 111; EXPECTATIONS[932] = new int[2]; EXPECTATIONS[932][0] = 73; EXPECTATIONS[932][1] = 108; EXPECTATIONS[933] = new int[2]; EXPECTATIONS[933][0] = 74; EXPECTATIONS[933][1] = 109; EXPECTATIONS[934] = new int[2]; EXPECTATIONS[934][0] = 21; EXPECTATIONS[934][1] = 110; EXPECTATIONS[935] = new int[2]; EXPECTATIONS[935][0] = 22; EXPECTATIONS[935][1] = 110; EXPECTATIONS[936] = new int[2]; EXPECTATIONS[936][0] = 23; EXPECTATIONS[936][1] = 110; EXPECTATIONS[937] = new int[2]; EXPECTATIONS[937][0] = 24; EXPECTATIONS[937][1] = 110; EXPECTATIONS[938] = new int[2]; EXPECTATIONS[938][0] = 25; EXPECTATIONS[938][1] = 110; EXPECTATIONS[939] = new int[2]; EXPECTATIONS[939][0] = 26; EXPECTATIONS[939][1] = 110; EXPECTATIONS[940] = new int[2]; EXPECTATIONS[940][0] = 27; EXPECTATIONS[940][1] = 110; EXPECTATIONS[941] = new int[2]; EXPECTATIONS[941][0] = 28; EXPECTATIONS[941][1] = 110; EXPECTATIONS[942] = new int[2]; EXPECTATIONS[942][0] = 29; EXPECTATIONS[942][1] = 110; EXPECTATIONS[943] = new int[2]; EXPECTATIONS[943][0] = 30; EXPECTATIONS[943][1] = 110; EXPECTATIONS[944] = new int[2]; EXPECTATIONS[944][0] = 31; EXPECTATIONS[944][1] = 110; EXPECTATIONS[945] = new int[2]; EXPECTATIONS[945][0] = 32; EXPECTATIONS[945][1] = 110; EXPECTATIONS[946] = new int[2]; EXPECTATIONS[946][0] = 33; EXPECTATIONS[946][1] = 110; EXPECTATIONS[947] = new int[2]; EXPECTATIONS[947][0] = 34; EXPECTATIONS[947][1] = 110; EXPECTATIONS[948] = new int[2]; EXPECTATIONS[948][0] = 35; EXPECTATIONS[948][1] = 110; EXPECTATIONS[949] = new int[2]; EXPECTATIONS[949][0] = 36; EXPECTATIONS[949][1] = 110; EXPECTATIONS[950] = new int[2]; EXPECTATIONS[950][0] = 37; EXPECTATIONS[950][1] = 110; EXPECTATIONS[951] = new int[2]; EXPECTATIONS[951][0] = 38; EXPECTATIONS[951][1] = 110; EXPECTATIONS[952] = new int[3]; EXPECTATIONS[952][0] = 19; EXPECTATIONS[952][1] = 110; EXPECTATIONS[952][2] = 112; EXPECTATIONS[953] = new int[3]; EXPECTATIONS[953][0] = 20; EXPECTATIONS[953][1] = 110; EXPECTATIONS[953][2] = 113; EXPECTATIONS[954] = new int[2]; EXPECTATIONS[954][0] = 21; EXPECTATIONS[954][1] = 111; EXPECTATIONS[955] = new int[2]; EXPECTATIONS[955][0] = 22; EXPECTATIONS[955][1] = 111; EXPECTATIONS[956] = new int[2]; EXPECTATIONS[956][0] = 23; EXPECTATIONS[956][1] = 111; EXPECTATIONS[957] = new int[2]; EXPECTATIONS[957][0] = 24; EXPECTATIONS[957][1] = 111; EXPECTATIONS[958] = new int[2]; EXPECTATIONS[958][0] = 25; EXPECTATIONS[958][1] = 111; EXPECTATIONS[959] = new int[2]; EXPECTATIONS[959][0] = 26; EXPECTATIONS[959][1] = 111; EXPECTATIONS[960] = new int[2]; EXPECTATIONS[960][0] = 27; EXPECTATIONS[960][1] = 111; EXPECTATIONS[961] = new int[2]; EXPECTATIONS[961][0] = 28; EXPECTATIONS[961][1] = 111; EXPECTATIONS[962] = new int[2]; EXPECTATIONS[962][0] = 29; EXPECTATIONS[962][1] = 111; EXPECTATIONS[963] = new int[2]; EXPECTATIONS[963][0] = 30; EXPECTATIONS[963][1] = 111; EXPECTATIONS[964] = new int[2]; EXPECTATIONS[964][0] = 31; EXPECTATIONS[964][1] = 111; EXPECTATIONS[965] = new int[2]; EXPECTATIONS[965][0] = 32; EXPECTATIONS[965][1] = 111; EXPECTATIONS[966] = new int[2]; EXPECTATIONS[966][0] = 33; EXPECTATIONS[966][1] = 111; EXPECTATIONS[967] = new int[2]; EXPECTATIONS[967][0] = 34; EXPECTATIONS[967][1] = 111; EXPECTATIONS[968] = new int[2]; EXPECTATIONS[968][0] = 35; EXPECTATIONS[968][1] = 111; EXPECTATIONS[969] = new int[2]; EXPECTATIONS[969][0] = 36; EXPECTATIONS[969][1] = 111; EXPECTATIONS[970] = new int[2]; EXPECTATIONS[970][0] = 37; EXPECTATIONS[970][1] = 111; EXPECTATIONS[971] = new int[2]; EXPECTATIONS[971][0] = 38; EXPECTATIONS[971][1] = 111; EXPECTATIONS[972] = new int[3]; EXPECTATIONS[972][0] = 19; EXPECTATIONS[972][1] = 111; EXPECTATIONS[972][2] = 114; EXPECTATIONS[973] = new int[3]; EXPECTATIONS[973][0] = 20; EXPECTATIONS[973][1] = 111; EXPECTATIONS[973][2] = 115; EXPECTATIONS[974] = new int[2]; EXPECTATIONS[974][0] = 21; EXPECTATIONS[974][1] = 112; EXPECTATIONS[975] = new int[2]; EXPECTATIONS[975][0] = 22; EXPECTATIONS[975][1] = 112; EXPECTATIONS[976] = new int[2]; EXPECTATIONS[976][0] = 23; EXPECTATIONS[976][1] = 112; EXPECTATIONS[977] = new int[2]; EXPECTATIONS[977][0] = 24; EXPECTATIONS[977][1] = 112; EXPECTATIONS[978] = new int[2]; EXPECTATIONS[978][0] = 25; EXPECTATIONS[978][1] = 112; EXPECTATIONS[979] = new int[2]; EXPECTATIONS[979][0] = 26; EXPECTATIONS[979][1] = 112; EXPECTATIONS[980] = new int[2]; EXPECTATIONS[980][0] = 27; EXPECTATIONS[980][1] = 112; EXPECTATIONS[981] = new int[2]; EXPECTATIONS[981][0] = 28; EXPECTATIONS[981][1] = 112; EXPECTATIONS[982] = new int[2]; EXPECTATIONS[982][0] = 29; EXPECTATIONS[982][1] = 112; EXPECTATIONS[983] = new int[2]; EXPECTATIONS[983][0] = 30; EXPECTATIONS[983][1] = 112; EXPECTATIONS[984] = new int[2]; EXPECTATIONS[984][0] = 31; EXPECTATIONS[984][1] = 112; EXPECTATIONS[985] = new int[2]; EXPECTATIONS[985][0] = 32; EXPECTATIONS[985][1] = 112; EXPECTATIONS[986] = new int[2]; EXPECTATIONS[986][0] = 33; EXPECTATIONS[986][1] = 112; EXPECTATIONS[987] = new int[2]; EXPECTATIONS[987][0] = 34; EXPECTATIONS[987][1] = 112; EXPECTATIONS[988] = new int[2]; EXPECTATIONS[988][0] = 35; EXPECTATIONS[988][1] = 112; EXPECTATIONS[989] = new int[2]; EXPECTATIONS[989][0] = 36; EXPECTATIONS[989][1] = 112; EXPECTATIONS[990] = new int[2]; EXPECTATIONS[990][0] = 37; EXPECTATIONS[990][1] = 112; EXPECTATIONS[991] = new int[2]; EXPECTATIONS[991][0] = 38; EXPECTATIONS[991][1] = 112; EXPECTATIONS[992] = new int[3]; EXPECTATIONS[992][0] = 19; EXPECTATIONS[992][1] = 112; EXPECTATIONS[992][2] = 116; EXPECTATIONS[993] = new int[3]; EXPECTATIONS[993][0] = 20; EXPECTATIONS[993][1] = 112; EXPECTATIONS[993][2] = 117; EXPECTATIONS[994] = new int[2]; EXPECTATIONS[994][0] = 75; EXPECTATIONS[994][1] = 113; EXPECTATIONS[995] = new int[2]; EXPECTATIONS[995][0] = 76; EXPECTATIONS[995][1] = 114; EXPECTATIONS[996] = new int[2]; EXPECTATIONS[996][0] = 77; EXPECTATIONS[996][1] = 114; EXPECTATIONS[997] = new int[2]; EXPECTATIONS[997][0] = 78; EXPECTATIONS[997][1] = 114; EXPECTATIONS[998] = new int[2]; EXPECTATIONS[998][0] = 79; EXPECTATIONS[998][1] = 114; EXPECTATIONS[999] = new int[2]; EXPECTATIONS[999][0] = 80; EXPECTATIONS[999][1] = 114; EXPECTATIONS[1000] = new int[2]; EXPECTATIONS[1000][0] = 81; EXPECTATIONS[1000][1] = 114; EXPECTATIONS[1001] = new int[2]; EXPECTATIONS[1001][0] = 82; EXPECTATIONS[1001][1] = 114; EXPECTATIONS[1002] = new int[2]; EXPECTATIONS[1002][0] = 83; EXPECTATIONS[1002][1] = 114; EXPECTATIONS[1003] = new int[2]; EXPECTATIONS[1003][0] = 84; EXPECTATIONS[1003][1] = 114; EXPECTATIONS[1004] = new int[3]; EXPECTATIONS[1004][0] = 19; EXPECTATIONS[1004][1] = 114; EXPECTATIONS[1004][2] = 118; EXPECTATIONS[1005] = new int[3]; EXPECTATIONS[1005][0] = 20; EXPECTATIONS[1005][1] = 114; EXPECTATIONS[1005][2] = 119; EXPECTATIONS[1006] = new int[2]; EXPECTATIONS[1006][0] = 85; EXPECTATIONS[1006][1] = 115; EXPECTATIONS[1007] = new int[2]; EXPECTATIONS[1007][0] = 86; EXPECTATIONS[1007][1] = 116; EXPECTATIONS[1008] = new int[2]; EXPECTATIONS[1008][0] = 76; EXPECTATIONS[1008][1] = 117; EXPECTATIONS[1009] = new int[2]; EXPECTATIONS[1009][0] = 77; EXPECTATIONS[1009][1] = 117; EXPECTATIONS[1010] = new int[2]; EXPECTATIONS[1010][0] = 78; EXPECTATIONS[1010][1] = 117; EXPECTATIONS[1011] = new int[2]; EXPECTATIONS[1011][0] = 79; EXPECTATIONS[1011][1] = 117; EXPECTATIONS[1012] = new int[2]; EXPECTATIONS[1012][0] = 80; EXPECTATIONS[1012][1] = 117; EXPECTATIONS[1013] = new int[2]; EXPECTATIONS[1013][0] = 81; EXPECTATIONS[1013][1] = 117; EXPECTATIONS[1014] = new int[2]; EXPECTATIONS[1014][0] = 82; EXPECTATIONS[1014][1] = 117; EXPECTATIONS[1015] = new int[2]; EXPECTATIONS[1015][0] = 83; EXPECTATIONS[1015][1] = 117; EXPECTATIONS[1016] = new int[2]; EXPECTATIONS[1016][0] = 84; EXPECTATIONS[1016][1] = 117; EXPECTATIONS[1017] = new int[3]; EXPECTATIONS[1017][0] = 19; EXPECTATIONS[1017][1] = 117; EXPECTATIONS[1017][2] = 120; EXPECTATIONS[1018] = new int[3]; EXPECTATIONS[1018][0] = 20; EXPECTATIONS[1018][1] = 117; EXPECTATIONS[1018][2] = 121; EXPECTATIONS[1019] = new int[2]; EXPECTATIONS[1019][0] = 76; EXPECTATIONS[1019][1] = 118; EXPECTATIONS[1020] = new int[2]; EXPECTATIONS[1020][0] = 77; EXPECTATIONS[1020][1] = 118; EXPECTATIONS[1021] = new int[2]; EXPECTATIONS[1021][0] = 78; EXPECTATIONS[1021][1] = 118; EXPECTATIONS[1022] = new int[2]; EXPECTATIONS[1022][0] = 79; EXPECTATIONS[1022][1] = 118; EXPECTATIONS[1023] = new int[2]; EXPECTATIONS[1023][0] = 80; EXPECTATIONS[1023][1] = 118; EXPECTATIONS[1024] = new int[2]; EXPECTATIONS[1024][0] = 81; EXPECTATIONS[1024][1] = 118; EXPECTATIONS[1025] = new int[2]; EXPECTATIONS[1025][0] = 82; EXPECTATIONS[1025][1] = 118; EXPECTATIONS[1026] = new int[2]; EXPECTATIONS[1026][0] = 83; EXPECTATIONS[1026][1] = 118; EXPECTATIONS[1027] = new int[2]; EXPECTATIONS[1027][0] = 84; EXPECTATIONS[1027][1] = 118; EXPECTATIONS[1028] = new int[3]; EXPECTATIONS[1028][0] = 19; EXPECTATIONS[1028][1] = 118; EXPECTATIONS[1028][2] = 122; EXPECTATIONS[1029] = new int[3]; EXPECTATIONS[1029][0] = 20; EXPECTATIONS[1029][1] = 118; EXPECTATIONS[1029][2] = 123; EXPECTATIONS[1030] = new int[2]; EXPECTATIONS[1030][0] = 87; EXPECTATIONS[1030][1] = 119; EXPECTATIONS[1031] = new int[2]; EXPECTATIONS[1031][0] = 88; EXPECTATIONS[1031][1] = 120; EXPECTATIONS[1032] = new int[2]; EXPECTATIONS[1032][0] = 76; EXPECTATIONS[1032][1] = 121; EXPECTATIONS[1033] = new int[2]; EXPECTATIONS[1033][0] = 77; EXPECTATIONS[1033][1] = 121; } public static void initialize1() { EXPECTATIONS[1034] = new int[2]; EXPECTATIONS[1034][0] = 78; EXPECTATIONS[1034][1] = 121; EXPECTATIONS[1035] = new int[2]; EXPECTATIONS[1035][0] = 79; EXPECTATIONS[1035][1] = 121; EXPECTATIONS[1036] = new int[2]; EXPECTATIONS[1036][0] = 80; EXPECTATIONS[1036][1] = 121; EXPECTATIONS[1037] = new int[2]; EXPECTATIONS[1037][0] = 81; EXPECTATIONS[1037][1] = 121; EXPECTATIONS[1038] = new int[2]; EXPECTATIONS[1038][0] = 82; EXPECTATIONS[1038][1] = 121; EXPECTATIONS[1039] = new int[2]; EXPECTATIONS[1039][0] = 83; EXPECTATIONS[1039][1] = 121; EXPECTATIONS[1040] = new int[2]; EXPECTATIONS[1040][0] = 84; EXPECTATIONS[1040][1] = 121; EXPECTATIONS[1041] = new int[3]; EXPECTATIONS[1041][0] = 19; EXPECTATIONS[1041][1] = 121; EXPECTATIONS[1041][2] = 124; EXPECTATIONS[1042] = new int[3]; EXPECTATIONS[1042][0] = 20; EXPECTATIONS[1042][1] = 121; EXPECTATIONS[1042][2] = 125; EXPECTATIONS[1043] = new int[2]; EXPECTATIONS[1043][0] = 76; EXPECTATIONS[1043][1] = 122; EXPECTATIONS[1044] = new int[2]; EXPECTATIONS[1044][0] = 77; EXPECTATIONS[1044][1] = 122; EXPECTATIONS[1045] = new int[2]; EXPECTATIONS[1045][0] = 78; EXPECTATIONS[1045][1] = 122; EXPECTATIONS[1046] = new int[2]; EXPECTATIONS[1046][0] = 79; EXPECTATIONS[1046][1] = 122; EXPECTATIONS[1047] = new int[2]; EXPECTATIONS[1047][0] = 80; EXPECTATIONS[1047][1] = 122; EXPECTATIONS[1048] = new int[2]; EXPECTATIONS[1048][0] = 81; EXPECTATIONS[1048][1] = 122; EXPECTATIONS[1049] = new int[2]; EXPECTATIONS[1049][0] = 82; EXPECTATIONS[1049][1] = 122; EXPECTATIONS[1050] = new int[2]; EXPECTATIONS[1050][0] = 83; EXPECTATIONS[1050][1] = 122; EXPECTATIONS[1051] = new int[2]; EXPECTATIONS[1051][0] = 84; EXPECTATIONS[1051][1] = 122; EXPECTATIONS[1052] = new int[3]; EXPECTATIONS[1052][0] = 19; EXPECTATIONS[1052][1] = 122; EXPECTATIONS[1052][2] = 126; EXPECTATIONS[1053] = new int[3]; EXPECTATIONS[1053][0] = 20; EXPECTATIONS[1053][1] = 122; EXPECTATIONS[1053][2] = 127; EXPECTATIONS[1054] = new int[2]; EXPECTATIONS[1054][0] = 89; EXPECTATIONS[1054][1] = 123; EXPECTATIONS[1055] = new int[2]; EXPECTATIONS[1055][0] = 90; EXPECTATIONS[1055][1] = 124; EXPECTATIONS[1056] = new int[2]; EXPECTATIONS[1056][0] = 76; EXPECTATIONS[1056][1] = 125; EXPECTATIONS[1057] = new int[2]; EXPECTATIONS[1057][0] = 77; EXPECTATIONS[1057][1] = 125; EXPECTATIONS[1058] = new int[2]; EXPECTATIONS[1058][0] = 78; EXPECTATIONS[1058][1] = 125; EXPECTATIONS[1059] = new int[2]; EXPECTATIONS[1059][0] = 79; EXPECTATIONS[1059][1] = 125; EXPECTATIONS[1060] = new int[2]; EXPECTATIONS[1060][0] = 80; EXPECTATIONS[1060][1] = 125; EXPECTATIONS[1061] = new int[2]; EXPECTATIONS[1061][0] = 81; EXPECTATIONS[1061][1] = 125; EXPECTATIONS[1062] = new int[2]; EXPECTATIONS[1062][0] = 82; EXPECTATIONS[1062][1] = 125; EXPECTATIONS[1063] = new int[2]; EXPECTATIONS[1063][0] = 83; EXPECTATIONS[1063][1] = 125; EXPECTATIONS[1064] = new int[2]; EXPECTATIONS[1064][0] = 84; EXPECTATIONS[1064][1] = 125; EXPECTATIONS[1065] = new int[3]; EXPECTATIONS[1065][0] = 19; EXPECTATIONS[1065][1] = 125; EXPECTATIONS[1065][2] = 128; EXPECTATIONS[1066] = new int[3]; EXPECTATIONS[1066][0] = 20; EXPECTATIONS[1066][1] = 125; EXPECTATIONS[1066][2] = 129; EXPECTATIONS[1067] = new int[2]; EXPECTATIONS[1067][0] = 76; EXPECTATIONS[1067][1] = 126; EXPECTATIONS[1068] = new int[2]; EXPECTATIONS[1068][0] = 77; EXPECTATIONS[1068][1] = 126; EXPECTATIONS[1069] = new int[2]; EXPECTATIONS[1069][0] = 78; EXPECTATIONS[1069][1] = 126; EXPECTATIONS[1070] = new int[2]; EXPECTATIONS[1070][0] = 79; EXPECTATIONS[1070][1] = 126; EXPECTATIONS[1071] = new int[2]; EXPECTATIONS[1071][0] = 80; EXPECTATIONS[1071][1] = 126; EXPECTATIONS[1072] = new int[2]; EXPECTATIONS[1072][0] = 81; EXPECTATIONS[1072][1] = 126; EXPECTATIONS[1073] = new int[2]; EXPECTATIONS[1073][0] = 82; EXPECTATIONS[1073][1] = 126; EXPECTATIONS[1074] = new int[2]; EXPECTATIONS[1074][0] = 83; EXPECTATIONS[1074][1] = 126; EXPECTATIONS[1075] = new int[2]; EXPECTATIONS[1075][0] = 84; EXPECTATIONS[1075][1] = 126; EXPECTATIONS[1076] = new int[3]; EXPECTATIONS[1076][0] = 19; EXPECTATIONS[1076][1] = 126; EXPECTATIONS[1076][2] = 130; EXPECTATIONS[1077] = new int[3]; EXPECTATIONS[1077][0] = 20; EXPECTATIONS[1077][1] = 126; EXPECTATIONS[1077][2] = 131; EXPECTATIONS[1078] = new int[2]; EXPECTATIONS[1078][0] = 91; EXPECTATIONS[1078][1] = 127; EXPECTATIONS[1079] = new int[2]; EXPECTATIONS[1079][0] = 92; EXPECTATIONS[1079][1] = 128; EXPECTATIONS[1080] = new int[2]; EXPECTATIONS[1080][0] = 76; EXPECTATIONS[1080][1] = 129; EXPECTATIONS[1081] = new int[2]; EXPECTATIONS[1081][0] = 77; EXPECTATIONS[1081][1] = 129; EXPECTATIONS[1082] = new int[2]; EXPECTATIONS[1082][0] = 78; EXPECTATIONS[1082][1] = 129; EXPECTATIONS[1083] = new int[2]; EXPECTATIONS[1083][0] = 79; EXPECTATIONS[1083][1] = 129; EXPECTATIONS[1084] = new int[2]; EXPECTATIONS[1084][0] = 80; EXPECTATIONS[1084][1] = 129; EXPECTATIONS[1085] = new int[2]; EXPECTATIONS[1085][0] = 81; EXPECTATIONS[1085][1] = 129; EXPECTATIONS[1086] = new int[2]; EXPECTATIONS[1086][0] = 82; EXPECTATIONS[1086][1] = 129; EXPECTATIONS[1087] = new int[2]; EXPECTATIONS[1087][0] = 83; EXPECTATIONS[1087][1] = 129; EXPECTATIONS[1088] = new int[2]; EXPECTATIONS[1088][0] = 84; EXPECTATIONS[1088][1] = 129; EXPECTATIONS[1089] = new int[3]; EXPECTATIONS[1089][0] = 19; EXPECTATIONS[1089][1] = 129; EXPECTATIONS[1089][2] = 132; EXPECTATIONS[1090] = new int[3]; EXPECTATIONS[1090][0] = 20; EXPECTATIONS[1090][1] = 129; EXPECTATIONS[1090][2] = 133; EXPECTATIONS[1091] = new int[2]; EXPECTATIONS[1091][0] = 76; EXPECTATIONS[1091][1] = 130; EXPECTATIONS[1092] = new int[2]; EXPECTATIONS[1092][0] = 77; EXPECTATIONS[1092][1] = 130; EXPECTATIONS[1093] = new int[2]; EXPECTATIONS[1093][0] = 78; EXPECTATIONS[1093][1] = 130; EXPECTATIONS[1094] = new int[2]; EXPECTATIONS[1094][0] = 79; EXPECTATIONS[1094][1] = 130; EXPECTATIONS[1095] = new int[2]; EXPECTATIONS[1095][0] = 80; EXPECTATIONS[1095][1] = 130; EXPECTATIONS[1096] = new int[2]; EXPECTATIONS[1096][0] = 81; EXPECTATIONS[1096][1] = 130; EXPECTATIONS[1097] = new int[2]; EXPECTATIONS[1097][0] = 82; EXPECTATIONS[1097][1] = 130; EXPECTATIONS[1098] = new int[2]; EXPECTATIONS[1098][0] = 83; EXPECTATIONS[1098][1] = 130; EXPECTATIONS[1099] = new int[2]; EXPECTATIONS[1099][0] = 84; EXPECTATIONS[1099][1] = 130; EXPECTATIONS[1100] = new int[3]; EXPECTATIONS[1100][0] = 19; EXPECTATIONS[1100][1] = 130; EXPECTATIONS[1100][2] = 134; EXPECTATIONS[1101] = new int[3]; EXPECTATIONS[1101][0] = 20; EXPECTATIONS[1101][1] = 130; EXPECTATIONS[1101][2] = 135; EXPECTATIONS[1102] = new int[2]; EXPECTATIONS[1102][0] = 93; EXPECTATIONS[1102][1] = 131; EXPECTATIONS[1103] = new int[2]; EXPECTATIONS[1103][0] = 94; EXPECTATIONS[1103][1] = 132; EXPECTATIONS[1104] = new int[2]; EXPECTATIONS[1104][0] = 76; EXPECTATIONS[1104][1] = 133; EXPECTATIONS[1105] = new int[2]; EXPECTATIONS[1105][0] = 77; EXPECTATIONS[1105][1] = 133; EXPECTATIONS[1106] = new int[2]; EXPECTATIONS[1106][0] = 78; EXPECTATIONS[1106][1] = 133; EXPECTATIONS[1107] = new int[2]; EXPECTATIONS[1107][0] = 79; EXPECTATIONS[1107][1] = 133; EXPECTATIONS[1108] = new int[2]; EXPECTATIONS[1108][0] = 80; EXPECTATIONS[1108][1] = 133; EXPECTATIONS[1109] = new int[2]; EXPECTATIONS[1109][0] = 81; EXPECTATIONS[1109][1] = 133; EXPECTATIONS[1110] = new int[2]; EXPECTATIONS[1110][0] = 82; EXPECTATIONS[1110][1] = 133; EXPECTATIONS[1111] = new int[2]; EXPECTATIONS[1111][0] = 83; EXPECTATIONS[1111][1] = 133; EXPECTATIONS[1112] = new int[2]; EXPECTATIONS[1112][0] = 84; EXPECTATIONS[1112][1] = 133; EXPECTATIONS[1113] = new int[3]; EXPECTATIONS[1113][0] = 19; EXPECTATIONS[1113][1] = 133; EXPECTATIONS[1113][2] = 136; EXPECTATIONS[1114] = new int[3]; EXPECTATIONS[1114][0] = 20; EXPECTATIONS[1114][1] = 133; EXPECTATIONS[1114][2] = 137; EXPECTATIONS[1115] = new int[2]; EXPECTATIONS[1115][0] = 76; EXPECTATIONS[1115][1] = 134; EXPECTATIONS[1116] = new int[2]; EXPECTATIONS[1116][0] = 77; EXPECTATIONS[1116][1] = 134; EXPECTATIONS[1117] = new int[2]; EXPECTATIONS[1117][0] = 78; EXPECTATIONS[1117][1] = 134; EXPECTATIONS[1118] = new int[2]; EXPECTATIONS[1118][0] = 79; EXPECTATIONS[1118][1] = 134; EXPECTATIONS[1119] = new int[2]; EXPECTATIONS[1119][0] = 80; EXPECTATIONS[1119][1] = 134; EXPECTATIONS[1120] = new int[2]; EXPECTATIONS[1120][0] = 81; EXPECTATIONS[1120][1] = 134; EXPECTATIONS[1121] = new int[2]; EXPECTATIONS[1121][0] = 82; EXPECTATIONS[1121][1] = 134; EXPECTATIONS[1122] = new int[2]; EXPECTATIONS[1122][0] = 83; EXPECTATIONS[1122][1] = 134; EXPECTATIONS[1123] = new int[2]; EXPECTATIONS[1123][0] = 84; EXPECTATIONS[1123][1] = 134; EXPECTATIONS[1124] = new int[3]; EXPECTATIONS[1124][0] = 19; EXPECTATIONS[1124][1] = 134; EXPECTATIONS[1124][2] = 138; EXPECTATIONS[1125] = new int[3]; EXPECTATIONS[1125][0] = 20; EXPECTATIONS[1125][1] = 134; EXPECTATIONS[1125][2] = 139; EXPECTATIONS[1126] = new int[2]; EXPECTATIONS[1126][0] = 95; EXPECTATIONS[1126][1] = 135; EXPECTATIONS[1127] = new int[3]; EXPECTATIONS[1127][0] = 49; EXPECTATIONS[1127][1] = 136; EXPECTATIONS[1127][2] = 140; EXPECTATIONS[1128] = new int[2]; EXPECTATIONS[1128][0] = 96; EXPECTATIONS[1128][1] = 137; EXPECTATIONS[1129] = new int[2]; EXPECTATIONS[1129][0] = 76; EXPECTATIONS[1129][1] = 137; EXPECTATIONS[1130] = new int[2]; EXPECTATIONS[1130][0] = 77; EXPECTATIONS[1130][1] = 137; EXPECTATIONS[1131] = new int[2]; EXPECTATIONS[1131][0] = 78; EXPECTATIONS[1131][1] = 137; EXPECTATIONS[1132] = new int[2]; EXPECTATIONS[1132][0] = 79; EXPECTATIONS[1132][1] = 137; EXPECTATIONS[1133] = new int[2]; EXPECTATIONS[1133][0] = 80; EXPECTATIONS[1133][1] = 137; EXPECTATIONS[1134] = new int[2]; EXPECTATIONS[1134][0] = 81; EXPECTATIONS[1134][1] = 137; EXPECTATIONS[1135] = new int[2]; EXPECTATIONS[1135][0] = 82; EXPECTATIONS[1135][1] = 137; EXPECTATIONS[1136] = new int[2]; EXPECTATIONS[1136][0] = 83; EXPECTATIONS[1136][1] = 137; EXPECTATIONS[1137] = new int[2]; EXPECTATIONS[1137][0] = 84; EXPECTATIONS[1137][1] = 137; EXPECTATIONS[1138] = new int[3]; EXPECTATIONS[1138][0] = 19; EXPECTATIONS[1138][1] = 137; EXPECTATIONS[1138][2] = 141; EXPECTATIONS[1139] = new int[3]; EXPECTATIONS[1139][0] = 20; EXPECTATIONS[1139][1] = 137; EXPECTATIONS[1139][2] = 142; EXPECTATIONS[1140] = new int[3]; EXPECTATIONS[1140][0] = 49; EXPECTATIONS[1140][1] = 138; EXPECTATIONS[1140][2] = 143; EXPECTATIONS[1141] = new int[2]; EXPECTATIONS[1141][0] = 96; EXPECTATIONS[1141][1] = 139; EXPECTATIONS[1142] = new int[2]; EXPECTATIONS[1142][0] = 76; EXPECTATIONS[1142][1] = 139; EXPECTATIONS[1143] = new int[2]; EXPECTATIONS[1143][0] = 77; EXPECTATIONS[1143][1] = 139; EXPECTATIONS[1144] = new int[2]; EXPECTATIONS[1144][0] = 78; EXPECTATIONS[1144][1] = 139; EXPECTATIONS[1145] = new int[2]; EXPECTATIONS[1145][0] = 79; EXPECTATIONS[1145][1] = 139; EXPECTATIONS[1146] = new int[2]; EXPECTATIONS[1146][0] = 80; EXPECTATIONS[1146][1] = 139; EXPECTATIONS[1147] = new int[2]; EXPECTATIONS[1147][0] = 81; EXPECTATIONS[1147][1] = 139; EXPECTATIONS[1148] = new int[2]; EXPECTATIONS[1148][0] = 82; EXPECTATIONS[1148][1] = 139; EXPECTATIONS[1149] = new int[2]; EXPECTATIONS[1149][0] = 83; EXPECTATIONS[1149][1] = 139; EXPECTATIONS[1150] = new int[2]; EXPECTATIONS[1150][0] = 84; EXPECTATIONS[1150][1] = 139; EXPECTATIONS[1151] = new int[3]; EXPECTATIONS[1151][0] = 19; EXPECTATIONS[1151][1] = 139; EXPECTATIONS[1151][2] = 144; EXPECTATIONS[1152] = new int[3]; EXPECTATIONS[1152][0] = 20; EXPECTATIONS[1152][1] = 139; EXPECTATIONS[1152][2] = 145; EXPECTATIONS[1153] = new int[2]; EXPECTATIONS[1153][0] = 96; EXPECTATIONS[1153][1] = 140; EXPECTATIONS[1154] = new int[2]; EXPECTATIONS[1154][0] = 76; EXPECTATIONS[1154][1] = 140; EXPECTATIONS[1155] = new int[2]; EXPECTATIONS[1155][0] = 77; EXPECTATIONS[1155][1] = 140; EXPECTATIONS[1156] = new int[2]; EXPECTATIONS[1156][0] = 78; EXPECTATIONS[1156][1] = 140; EXPECTATIONS[1157] = new int[2]; EXPECTATIONS[1157][0] = 79; EXPECTATIONS[1157][1] = 140; EXPECTATIONS[1158] = new int[2]; EXPECTATIONS[1158][0] = 80; EXPECTATIONS[1158][1] = 140; EXPECTATIONS[1159] = new int[2]; EXPECTATIONS[1159][0] = 81; EXPECTATIONS[1159][1] = 140; EXPECTATIONS[1160] = new int[2]; EXPECTATIONS[1160][0] = 82; EXPECTATIONS[1160][1] = 140; EXPECTATIONS[1161] = new int[2]; EXPECTATIONS[1161][0] = 83; EXPECTATIONS[1161][1] = 140; EXPECTATIONS[1162] = new int[2]; EXPECTATIONS[1162][0] = 84; EXPECTATIONS[1162][1] = 140; EXPECTATIONS[1163] = new int[3]; EXPECTATIONS[1163][0] = 19; EXPECTATIONS[1163][1] = 140; EXPECTATIONS[1163][2] = 146; EXPECTATIONS[1164] = new int[3]; EXPECTATIONS[1164][0] = 20; EXPECTATIONS[1164][1] = 140; EXPECTATIONS[1164][2] = 147; EXPECTATIONS[1165] = new int[2]; EXPECTATIONS[1165][0] = 76; EXPECTATIONS[1165][1] = 141; EXPECTATIONS[1166] = new int[2]; EXPECTATIONS[1166][0] = 77; EXPECTATIONS[1166][1] = 141; EXPECTATIONS[1167] = new int[2]; EXPECTATIONS[1167][0] = 78; EXPECTATIONS[1167][1] = 141; EXPECTATIONS[1168] = new int[2]; EXPECTATIONS[1168][0] = 79; EXPECTATIONS[1168][1] = 141; EXPECTATIONS[1169] = new int[2]; EXPECTATIONS[1169][0] = 80; EXPECTATIONS[1169][1] = 141; EXPECTATIONS[1170] = new int[2]; EXPECTATIONS[1170][0] = 81; EXPECTATIONS[1170][1] = 141; EXPECTATIONS[1171] = new int[2]; EXPECTATIONS[1171][0] = 82; EXPECTATIONS[1171][1] = 141; EXPECTATIONS[1172] = new int[2]; EXPECTATIONS[1172][0] = 83; EXPECTATIONS[1172][1] = 141; EXPECTATIONS[1173] = new int[2]; EXPECTATIONS[1173][0] = 84; EXPECTATIONS[1173][1] = 141; EXPECTATIONS[1174] = new int[3]; EXPECTATIONS[1174][0] = 19; EXPECTATIONS[1174][1] = 141; EXPECTATIONS[1174][2] = 148; EXPECTATIONS[1175] = new int[3]; EXPECTATIONS[1175][0] = 20; EXPECTATIONS[1175][1] = 141; EXPECTATIONS[1175][2] = 149; EXPECTATIONS[1176] = new int[2]; EXPECTATIONS[1176][0] = 97; EXPECTATIONS[1176][1] = 142; EXPECTATIONS[1177] = new int[3]; EXPECTATIONS[1177][0] = 49; EXPECTATIONS[1177][1] = 143; EXPECTATIONS[1177][2] = 150; EXPECTATIONS[1178] = new int[2]; EXPECTATIONS[1178][0] = 98; EXPECTATIONS[1178][1] = 144; EXPECTATIONS[1179] = new int[2]; EXPECTATIONS[1179][0] = 76; EXPECTATIONS[1179][1] = 144; EXPECTATIONS[1180] = new int[2]; EXPECTATIONS[1180][0] = 77; EXPECTATIONS[1180][1] = 144; EXPECTATIONS[1181] = new int[2]; EXPECTATIONS[1181][0] = 78; EXPECTATIONS[1181][1] = 144; EXPECTATIONS[1182] = new int[2]; EXPECTATIONS[1182][0] = 79; EXPECTATIONS[1182][1] = 144; EXPECTATIONS[1183] = new int[2]; EXPECTATIONS[1183][0] = 80; EXPECTATIONS[1183][1] = 144; EXPECTATIONS[1184] = new int[2]; EXPECTATIONS[1184][0] = 81; EXPECTATIONS[1184][1] = 144; EXPECTATIONS[1185] = new int[2]; EXPECTATIONS[1185][0] = 82; EXPECTATIONS[1185][1] = 144; EXPECTATIONS[1186] = new int[2]; EXPECTATIONS[1186][0] = 83; EXPECTATIONS[1186][1] = 144; EXPECTATIONS[1187] = new int[2]; EXPECTATIONS[1187][0] = 84; EXPECTATIONS[1187][1] = 144; EXPECTATIONS[1188] = new int[3]; EXPECTATIONS[1188][0] = 19; EXPECTATIONS[1188][1] = 144; EXPECTATIONS[1188][2] = 151; EXPECTATIONS[1189] = new int[3]; EXPECTATIONS[1189][0] = 20; EXPECTATIONS[1189][1] = 144; EXPECTATIONS[1189][2] = 152; EXPECTATIONS[1190] = new int[3]; EXPECTATIONS[1190][0] = 49; EXPECTATIONS[1190][1] = 145; EXPECTATIONS[1190][2] = 153; EXPECTATIONS[1191] = new int[2]; EXPECTATIONS[1191][0] = 98; EXPECTATIONS[1191][1] = 146; EXPECTATIONS[1192] = new int[2]; EXPECTATIONS[1192][0] = 76; EXPECTATIONS[1192][1] = 146; EXPECTATIONS[1193] = new int[2]; EXPECTATIONS[1193][0] = 77; EXPECTATIONS[1193][1] = 146; EXPECTATIONS[1194] = new int[2]; EXPECTATIONS[1194][0] = 78; EXPECTATIONS[1194][1] = 146; EXPECTATIONS[1195] = new int[2]; EXPECTATIONS[1195][0] = 79; EXPECTATIONS[1195][1] = 146; EXPECTATIONS[1196] = new int[2]; EXPECTATIONS[1196][0] = 80; EXPECTATIONS[1196][1] = 146; EXPECTATIONS[1197] = new int[2]; EXPECTATIONS[1197][0] = 81; EXPECTATIONS[1197][1] = 146; EXPECTATIONS[1198] = new int[2]; EXPECTATIONS[1198][0] = 82; EXPECTATIONS[1198][1] = 146; EXPECTATIONS[1199] = new int[2]; EXPECTATIONS[1199][0] = 83; EXPECTATIONS[1199][1] = 146; EXPECTATIONS[1200] = new int[2]; EXPECTATIONS[1200][0] = 84; EXPECTATIONS[1200][1] = 146; EXPECTATIONS[1201] = new int[3]; EXPECTATIONS[1201][0] = 19; EXPECTATIONS[1201][1] = 146; EXPECTATIONS[1201][2] = 154; EXPECTATIONS[1202] = new int[3]; EXPECTATIONS[1202][0] = 20; EXPECTATIONS[1202][1] = 146; EXPECTATIONS[1202][2] = 155; EXPECTATIONS[1203] = new int[2]; EXPECTATIONS[1203][0] = 98; EXPECTATIONS[1203][1] = 147; EXPECTATIONS[1204] = new int[2]; EXPECTATIONS[1204][0] = 76; EXPECTATIONS[1204][1] = 147; EXPECTATIONS[1205] = new int[2]; EXPECTATIONS[1205][0] = 77; EXPECTATIONS[1205][1] = 147; EXPECTATIONS[1206] = new int[2]; EXPECTATIONS[1206][0] = 78; EXPECTATIONS[1206][1] = 147; EXPECTATIONS[1207] = new int[2]; EXPECTATIONS[1207][0] = 79; EXPECTATIONS[1207][1] = 147; EXPECTATIONS[1208] = new int[2]; EXPECTATIONS[1208][0] = 80; EXPECTATIONS[1208][1] = 147; EXPECTATIONS[1209] = new int[2]; EXPECTATIONS[1209][0] = 81; EXPECTATIONS[1209][1] = 147; EXPECTATIONS[1210] = new int[2]; EXPECTATIONS[1210][0] = 82; EXPECTATIONS[1210][1] = 147; EXPECTATIONS[1211] = new int[2]; EXPECTATIONS[1211][0] = 83; EXPECTATIONS[1211][1] = 147; EXPECTATIONS[1212] = new int[2]; EXPECTATIONS[1212][0] = 84; EXPECTATIONS[1212][1] = 147; EXPECTATIONS[1213] = new int[3]; EXPECTATIONS[1213][0] = 19; EXPECTATIONS[1213][1] = 147; EXPECTATIONS[1213][2] = 156; EXPECTATIONS[1214] = new int[3]; EXPECTATIONS[1214][0] = 20; EXPECTATIONS[1214][1] = 147; EXPECTATIONS[1214][2] = 157; EXPECTATIONS[1215] = new int[2]; EXPECTATIONS[1215][0] = 76; EXPECTATIONS[1215][1] = 148; EXPECTATIONS[1216] = new int[2]; EXPECTATIONS[1216][0] = 77; EXPECTATIONS[1216][1] = 148; EXPECTATIONS[1217] = new int[2]; EXPECTATIONS[1217][0] = 78; EXPECTATIONS[1217][1] = 148; EXPECTATIONS[1218] = new int[2]; EXPECTATIONS[1218][0] = 79; EXPECTATIONS[1218][1] = 148; EXPECTATIONS[1219] = new int[2]; EXPECTATIONS[1219][0] = 80; EXPECTATIONS[1219][1] = 148; EXPECTATIONS[1220] = new int[2]; EXPECTATIONS[1220][0] = 81; EXPECTATIONS[1220][1] = 148; EXPECTATIONS[1221] = new int[2]; EXPECTATIONS[1221][0] = 82; EXPECTATIONS[1221][1] = 148; EXPECTATIONS[1222] = new int[2]; EXPECTATIONS[1222][0] = 83; EXPECTATIONS[1222][1] = 148; EXPECTATIONS[1223] = new int[2]; EXPECTATIONS[1223][0] = 84; EXPECTATIONS[1223][1] = 148; EXPECTATIONS[1224] = new int[3]; EXPECTATIONS[1224][0] = 19; EXPECTATIONS[1224][1] = 148; EXPECTATIONS[1224][2] = 158; EXPECTATIONS[1225] = new int[3]; EXPECTATIONS[1225][0] = 20; EXPECTATIONS[1225][1] = 148; EXPECTATIONS[1225][2] = 159; EXPECTATIONS[1226] = new int[2]; EXPECTATIONS[1226][0] = 99; EXPECTATIONS[1226][1] = 149; EXPECTATIONS[1227] = new int[3]; EXPECTATIONS[1227][0] = 49; EXPECTATIONS[1227][1] = 150; EXPECTATIONS[1227][2] = 160; EXPECTATIONS[1228] = new int[2]; EXPECTATIONS[1228][0] = 100; EXPECTATIONS[1228][1] = 151; EXPECTATIONS[1229] = new int[2]; EXPECTATIONS[1229][0] = 76; EXPECTATIONS[1229][1] = 151; EXPECTATIONS[1230] = new int[2]; EXPECTATIONS[1230][0] = 77; EXPECTATIONS[1230][1] = 151; EXPECTATIONS[1231] = new int[2]; EXPECTATIONS[1231][0] = 78; EXPECTATIONS[1231][1] = 151; EXPECTATIONS[1232] = new int[2]; EXPECTATIONS[1232][0] = 79; EXPECTATIONS[1232][1] = 151; EXPECTATIONS[1233] = new int[2]; EXPECTATIONS[1233][0] = 80; EXPECTATIONS[1233][1] = 151; EXPECTATIONS[1234] = new int[2]; EXPECTATIONS[1234][0] = 81; EXPECTATIONS[1234][1] = 151; EXPECTATIONS[1235] = new int[2]; EXPECTATIONS[1235][0] = 82; EXPECTATIONS[1235][1] = 151; EXPECTATIONS[1236] = new int[2]; EXPECTATIONS[1236][0] = 83; EXPECTATIONS[1236][1] = 151; EXPECTATIONS[1237] = new int[2]; EXPECTATIONS[1237][0] = 84; EXPECTATIONS[1237][1] = 151; EXPECTATIONS[1238] = new int[3]; EXPECTATIONS[1238][0] = 19; EXPECTATIONS[1238][1] = 151; EXPECTATIONS[1238][2] = 161; EXPECTATIONS[1239] = new int[3]; EXPECTATIONS[1239][0] = 20; EXPECTATIONS[1239][1] = 151; EXPECTATIONS[1239][2] = 162; EXPECTATIONS[1240] = new int[3]; EXPECTATIONS[1240][0] = 49; EXPECTATIONS[1240][1] = 152; EXPECTATIONS[1240][2] = 163; EXPECTATIONS[1241] = new int[2]; EXPECTATIONS[1241][0] = 100; EXPECTATIONS[1241][1] = 153; EXPECTATIONS[1242] = new int[2]; EXPECTATIONS[1242][0] = 76; EXPECTATIONS[1242][1] = 153; EXPECTATIONS[1243] = new int[2]; EXPECTATIONS[1243][0] = 77; EXPECTATIONS[1243][1] = 153; EXPECTATIONS[1244] = new int[2]; EXPECTATIONS[1244][0] = 78; EXPECTATIONS[1244][1] = 153; EXPECTATIONS[1245] = new int[2]; EXPECTATIONS[1245][0] = 79; EXPECTATIONS[1245][1] = 153; EXPECTATIONS[1246] = new int[2]; EXPECTATIONS[1246][0] = 80; EXPECTATIONS[1246][1] = 153; EXPECTATIONS[1247] = new int[2]; EXPECTATIONS[1247][0] = 81; EXPECTATIONS[1247][1] = 153; EXPECTATIONS[1248] = new int[2]; EXPECTATIONS[1248][0] = 82; EXPECTATIONS[1248][1] = 153; EXPECTATIONS[1249] = new int[2]; EXPECTATIONS[1249][0] = 83; EXPECTATIONS[1249][1] = 153; EXPECTATIONS[1250] = new int[2]; EXPECTATIONS[1250][0] = 84; EXPECTATIONS[1250][1] = 153; EXPECTATIONS[1251] = new int[3]; EXPECTATIONS[1251][0] = 19; EXPECTATIONS[1251][1] = 153; EXPECTATIONS[1251][2] = 164; EXPECTATIONS[1252] = new int[3]; EXPECTATIONS[1252][0] = 20; EXPECTATIONS[1252][1] = 153; EXPECTATIONS[1252][2] = 165; EXPECTATIONS[1253] = new int[2]; EXPECTATIONS[1253][0] = 100; EXPECTATIONS[1253][1] = 154; EXPECTATIONS[1254] = new int[2]; EXPECTATIONS[1254][0] = 76; EXPECTATIONS[1254][1] = 154; EXPECTATIONS[1255] = new int[2]; EXPECTATIONS[1255][0] = 77; EXPECTATIONS[1255][1] = 154; EXPECTATIONS[1256] = new int[2]; EXPECTATIONS[1256][0] = 78; EXPECTATIONS[1256][1] = 154; EXPECTATIONS[1257] = new int[2]; EXPECTATIONS[1257][0] = 79; EXPECTATIONS[1257][1] = 154; EXPECTATIONS[1258] = new int[2]; EXPECTATIONS[1258][0] = 80; EXPECTATIONS[1258][1] = 154; EXPECTATIONS[1259] = new int[2]; EXPECTATIONS[1259][0] = 81; EXPECTATIONS[1259][1] = 154; EXPECTATIONS[1260] = new int[2]; EXPECTATIONS[1260][0] = 82; EXPECTATIONS[1260][1] = 154; EXPECTATIONS[1261] = new int[2]; EXPECTATIONS[1261][0] = 83; EXPECTATIONS[1261][1] = 154; EXPECTATIONS[1262] = new int[2]; EXPECTATIONS[1262][0] = 84; EXPECTATIONS[1262][1] = 154; EXPECTATIONS[1263] = new int[3]; EXPECTATIONS[1263][0] = 19; EXPECTATIONS[1263][1] = 154; EXPECTATIONS[1263][2] = 166; EXPECTATIONS[1264] = new int[3]; EXPECTATIONS[1264][0] = 20; EXPECTATIONS[1264][1] = 154; EXPECTATIONS[1264][2] = 167; EXPECTATIONS[1265] = new int[2]; EXPECTATIONS[1265][0] = 76; EXPECTATIONS[1265][1] = 155; EXPECTATIONS[1266] = new int[2]; EXPECTATIONS[1266][0] = 77; EXPECTATIONS[1266][1] = 155; EXPECTATIONS[1267] = new int[2]; EXPECTATIONS[1267][0] = 78; EXPECTATIONS[1267][1] = 155; EXPECTATIONS[1268] = new int[2]; EXPECTATIONS[1268][0] = 79; EXPECTATIONS[1268][1] = 155; EXPECTATIONS[1269] = new int[2]; EXPECTATIONS[1269][0] = 80; EXPECTATIONS[1269][1] = 155; EXPECTATIONS[1270] = new int[2]; EXPECTATIONS[1270][0] = 81; EXPECTATIONS[1270][1] = 155; EXPECTATIONS[1271] = new int[2]; EXPECTATIONS[1271][0] = 82; EXPECTATIONS[1271][1] = 155; EXPECTATIONS[1272] = new int[2]; EXPECTATIONS[1272][0] = 83; EXPECTATIONS[1272][1] = 155; EXPECTATIONS[1273] = new int[2]; EXPECTATIONS[1273][0] = 84; EXPECTATIONS[1273][1] = 155; EXPECTATIONS[1274] = new int[3]; EXPECTATIONS[1274][0] = 19; EXPECTATIONS[1274][1] = 155; EXPECTATIONS[1274][2] = 168; EXPECTATIONS[1275] = new int[3]; EXPECTATIONS[1275][0] = 20; EXPECTATIONS[1275][1] = 155; EXPECTATIONS[1275][2] = 169; EXPECTATIONS[1276] = new int[2]; EXPECTATIONS[1276][0] = 101; EXPECTATIONS[1276][1] = 156; EXPECTATIONS[1277] = new int[3]; EXPECTATIONS[1277][0] = 49; EXPECTATIONS[1277][1] = 157; EXPECTATIONS[1277][2] = 170; EXPECTATIONS[1278] = new int[2]; EXPECTATIONS[1278][0] = 102; EXPECTATIONS[1278][1] = 158; EXPECTATIONS[1279] = new int[2]; EXPECTATIONS[1279][0] = 76; EXPECTATIONS[1279][1] = 158; EXPECTATIONS[1280] = new int[2]; EXPECTATIONS[1280][0] = 77; EXPECTATIONS[1280][1] = 158; EXPECTATIONS[1281] = new int[2]; EXPECTATIONS[1281][0] = 78; EXPECTATIONS[1281][1] = 158; EXPECTATIONS[1282] = new int[2]; EXPECTATIONS[1282][0] = 79; EXPECTATIONS[1282][1] = 158; EXPECTATIONS[1283] = new int[2]; EXPECTATIONS[1283][0] = 80; EXPECTATIONS[1283][1] = 158; EXPECTATIONS[1284] = new int[2]; EXPECTATIONS[1284][0] = 81; EXPECTATIONS[1284][1] = 158; EXPECTATIONS[1285] = new int[2]; EXPECTATIONS[1285][0] = 82; EXPECTATIONS[1285][1] = 158; EXPECTATIONS[1286] = new int[2]; EXPECTATIONS[1286][0] = 83; EXPECTATIONS[1286][1] = 158; EXPECTATIONS[1287] = new int[2]; EXPECTATIONS[1287][0] = 84; EXPECTATIONS[1287][1] = 158; EXPECTATIONS[1288] = new int[3]; EXPECTATIONS[1288][0] = 19; EXPECTATIONS[1288][1] = 158; EXPECTATIONS[1288][2] = 171; EXPECTATIONS[1289] = new int[3]; EXPECTATIONS[1289][0] = 20; EXPECTATIONS[1289][1] = 158; EXPECTATIONS[1289][2] = 172; EXPECTATIONS[1290] = new int[3]; EXPECTATIONS[1290][0] = 49; EXPECTATIONS[1290][1] = 159; EXPECTATIONS[1290][2] = 173; EXPECTATIONS[1291] = new int[2]; EXPECTATIONS[1291][0] = 102; EXPECTATIONS[1291][1] = 160; EXPECTATIONS[1292] = new int[2]; EXPECTATIONS[1292][0] = 76; EXPECTATIONS[1292][1] = 160; EXPECTATIONS[1293] = new int[2]; EXPECTATIONS[1293][0] = 77; EXPECTATIONS[1293][1] = 160; EXPECTATIONS[1294] = new int[2]; EXPECTATIONS[1294][0] = 78; EXPECTATIONS[1294][1] = 160; EXPECTATIONS[1295] = new int[2]; EXPECTATIONS[1295][0] = 79; EXPECTATIONS[1295][1] = 160; EXPECTATIONS[1296] = new int[2]; EXPECTATIONS[1296][0] = 80; EXPECTATIONS[1296][1] = 160; EXPECTATIONS[1297] = new int[2]; EXPECTATIONS[1297][0] = 81; EXPECTATIONS[1297][1] = 160; EXPECTATIONS[1298] = new int[2]; EXPECTATIONS[1298][0] = 82; EXPECTATIONS[1298][1] = 160; EXPECTATIONS[1299] = new int[2]; EXPECTATIONS[1299][0] = 83; EXPECTATIONS[1299][1] = 160; EXPECTATIONS[1300] = new int[2]; EXPECTATIONS[1300][0] = 84; EXPECTATIONS[1300][1] = 160; EXPECTATIONS[1301] = new int[3]; EXPECTATIONS[1301][0] = 19; EXPECTATIONS[1301][1] = 160; EXPECTATIONS[1301][2] = 174; EXPECTATIONS[1302] = new int[3]; EXPECTATIONS[1302][0] = 20; EXPECTATIONS[1302][1] = 160; EXPECTATIONS[1302][2] = 175; EXPECTATIONS[1303] = new int[2]; EXPECTATIONS[1303][0] = 102; EXPECTATIONS[1303][1] = 161; EXPECTATIONS[1304] = new int[2]; EXPECTATIONS[1304][0] = 76; EXPECTATIONS[1304][1] = 161; EXPECTATIONS[1305] = new int[2]; EXPECTATIONS[1305][0] = 77; EXPECTATIONS[1305][1] = 161; EXPECTATIONS[1306] = new int[2]; EXPECTATIONS[1306][0] = 78; EXPECTATIONS[1306][1] = 161; EXPECTATIONS[1307] = new int[2]; EXPECTATIONS[1307][0] = 79; EXPECTATIONS[1307][1] = 161; EXPECTATIONS[1308] = new int[2]; EXPECTATIONS[1308][0] = 80; EXPECTATIONS[1308][1] = 161; EXPECTATIONS[1309] = new int[2]; EXPECTATIONS[1309][0] = 81; EXPECTATIONS[1309][1] = 161; EXPECTATIONS[1310] = new int[2]; EXPECTATIONS[1310][0] = 82; EXPECTATIONS[1310][1] = 161; EXPECTATIONS[1311] = new int[2]; EXPECTATIONS[1311][0] = 83; EXPECTATIONS[1311][1] = 161; EXPECTATIONS[1312] = new int[2]; EXPECTATIONS[1312][0] = 84; EXPECTATIONS[1312][1] = 161; EXPECTATIONS[1313] = new int[3]; EXPECTATIONS[1313][0] = 19; EXPECTATIONS[1313][1] = 161; EXPECTATIONS[1313][2] = 176; EXPECTATIONS[1314] = new int[3]; EXPECTATIONS[1314][0] = 20; EXPECTATIONS[1314][1] = 161; EXPECTATIONS[1314][2] = 177; EXPECTATIONS[1315] = new int[2]; EXPECTATIONS[1315][0] = 76; EXPECTATIONS[1315][1] = 162; EXPECTATIONS[1316] = new int[2]; EXPECTATIONS[1316][0] = 77; EXPECTATIONS[1316][1] = 162; EXPECTATIONS[1317] = new int[2]; EXPECTATIONS[1317][0] = 78; EXPECTATIONS[1317][1] = 162; EXPECTATIONS[1318] = new int[2]; EXPECTATIONS[1318][0] = 79; EXPECTATIONS[1318][1] = 162; EXPECTATIONS[1319] = new int[2]; EXPECTATIONS[1319][0] = 80; EXPECTATIONS[1319][1] = 162; EXPECTATIONS[1320] = new int[2]; EXPECTATIONS[1320][0] = 81; EXPECTATIONS[1320][1] = 162; EXPECTATIONS[1321] = new int[2]; EXPECTATIONS[1321][0] = 82; EXPECTATIONS[1321][1] = 162; EXPECTATIONS[1322] = new int[2]; EXPECTATIONS[1322][0] = 83; EXPECTATIONS[1322][1] = 162; EXPECTATIONS[1323] = new int[2]; EXPECTATIONS[1323][0] = 84; EXPECTATIONS[1323][1] = 162; EXPECTATIONS[1324] = new int[3]; EXPECTATIONS[1324][0] = 19; EXPECTATIONS[1324][1] = 162; EXPECTATIONS[1324][2] = 178; EXPECTATIONS[1325] = new int[3]; EXPECTATIONS[1325][0] = 20; EXPECTATIONS[1325][1] = 162; EXPECTATIONS[1325][2] = 179; EXPECTATIONS[1326] = new int[2]; EXPECTATIONS[1326][0] = 76; EXPECTATIONS[1326][1] = 163; EXPECTATIONS[1327] = new int[2]; EXPECTATIONS[1327][0] = 77; EXPECTATIONS[1327][1] = 163; EXPECTATIONS[1328] = new int[2]; EXPECTATIONS[1328][0] = 78; EXPECTATIONS[1328][1] = 163; EXPECTATIONS[1329] = new int[2]; EXPECTATIONS[1329][0] = 79; EXPECTATIONS[1329][1] = 163; EXPECTATIONS[1330] = new int[2]; EXPECTATIONS[1330][0] = 80; EXPECTATIONS[1330][1] = 163; EXPECTATIONS[1331] = new int[2]; EXPECTATIONS[1331][0] = 81; EXPECTATIONS[1331][1] = 163; EXPECTATIONS[1332] = new int[2]; EXPECTATIONS[1332][0] = 82; EXPECTATIONS[1332][1] = 163; EXPECTATIONS[1333] = new int[2]; EXPECTATIONS[1333][0] = 83; EXPECTATIONS[1333][1] = 163; EXPECTATIONS[1334] = new int[2]; EXPECTATIONS[1334][0] = 84; EXPECTATIONS[1334][1] = 163; EXPECTATIONS[1335] = new int[3]; EXPECTATIONS[1335][0] = 19; EXPECTATIONS[1335][1] = 163; EXPECTATIONS[1335][2] = 180; EXPECTATIONS[1336] = new int[3]; EXPECTATIONS[1336][0] = 20; EXPECTATIONS[1336][1] = 163; EXPECTATIONS[1336][2] = 181; EXPECTATIONS[1337] = new int[2]; EXPECTATIONS[1337][0] = 103; EXPECTATIONS[1337][1] = 164; EXPECTATIONS[1338] = new int[3]; EXPECTATIONS[1338][0] = 104; EXPECTATIONS[1338][1] = 164; EXPECTATIONS[1338][2] = 182; EXPECTATIONS[1339] = new int[3]; EXPECTATIONS[1339][0] = 105; EXPECTATIONS[1339][1] = 164; EXPECTATIONS[1339][2] = 183; EXPECTATIONS[1340] = new int[2]; EXPECTATIONS[1340][0] = 106; EXPECTATIONS[1340][1] = 165; EXPECTATIONS[1341] = new int[2]; EXPECTATIONS[1341][0] = 107; EXPECTATIONS[1341][1] = 166; EXPECTATIONS[1342] = new int[3]; EXPECTATIONS[1342][0] = 104; EXPECTATIONS[1342][1] = 167; EXPECTATIONS[1342][2] = 184; EXPECTATIONS[1343] = new int[3]; EXPECTATIONS[1343][0] = 105; EXPECTATIONS[1343][1] = 167; EXPECTATIONS[1343][2] = 185; EXPECTATIONS[1344] = new int[3]; EXPECTATIONS[1344][0] = 104; EXPECTATIONS[1344][1] = 168; EXPECTATIONS[1344][2] = 186; EXPECTATIONS[1345] = new int[3]; EXPECTATIONS[1345][0] = 105; EXPECTATIONS[1345][1] = 168; EXPECTATIONS[1345][2] = 187; EXPECTATIONS[1346] = new int[3]; EXPECTATIONS[1346][0] = 104; EXPECTATIONS[1346][1] = 169; EXPECTATIONS[1346][2] = 188; EXPECTATIONS[1347] = new int[3]; EXPECTATIONS[1347][0] = 105; EXPECTATIONS[1347][1] = 169; EXPECTATIONS[1347][2] = 189; EXPECTATIONS[1348] = new int[3]; EXPECTATIONS[1348][0] = 19; EXPECTATIONS[1348][1] = 169; EXPECTATIONS[1348][2] = 190; EXPECTATIONS[1349] = new int[3]; EXPECTATIONS[1349][0] = 20; EXPECTATIONS[1349][1] = 169; EXPECTATIONS[1349][2] = 191; EXPECTATIONS[1350] = new int[2]; EXPECTATIONS[1350][0] = 108; EXPECTATIONS[1350][1] = 170; EXPECTATIONS[1351] = new int[2]; EXPECTATIONS[1351][0] = 109; EXPECTATIONS[1351][1] = 171; EXPECTATIONS[1352] = new int[3]; EXPECTATIONS[1352][0] = 49; EXPECTATIONS[1352][1] = 172; EXPECTATIONS[1352][2] = 192; EXPECTATIONS[1353] = new int[2]; EXPECTATIONS[1353][0] = 110; EXPECTATIONS[1353][1] = 173; EXPECTATIONS[1354] = new int[4]; EXPECTATIONS[1354][0] = 49; EXPECTATIONS[1354][1] = 173; EXPECTATIONS[1354][2] = 193; EXPECTATIONS[1354][3] = 194; EXPECTATIONS[1355] = new int[3]; EXPECTATIONS[1355][0] = 111; EXPECTATIONS[1355][1] = 173; EXPECTATIONS[1355][2] = 195; EXPECTATIONS[1356] = new int[4]; EXPECTATIONS[1356][0] = 18; EXPECTATIONS[1356][1] = 173; EXPECTATIONS[1356][2] = 196; EXPECTATIONS[1356][3] = 197; EXPECTATIONS[1357] = new int[3]; EXPECTATIONS[1357][0] = 49; EXPECTATIONS[1357][1] = 174; EXPECTATIONS[1357][2] = 198; EXPECTATIONS[1358] = new int[2]; EXPECTATIONS[1358][0] = 110; EXPECTATIONS[1358][1] = 175; EXPECTATIONS[1359] = new int[4]; EXPECTATIONS[1359][0] = 49; EXPECTATIONS[1359][1] = 175; EXPECTATIONS[1359][2] = 199; EXPECTATIONS[1359][3] = 200; EXPECTATIONS[1360] = new int[3]; EXPECTATIONS[1360][0] = 111; EXPECTATIONS[1360][1] = 175; EXPECTATIONS[1360][2] = 201; EXPECTATIONS[1361] = new int[4]; EXPECTATIONS[1361][0] = 18; EXPECTATIONS[1361][1] = 175; EXPECTATIONS[1361][2] = 202; EXPECTATIONS[1361][3] = 203; EXPECTATIONS[1362] = new int[2]; EXPECTATIONS[1362][0] = 110; EXPECTATIONS[1362][1] = 176; EXPECTATIONS[1363] = new int[4]; EXPECTATIONS[1363][0] = 49; EXPECTATIONS[1363][1] = 176; EXPECTATIONS[1363][2] = 204; EXPECTATIONS[1363][3] = 205; EXPECTATIONS[1364] = new int[3]; EXPECTATIONS[1364][0] = 111; EXPECTATIONS[1364][1] = 176; EXPECTATIONS[1364][2] = 206; EXPECTATIONS[1365] = new int[4]; EXPECTATIONS[1365][0] = 18; EXPECTATIONS[1365][1] = 176; EXPECTATIONS[1365][2] = 207; EXPECTATIONS[1365][3] = 208; EXPECTATIONS[1366] = new int[4]; EXPECTATIONS[1366][0] = 49; EXPECTATIONS[1366][1] = 177; EXPECTATIONS[1366][2] = 209; EXPECTATIONS[1366][3] = 210; EXPECTATIONS[1367] = new int[3]; EXPECTATIONS[1367][0] = 111; EXPECTATIONS[1367][1] = 177; EXPECTATIONS[1367][2] = 211; EXPECTATIONS[1368] = new int[4]; EXPECTATIONS[1368][0] = 18; EXPECTATIONS[1368][1] = 177; EXPECTATIONS[1368][2] = 212; EXPECTATIONS[1368][3] = 213; EXPECTATIONS[1369] = new int[3]; EXPECTATIONS[1369][0] = 104; EXPECTATIONS[1369][1] = 177; EXPECTATIONS[1369][2] = 214; EXPECTATIONS[1370] = new int[3]; EXPECTATIONS[1370][0] = 105; EXPECTATIONS[1370][1] = 177; EXPECTATIONS[1370][2] = 215; EXPECTATIONS[1371] = new int[3]; EXPECTATIONS[1371][0] = 19; EXPECTATIONS[1371][1] = 177; EXPECTATIONS[1371][2] = 216; EXPECTATIONS[1372] = new int[3]; EXPECTATIONS[1372][0] = 20; EXPECTATIONS[1372][1] = 177; EXPECTATIONS[1372][2] = 217; EXPECTATIONS[1373] = new int[4]; EXPECTATIONS[1373][0] = 49; EXPECTATIONS[1373][1] = 178; EXPECTATIONS[1373][2] = 218; EXPECTATIONS[1373][3] = 219; EXPECTATIONS[1374] = new int[3]; EXPECTATIONS[1374][0] = 111; EXPECTATIONS[1374][1] = 178; EXPECTATIONS[1374][2] = 220; EXPECTATIONS[1375] = new int[4]; EXPECTATIONS[1375][0] = 18; EXPECTATIONS[1375][1] = 178; EXPECTATIONS[1375][2] = 221; EXPECTATIONS[1375][3] = 222; EXPECTATIONS[1376] = new int[3]; EXPECTATIONS[1376][0] = 104; EXPECTATIONS[1376][1] = 178; EXPECTATIONS[1376][2] = 223; EXPECTATIONS[1377] = new int[3]; EXPECTATIONS[1377][0] = 105; EXPECTATIONS[1377][1] = 178; EXPECTATIONS[1377][2] = 224; EXPECTATIONS[1378] = new int[3]; EXPECTATIONS[1378][0] = 19; EXPECTATIONS[1378][1] = 178; EXPECTATIONS[1378][2] = 225; EXPECTATIONS[1379] = new int[3]; EXPECTATIONS[1379][0] = 20; EXPECTATIONS[1379][1] = 178; EXPECTATIONS[1379][2] = 226; EXPECTATIONS[1380] = new int[2]; EXPECTATIONS[1380][0] = 112; EXPECTATIONS[1380][1] = 179; EXPECTATIONS[1381] = new int[2]; EXPECTATIONS[1381][0] = 113; EXPECTATIONS[1381][1] = 180; EXPECTATIONS[1382] = new int[3]; EXPECTATIONS[1382][0] = 49; EXPECTATIONS[1382][1] = 181; EXPECTATIONS[1382][2] = 227; EXPECTATIONS[1383] = new int[2]; EXPECTATIONS[1383][0] = 114; EXPECTATIONS[1383][1] = 182; EXPECTATIONS[1384] = new int[4]; EXPECTATIONS[1384][0] = 49; EXPECTATIONS[1384][1] = 182; EXPECTATIONS[1384][2] = 228; EXPECTATIONS[1384][3] = 229; EXPECTATIONS[1385] = new int[3]; EXPECTATIONS[1385][0] = 111; EXPECTATIONS[1385][1] = 182; EXPECTATIONS[1385][2] = 230; EXPECTATIONS[1386] = new int[4]; EXPECTATIONS[1386][0] = 18; EXPECTATIONS[1386][1] = 182; EXPECTATIONS[1386][2] = 231; EXPECTATIONS[1386][3] = 232; EXPECTATIONS[1387] = new int[3]; EXPECTATIONS[1387][0] = 49; EXPECTATIONS[1387][1] = 183; EXPECTATIONS[1387][2] = 233; EXPECTATIONS[1388] = new int[2]; EXPECTATIONS[1388][0] = 114; EXPECTATIONS[1388][1] = 184; EXPECTATIONS[1389] = new int[4]; EXPECTATIONS[1389][0] = 49; EXPECTATIONS[1389][1] = 184; EXPECTATIONS[1389][2] = 234; EXPECTATIONS[1389][3] = 235; EXPECTATIONS[1390] = new int[3]; EXPECTATIONS[1390][0] = 111; EXPECTATIONS[1390][1] = 184; EXPECTATIONS[1390][2] = 236; EXPECTATIONS[1391] = new int[4]; EXPECTATIONS[1391][0] = 18; EXPECTATIONS[1391][1] = 184; EXPECTATIONS[1391][2] = 237; EXPECTATIONS[1391][3] = 238; EXPECTATIONS[1392] = new int[2]; EXPECTATIONS[1392][0] = 114; EXPECTATIONS[1392][1] = 185; EXPECTATIONS[1393] = new int[4]; EXPECTATIONS[1393][0] = 49; EXPECTATIONS[1393][1] = 185; EXPECTATIONS[1393][2] = 239; EXPECTATIONS[1393][3] = 240; EXPECTATIONS[1394] = new int[3]; EXPECTATIONS[1394][0] = 111; EXPECTATIONS[1394][1] = 185; EXPECTATIONS[1394][2] = 241; EXPECTATIONS[1395] = new int[4]; EXPECTATIONS[1395][0] = 18; EXPECTATIONS[1395][1] = 185; EXPECTATIONS[1395][2] = 242; EXPECTATIONS[1395][3] = 243; EXPECTATIONS[1396] = new int[4]; EXPECTATIONS[1396][0] = 49; EXPECTATIONS[1396][1] = 186; EXPECTATIONS[1396][2] = 244; EXPECTATIONS[1396][3] = 245; EXPECTATIONS[1397] = new int[3]; EXPECTATIONS[1397][0] = 111; EXPECTATIONS[1397][1] = 186; EXPECTATIONS[1397][2] = 246; EXPECTATIONS[1398] = new int[4]; EXPECTATIONS[1398][0] = 18; EXPECTATIONS[1398][1] = 186; EXPECTATIONS[1398][2] = 247; EXPECTATIONS[1398][3] = 248; EXPECTATIONS[1399] = new int[3]; EXPECTATIONS[1399][0] = 104; EXPECTATIONS[1399][1] = 186; EXPECTATIONS[1399][2] = 249; EXPECTATIONS[1400] = new int[3]; EXPECTATIONS[1400][0] = 105; EXPECTATIONS[1400][1] = 186; EXPECTATIONS[1400][2] = 250; EXPECTATIONS[1401] = new int[3]; EXPECTATIONS[1401][0] = 19; EXPECTATIONS[1401][1] = 186; EXPECTATIONS[1401][2] = 251; EXPECTATIONS[1402] = new int[3]; EXPECTATIONS[1402][0] = 20; EXPECTATIONS[1402][1] = 186; EXPECTATIONS[1402][2] = 252; EXPECTATIONS[1403] = new int[4]; EXPECTATIONS[1403][0] = 49; EXPECTATIONS[1403][1] = 187; EXPECTATIONS[1403][2] = 253; EXPECTATIONS[1403][3] = 254; EXPECTATIONS[1404] = new int[3]; EXPECTATIONS[1404][0] = 111; EXPECTATIONS[1404][1] = 187; EXPECTATIONS[1404][2] = 255; EXPECTATIONS[1405] = new int[4]; EXPECTATIONS[1405][0] = 18; EXPECTATIONS[1405][1] = 187; EXPECTATIONS[1405][2] = 256; EXPECTATIONS[1405][3] = 257; EXPECTATIONS[1406] = new int[3]; EXPECTATIONS[1406][0] = 104; EXPECTATIONS[1406][1] = 187; EXPECTATIONS[1406][2] = 258; EXPECTATIONS[1407] = new int[3]; EXPECTATIONS[1407][0] = 105; EXPECTATIONS[1407][1] = 187; EXPECTATIONS[1407][2] = 259; EXPECTATIONS[1408] = new int[3]; EXPECTATIONS[1408][0] = 19; EXPECTATIONS[1408][1] = 187; EXPECTATIONS[1408][2] = 260; EXPECTATIONS[1409] = new int[3]; EXPECTATIONS[1409][0] = 20; EXPECTATIONS[1409][1] = 187; EXPECTATIONS[1409][2] = 261; EXPECTATIONS[1410] = new int[2]; EXPECTATIONS[1410][0] = 115; EXPECTATIONS[1410][1] = 188; EXPECTATIONS[1411] = new int[2]; EXPECTATIONS[1411][0] = 111; EXPECTATIONS[1411][1] = 188; EXPECTATIONS[1412] = new int[2]; EXPECTATIONS[1412][0] = 115; EXPECTATIONS[1412][1] = 189; EXPECTATIONS[1413] = new int[2]; EXPECTATIONS[1413][0] = 111; EXPECTATIONS[1413][1] = 189; EXPECTATIONS[1414] = new int[3]; EXPECTATIONS[1414][0] = 49; EXPECTATIONS[1414][1] = 190; EXPECTATIONS[1414][2] = 262; EXPECTATIONS[1415] = new int[2]; EXPECTATIONS[1415][0] = 115; EXPECTATIONS[1415][1] = 191; EXPECTATIONS[1416] = new int[2]; EXPECTATIONS[1416][0] = 111; EXPECTATIONS[1416][1] = 191; EXPECTATIONS[1417] = new int[2]; EXPECTATIONS[1417][0] = 115; EXPECTATIONS[1417][1] = 192; EXPECTATIONS[1418] = new int[2]; EXPECTATIONS[1418][0] = 111; EXPECTATIONS[1418][1] = 192; EXPECTATIONS[1419] = new int[2]; EXPECTATIONS[1419][0] = 111; EXPECTATIONS[1419][1] = 193; EXPECTATIONS[1420] = new int[3]; EXPECTATIONS[1420][0] = 49; EXPECTATIONS[1420][1] = 194; EXPECTATIONS[1420][2] = 263; EXPECTATIONS[1421] = new int[2]; EXPECTATIONS[1421][0] = 116; EXPECTATIONS[1421][1] = 195; EXPECTATIONS[1422] = new int[4]; EXPECTATIONS[1422][0] = 49; EXPECTATIONS[1422][1] = 195; EXPECTATIONS[1422][2] = 264; EXPECTATIONS[1422][3] = 265; EXPECTATIONS[1423] = new int[3]; EXPECTATIONS[1423][0] = 111; EXPECTATIONS[1423][1] = 195; EXPECTATIONS[1423][2] = 266; EXPECTATIONS[1424] = new int[4]; EXPECTATIONS[1424][0] = 18; EXPECTATIONS[1424][1] = 195; EXPECTATIONS[1424][2] = 267; EXPECTATIONS[1424][3] = 268; EXPECTATIONS[1425] = new int[3]; EXPECTATIONS[1425][0] = 104; EXPECTATIONS[1425][1] = 195; EXPECTATIONS[1425][2] = 269; EXPECTATIONS[1426] = new int[3]; EXPECTATIONS[1426][0] = 105; EXPECTATIONS[1426][1] = 195; EXPECTATIONS[1426][2] = 270; EXPECTATIONS[1427] = new int[3]; EXPECTATIONS[1427][0] = 19; EXPECTATIONS[1427][1] = 195; EXPECTATIONS[1427][2] = 271; EXPECTATIONS[1428] = new int[3]; EXPECTATIONS[1428][0] = 20; EXPECTATIONS[1428][1] = 195; EXPECTATIONS[1428][2] = 272; EXPECTATIONS[1429] = new int[3]; EXPECTATIONS[1429][0] = 49; EXPECTATIONS[1429][1] = 196; EXPECTATIONS[1429][2] = 273; EXPECTATIONS[1430] = new int[2]; EXPECTATIONS[1430][0] = 116; EXPECTATIONS[1430][1] = 197; EXPECTATIONS[1431] = new int[4]; EXPECTATIONS[1431][0] = 49; EXPECTATIONS[1431][1] = 197; EXPECTATIONS[1431][2] = 274; EXPECTATIONS[1431][3] = 275; EXPECTATIONS[1432] = new int[3]; EXPECTATIONS[1432][0] = 111; EXPECTATIONS[1432][1] = 197; EXPECTATIONS[1432][2] = 276; EXPECTATIONS[1433] = new int[4]; EXPECTATIONS[1433][0] = 18; EXPECTATIONS[1433][1] = 197; EXPECTATIONS[1433][2] = 277; EXPECTATIONS[1433][3] = 278; EXPECTATIONS[1434] = new int[3]; EXPECTATIONS[1434][0] = 104; EXPECTATIONS[1434][1] = 197; EXPECTATIONS[1434][2] = 279; EXPECTATIONS[1435] = new int[3]; EXPECTATIONS[1435][0] = 105; EXPECTATIONS[1435][1] = 197; EXPECTATIONS[1435][2] = 280; EXPECTATIONS[1436] = new int[3]; EXPECTATIONS[1436][0] = 19; EXPECTATIONS[1436][1] = 197; EXPECTATIONS[1436][2] = 281; EXPECTATIONS[1437] = new int[3]; EXPECTATIONS[1437][0] = 20; EXPECTATIONS[1437][1] = 197; EXPECTATIONS[1437][2] = 282; EXPECTATIONS[1438] = new int[2]; EXPECTATIONS[1438][0] = 116; EXPECTATIONS[1438][1] = 198; EXPECTATIONS[1439] = new int[4]; EXPECTATIONS[1439][0] = 49; EXPECTATIONS[1439][1] = 198; EXPECTATIONS[1439][2] = 283; EXPECTATIONS[1439][3] = 284; EXPECTATIONS[1440] = new int[3]; EXPECTATIONS[1440][0] = 111; EXPECTATIONS[1440][1] = 198; EXPECTATIONS[1440][2] = 285; EXPECTATIONS[1441] = new int[4]; EXPECTATIONS[1441][0] = 18; EXPECTATIONS[1441][1] = 198; EXPECTATIONS[1441][2] = 286; EXPECTATIONS[1441][3] = 287; EXPECTATIONS[1442] = new int[3]; EXPECTATIONS[1442][0] = 104; EXPECTATIONS[1442][1] = 198; EXPECTATIONS[1442][2] = 288; EXPECTATIONS[1443] = new int[3]; EXPECTATIONS[1443][0] = 105; EXPECTATIONS[1443][1] = 198; EXPECTATIONS[1443][2] = 289; EXPECTATIONS[1444] = new int[3]; EXPECTATIONS[1444][0] = 19; EXPECTATIONS[1444][1] = 198; EXPECTATIONS[1444][2] = 290; EXPECTATIONS[1445] = new int[3]; EXPECTATIONS[1445][0] = 20; EXPECTATIONS[1445][1] = 198; EXPECTATIONS[1445][2] = 291; EXPECTATIONS[1446] = new int[2]; EXPECTATIONS[1446][0] = 117; EXPECTATIONS[1446][1] = 199; EXPECTATIONS[1447] = new int[2]; EXPECTATIONS[1447][0] = 118; EXPECTATIONS[1447][1] = 199; EXPECTATIONS[1448] = new int[3]; EXPECTATIONS[1448][0] = 18; EXPECTATIONS[1448][1] = 200; EXPECTATIONS[1448][2] = 292; EXPECTATIONS[1449] = new int[2]; EXPECTATIONS[1449][0] = 118; EXPECTATIONS[1449][1] = 201; EXPECTATIONS[1450] = new int[2]; EXPECTATIONS[1450][0] = 118; EXPECTATIONS[1450][1] = 202; EXPECTATIONS[1451] = new int[3]; EXPECTATIONS[1451][0] = 49; EXPECTATIONS[1451][1] = 203; EXPECTATIONS[1451][2] = 293; EXPECTATIONS[1452] = new int[2]; EXPECTATIONS[1452][0] = 119; EXPECTATIONS[1452][1] = 204; EXPECTATIONS[1453] = new int[4]; EXPECTATIONS[1453][0] = 49; EXPECTATIONS[1453][1] = 204; EXPECTATIONS[1453][2] = 294; EXPECTATIONS[1453][3] = 295; EXPECTATIONS[1454] = new int[3]; EXPECTATIONS[1454][0] = 111; EXPECTATIONS[1454][1] = 204; EXPECTATIONS[1454][2] = 296; EXPECTATIONS[1455] = new int[4]; EXPECTATIONS[1455][0] = 18; EXPECTATIONS[1455][1] = 204; EXPECTATIONS[1455][2] = 297; EXPECTATIONS[1455][3] = 298; EXPECTATIONS[1456] = new int[3]; EXPECTATIONS[1456][0] = 104; EXPECTATIONS[1456][1] = 204; EXPECTATIONS[1456][2] = 299; EXPECTATIONS[1457] = new int[3]; EXPECTATIONS[1457][0] = 105; EXPECTATIONS[1457][1] = 204; EXPECTATIONS[1457][2] = 300; EXPECTATIONS[1458] = new int[3]; EXPECTATIONS[1458][0] = 19; EXPECTATIONS[1458][1] = 204; EXPECTATIONS[1458][2] = 301; EXPECTATIONS[1459] = new int[3]; EXPECTATIONS[1459][0] = 20; EXPECTATIONS[1459][1] = 204; EXPECTATIONS[1459][2] = 302; EXPECTATIONS[1460] = new int[3]; EXPECTATIONS[1460][0] = 49; EXPECTATIONS[1460][1] = 205; EXPECTATIONS[1460][2] = 303; EXPECTATIONS[1461] = new int[2]; EXPECTATIONS[1461][0] = 119; EXPECTATIONS[1461][1] = 206; EXPECTATIONS[1462] = new int[4]; EXPECTATIONS[1462][0] = 49; EXPECTATIONS[1462][1] = 206; EXPECTATIONS[1462][2] = 304; EXPECTATIONS[1462][3] = 305; EXPECTATIONS[1463] = new int[3]; EXPECTATIONS[1463][0] = 111; EXPECTATIONS[1463][1] = 206; EXPECTATIONS[1463][2] = 306; EXPECTATIONS[1464] = new int[4]; EXPECTATIONS[1464][0] = 18; EXPECTATIONS[1464][1] = 206; EXPECTATIONS[1464][2] = 307; EXPECTATIONS[1464][3] = 308; EXPECTATIONS[1465] = new int[3]; EXPECTATIONS[1465][0] = 104; EXPECTATIONS[1465][1] = 206; EXPECTATIONS[1465][2] = 309; EXPECTATIONS[1466] = new int[3]; EXPECTATIONS[1466][0] = 105; EXPECTATIONS[1466][1] = 206; EXPECTATIONS[1466][2] = 310; EXPECTATIONS[1467] = new int[3]; EXPECTATIONS[1467][0] = 19; EXPECTATIONS[1467][1] = 206; EXPECTATIONS[1467][2] = 311; EXPECTATIONS[1468] = new int[3]; EXPECTATIONS[1468][0] = 20; EXPECTATIONS[1468][1] = 206; EXPECTATIONS[1468][2] = 312; EXPECTATIONS[1469] = new int[2]; EXPECTATIONS[1469][0] = 119; EXPECTATIONS[1469][1] = 207; EXPECTATIONS[1470] = new int[4]; EXPECTATIONS[1470][0] = 49; EXPECTATIONS[1470][1] = 207; EXPECTATIONS[1470][2] = 313; EXPECTATIONS[1470][3] = 314; EXPECTATIONS[1471] = new int[3]; EXPECTATIONS[1471][0] = 111; EXPECTATIONS[1471][1] = 207; EXPECTATIONS[1471][2] = 315; EXPECTATIONS[1472] = new int[4]; EXPECTATIONS[1472][0] = 18; EXPECTATIONS[1472][1] = 207; EXPECTATIONS[1472][2] = 316; EXPECTATIONS[1472][3] = 317; EXPECTATIONS[1473] = new int[3]; EXPECTATIONS[1473][0] = 104; EXPECTATIONS[1473][1] = 207; EXPECTATIONS[1473][2] = 318; EXPECTATIONS[1474] = new int[3]; EXPECTATIONS[1474][0] = 105; EXPECTATIONS[1474][1] = 207; EXPECTATIONS[1474][2] = 319; EXPECTATIONS[1475] = new int[3]; EXPECTATIONS[1475][0] = 19; EXPECTATIONS[1475][1] = 207; EXPECTATIONS[1475][2] = 320; EXPECTATIONS[1476] = new int[3]; EXPECTATIONS[1476][0] = 20; EXPECTATIONS[1476][1] = 207; EXPECTATIONS[1476][2] = 321; EXPECTATIONS[1477] = new int[2]; EXPECTATIONS[1477][0] = 120; EXPECTATIONS[1477][1] = 208; EXPECTATIONS[1478] = new int[2]; EXPECTATIONS[1478][0] = 121; EXPECTATIONS[1478][1] = 209; EXPECTATIONS[1479] = new int[2]; EXPECTATIONS[1479][0] = 122; EXPECTATIONS[1479][1] = 210; EXPECTATIONS[1480] = new int[3]; EXPECTATIONS[1480][0] = 9; EXPECTATIONS[1480][1] = 210; EXPECTATIONS[1480][2] = 322; EXPECTATIONS[1481] = new int[2]; EXPECTATIONS[1481][0] = 21; EXPECTATIONS[1481][1] = 210; EXPECTATIONS[1482] = new int[2]; EXPECTATIONS[1482][0] = 22; EXPECTATIONS[1482][1] = 210; EXPECTATIONS[1483] = new int[2]; EXPECTATIONS[1483][0] = 23; EXPECTATIONS[1483][1] = 210; EXPECTATIONS[1484] = new int[2]; EXPECTATIONS[1484][0] = 24; EXPECTATIONS[1484][1] = 210; EXPECTATIONS[1485] = new int[2]; EXPECTATIONS[1485][0] = 25; EXPECTATIONS[1485][1] = 210; EXPECTATIONS[1486] = new int[2]; EXPECTATIONS[1486][0] = 26; EXPECTATIONS[1486][1] = 210; EXPECTATIONS[1487] = new int[2]; EXPECTATIONS[1487][0] = 27; EXPECTATIONS[1487][1] = 210; EXPECTATIONS[1488] = new int[2]; EXPECTATIONS[1488][0] = 28; EXPECTATIONS[1488][1] = 210; EXPECTATIONS[1489] = new int[2]; EXPECTATIONS[1489][0] = 29; EXPECTATIONS[1489][1] = 210; EXPECTATIONS[1490] = new int[2]; EXPECTATIONS[1490][0] = 30; EXPECTATIONS[1490][1] = 210; EXPECTATIONS[1491] = new int[2]; EXPECTATIONS[1491][0] = 31; EXPECTATIONS[1491][1] = 210; EXPECTATIONS[1492] = new int[2]; EXPECTATIONS[1492][0] = 32; EXPECTATIONS[1492][1] = 210; EXPECTATIONS[1493] = new int[2]; EXPECTATIONS[1493][0] = 33; EXPECTATIONS[1493][1] = 210; EXPECTATIONS[1494] = new int[2]; EXPECTATIONS[1494][0] = 34; EXPECTATIONS[1494][1] = 210; EXPECTATIONS[1495] = new int[2]; EXPECTATIONS[1495][0] = 35; EXPECTATIONS[1495][1] = 210; EXPECTATIONS[1496] = new int[2]; EXPECTATIONS[1496][0] = 36; EXPECTATIONS[1496][1] = 210; EXPECTATIONS[1497] = new int[2]; EXPECTATIONS[1497][0] = 37; EXPECTATIONS[1497][1] = 210; EXPECTATIONS[1498] = new int[2]; EXPECTATIONS[1498][0] = 38; EXPECTATIONS[1498][1] = 210; EXPECTATIONS[1499] = new int[2]; EXPECTATIONS[1499][0] = 117; EXPECTATIONS[1499][1] = 210; EXPECTATIONS[1500] = new int[2]; EXPECTATIONS[1500][0] = 118; EXPECTATIONS[1500][1] = 210; EXPECTATIONS[1501] = new int[2]; EXPECTATIONS[1501][0] = 123; EXPECTATIONS[1501][1] = 211; EXPECTATIONS[1502] = new int[3]; EXPECTATIONS[1502][0] = 9; EXPECTATIONS[1502][1] = 212; EXPECTATIONS[1502][2] = 323; EXPECTATIONS[1503] = new int[2]; EXPECTATIONS[1503][0] = 21; EXPECTATIONS[1503][1] = 212; EXPECTATIONS[1504] = new int[2]; EXPECTATIONS[1504][0] = 22; EXPECTATIONS[1504][1] = 212; EXPECTATIONS[1505] = new int[2]; EXPECTATIONS[1505][0] = 23; EXPECTATIONS[1505][1] = 212; EXPECTATIONS[1506] = new int[2]; EXPECTATIONS[1506][0] = 24; EXPECTATIONS[1506][1] = 212; EXPECTATIONS[1507] = new int[2]; EXPECTATIONS[1507][0] = 25; EXPECTATIONS[1507][1] = 212; EXPECTATIONS[1508] = new int[2]; EXPECTATIONS[1508][0] = 26; EXPECTATIONS[1508][1] = 212; EXPECTATIONS[1509] = new int[2]; EXPECTATIONS[1509][0] = 27; EXPECTATIONS[1509][1] = 212; EXPECTATIONS[1510] = new int[2]; EXPECTATIONS[1510][0] = 28; EXPECTATIONS[1510][1] = 212; EXPECTATIONS[1511] = new int[2]; EXPECTATIONS[1511][0] = 29; EXPECTATIONS[1511][1] = 212; EXPECTATIONS[1512] = new int[2]; EXPECTATIONS[1512][0] = 30; EXPECTATIONS[1512][1] = 212; EXPECTATIONS[1513] = new int[2]; EXPECTATIONS[1513][0] = 31; EXPECTATIONS[1513][1] = 212; EXPECTATIONS[1514] = new int[2]; EXPECTATIONS[1514][0] = 32; EXPECTATIONS[1514][1] = 212; EXPECTATIONS[1515] = new int[2]; EXPECTATIONS[1515][0] = 33; EXPECTATIONS[1515][1] = 212; EXPECTATIONS[1516] = new int[2]; EXPECTATIONS[1516][0] = 34; EXPECTATIONS[1516][1] = 212; EXPECTATIONS[1517] = new int[2]; EXPECTATIONS[1517][0] = 35; EXPECTATIONS[1517][1] = 212; EXPECTATIONS[1518] = new int[2]; EXPECTATIONS[1518][0] = 36; EXPECTATIONS[1518][1] = 212; EXPECTATIONS[1519] = new int[2]; EXPECTATIONS[1519][0] = 37; EXPECTATIONS[1519][1] = 212; EXPECTATIONS[1520] = new int[2]; EXPECTATIONS[1520][0] = 38; EXPECTATIONS[1520][1] = 212; EXPECTATIONS[1521] = new int[2]; EXPECTATIONS[1521][0] = 117; EXPECTATIONS[1521][1] = 212; EXPECTATIONS[1522] = new int[2]; EXPECTATIONS[1522][0] = 118; EXPECTATIONS[1522][1] = 212; EXPECTATIONS[1523] = new int[3]; EXPECTATIONS[1523][0] = 9; EXPECTATIONS[1523][1] = 213; EXPECTATIONS[1523][2] = 324; EXPECTATIONS[1524] = new int[2]; EXPECTATIONS[1524][0] = 21; EXPECTATIONS[1524][1] = 213; EXPECTATIONS[1525] = new int[2]; EXPECTATIONS[1525][0] = 22; EXPECTATIONS[1525][1] = 213; EXPECTATIONS[1526] = new int[2]; EXPECTATIONS[1526][0] = 23; EXPECTATIONS[1526][1] = 213; EXPECTATIONS[1527] = new int[2]; EXPECTATIONS[1527][0] = 24; EXPECTATIONS[1527][1] = 213; EXPECTATIONS[1528] = new int[2]; EXPECTATIONS[1528][0] = 25; EXPECTATIONS[1528][1] = 213; EXPECTATIONS[1529] = new int[2]; EXPECTATIONS[1529][0] = 26; EXPECTATIONS[1529][1] = 213; EXPECTATIONS[1530] = new int[2]; EXPECTATIONS[1530][0] = 27; EXPECTATIONS[1530][1] = 213; EXPECTATIONS[1531] = new int[2]; EXPECTATIONS[1531][0] = 28; EXPECTATIONS[1531][1] = 213; EXPECTATIONS[1532] = new int[2]; EXPECTATIONS[1532][0] = 29; EXPECTATIONS[1532][1] = 213; EXPECTATIONS[1533] = new int[2]; EXPECTATIONS[1533][0] = 30; EXPECTATIONS[1533][1] = 213; EXPECTATIONS[1534] = new int[2]; EXPECTATIONS[1534][0] = 31; EXPECTATIONS[1534][1] = 213; EXPECTATIONS[1535] = new int[2]; EXPECTATIONS[1535][0] = 32; EXPECTATIONS[1535][1] = 213; EXPECTATIONS[1536] = new int[2]; EXPECTATIONS[1536][0] = 33; EXPECTATIONS[1536][1] = 213; EXPECTATIONS[1537] = new int[2]; EXPECTATIONS[1537][0] = 34; EXPECTATIONS[1537][1] = 213; EXPECTATIONS[1538] = new int[2]; EXPECTATIONS[1538][0] = 35; EXPECTATIONS[1538][1] = 213; EXPECTATIONS[1539] = new int[2]; EXPECTATIONS[1539][0] = 36; EXPECTATIONS[1539][1] = 213; EXPECTATIONS[1540] = new int[2]; EXPECTATIONS[1540][0] = 37; EXPECTATIONS[1540][1] = 213; EXPECTATIONS[1541] = new int[2]; EXPECTATIONS[1541][0] = 38; EXPECTATIONS[1541][1] = 213; EXPECTATIONS[1542] = new int[2]; EXPECTATIONS[1542][0] = 117; EXPECTATIONS[1542][1] = 213; EXPECTATIONS[1543] = new int[2]; EXPECTATIONS[1543][0] = 118; EXPECTATIONS[1543][1] = 213; EXPECTATIONS[1544] = new int[3]; EXPECTATIONS[1544][0] = 124; EXPECTATIONS[1544][1] = 214; EXPECTATIONS[1544][2] = 325; EXPECTATIONS[1545] = new int[2]; EXPECTATIONS[1545][0] = 50; EXPECTATIONS[1545][1] = 215; EXPECTATIONS[1546] = new int[2]; EXPECTATIONS[1546][0] = 21; EXPECTATIONS[1546][1] = 215; EXPECTATIONS[1547] = new int[2]; EXPECTATIONS[1547][0] = 22; EXPECTATIONS[1547][1] = 215; EXPECTATIONS[1548] = new int[2]; EXPECTATIONS[1548][0] = 23; EXPECTATIONS[1548][1] = 215; EXPECTATIONS[1549] = new int[2]; EXPECTATIONS[1549][0] = 24; EXPECTATIONS[1549][1] = 215; EXPECTATIONS[1550] = new int[2]; EXPECTATIONS[1550][0] = 25; EXPECTATIONS[1550][1] = 215; EXPECTATIONS[1551] = new int[2]; EXPECTATIONS[1551][0] = 26; EXPECTATIONS[1551][1] = 215; EXPECTATIONS[1552] = new int[2]; EXPECTATIONS[1552][0] = 27; EXPECTATIONS[1552][1] = 215; EXPECTATIONS[1553] = new int[2]; EXPECTATIONS[1553][0] = 28; EXPECTATIONS[1553][1] = 215; EXPECTATIONS[1554] = new int[2]; EXPECTATIONS[1554][0] = 29; EXPECTATIONS[1554][1] = 215; EXPECTATIONS[1555] = new int[2]; EXPECTATIONS[1555][0] = 30; EXPECTATIONS[1555][1] = 215; EXPECTATIONS[1556] = new int[2]; EXPECTATIONS[1556][0] = 31; EXPECTATIONS[1556][1] = 215; EXPECTATIONS[1557] = new int[2]; EXPECTATIONS[1557][0] = 32; EXPECTATIONS[1557][1] = 215; EXPECTATIONS[1558] = new int[2]; EXPECTATIONS[1558][0] = 33; EXPECTATIONS[1558][1] = 215; EXPECTATIONS[1559] = new int[2]; EXPECTATIONS[1559][0] = 34; EXPECTATIONS[1559][1] = 215; EXPECTATIONS[1560] = new int[2]; EXPECTATIONS[1560][0] = 35; EXPECTATIONS[1560][1] = 215; EXPECTATIONS[1561] = new int[2]; EXPECTATIONS[1561][0] = 36; EXPECTATIONS[1561][1] = 215; EXPECTATIONS[1562] = new int[2]; EXPECTATIONS[1562][0] = 37; EXPECTATIONS[1562][1] = 215; EXPECTATIONS[1563] = new int[2]; EXPECTATIONS[1563][0] = 38; EXPECTATIONS[1563][1] = 215; EXPECTATIONS[1564] = new int[3]; EXPECTATIONS[1564][0] = 19; EXPECTATIONS[1564][1] = 215; EXPECTATIONS[1564][2] = 326; EXPECTATIONS[1565] = new int[3]; EXPECTATIONS[1565][0] = 20; EXPECTATIONS[1565][1] = 215; EXPECTATIONS[1565][2] = 327; EXPECTATIONS[1566] = new int[2]; EXPECTATIONS[1566][0] = 96; EXPECTATIONS[1566][1] = 215; EXPECTATIONS[1567] = new int[2]; EXPECTATIONS[1567][0] = 76; EXPECTATIONS[1567][1] = 215; EXPECTATIONS[1568] = new int[2]; EXPECTATIONS[1568][0] = 77; EXPECTATIONS[1568][1] = 215; EXPECTATIONS[1569] = new int[2]; EXPECTATIONS[1569][0] = 78; EXPECTATIONS[1569][1] = 215; EXPECTATIONS[1570] = new int[2]; EXPECTATIONS[1570][0] = 79; EXPECTATIONS[1570][1] = 215; EXPECTATIONS[1571] = new int[2]; EXPECTATIONS[1571][0] = 80; EXPECTATIONS[1571][1] = 215; EXPECTATIONS[1572] = new int[2]; EXPECTATIONS[1572][0] = 81; EXPECTATIONS[1572][1] = 215; EXPECTATIONS[1573] = new int[2]; EXPECTATIONS[1573][0] = 82; EXPECTATIONS[1573][1] = 215; EXPECTATIONS[1574] = new int[2]; EXPECTATIONS[1574][0] = 83; EXPECTATIONS[1574][1] = 215; EXPECTATIONS[1575] = new int[2]; EXPECTATIONS[1575][0] = 84; EXPECTATIONS[1575][1] = 215; EXPECTATIONS[1576] = new int[2]; EXPECTATIONS[1576][0] = 110; EXPECTATIONS[1576][1] = 215; EXPECTATIONS[1577] = new int[4]; EXPECTATIONS[1577][0] = 49; EXPECTATIONS[1577][1] = 215; EXPECTATIONS[1577][2] = 328; EXPECTATIONS[1577][3] = 329; EXPECTATIONS[1578] = new int[3]; EXPECTATIONS[1578][0] = 111; EXPECTATIONS[1578][1] = 215; EXPECTATIONS[1578][2] = 330; EXPECTATIONS[1579] = new int[4]; EXPECTATIONS[1579][0] = 18; EXPECTATIONS[1579][1] = 215; EXPECTATIONS[1579][2] = 331; EXPECTATIONS[1579][3] = 332; EXPECTATIONS[1580] = new int[2]; EXPECTATIONS[1580][0] = 114; EXPECTATIONS[1580][1] = 215; EXPECTATIONS[1581] = new int[2]; EXPECTATIONS[1581][0] = 115; EXPECTATIONS[1581][1] = 215; EXPECTATIONS[1582] = new int[2]; EXPECTATIONS[1582][0] = 111; EXPECTATIONS[1582][1] = 215; EXPECTATIONS[1583] = new int[2]; EXPECTATIONS[1583][0] = 119; EXPECTATIONS[1583][1] = 215; EXPECTATIONS[1584] = new int[2]; EXPECTATIONS[1584][0] = 50; EXPECTATIONS[1584][1] = 216; EXPECTATIONS[1585] = new int[2]; EXPECTATIONS[1585][0] = 21; EXPECTATIONS[1585][1] = 216; EXPECTATIONS[1586] = new int[2]; EXPECTATIONS[1586][0] = 22; EXPECTATIONS[1586][1] = 216; EXPECTATIONS[1587] = new int[2]; EXPECTATIONS[1587][0] = 23; EXPECTATIONS[1587][1] = 216; EXPECTATIONS[1588] = new int[2]; EXPECTATIONS[1588][0] = 24; EXPECTATIONS[1588][1] = 216; EXPECTATIONS[1589] = new int[2]; EXPECTATIONS[1589][0] = 25; EXPECTATIONS[1589][1] = 216; EXPECTATIONS[1590] = new int[2]; EXPECTATIONS[1590][0] = 26; EXPECTATIONS[1590][1] = 216; EXPECTATIONS[1591] = new int[2]; EXPECTATIONS[1591][0] = 27; EXPECTATIONS[1591][1] = 216; EXPECTATIONS[1592] = new int[2]; EXPECTATIONS[1592][0] = 28; EXPECTATIONS[1592][1] = 216; EXPECTATIONS[1593] = new int[2]; EXPECTATIONS[1593][0] = 29; EXPECTATIONS[1593][1] = 216; EXPECTATIONS[1594] = new int[2]; EXPECTATIONS[1594][0] = 30; EXPECTATIONS[1594][1] = 216; EXPECTATIONS[1595] = new int[2]; EXPECTATIONS[1595][0] = 31; EXPECTATIONS[1595][1] = 216; EXPECTATIONS[1596] = new int[2]; EXPECTATIONS[1596][0] = 32; EXPECTATIONS[1596][1] = 216; EXPECTATIONS[1597] = new int[2]; EXPECTATIONS[1597][0] = 33; EXPECTATIONS[1597][1] = 216; EXPECTATIONS[1598] = new int[2]; EXPECTATIONS[1598][0] = 34; EXPECTATIONS[1598][1] = 216; EXPECTATIONS[1599] = new int[2]; EXPECTATIONS[1599][0] = 35; EXPECTATIONS[1599][1] = 216; EXPECTATIONS[1600] = new int[2]; EXPECTATIONS[1600][0] = 36; EXPECTATIONS[1600][1] = 216; EXPECTATIONS[1601] = new int[2]; EXPECTATIONS[1601][0] = 37; EXPECTATIONS[1601][1] = 216; EXPECTATIONS[1602] = new int[2]; EXPECTATIONS[1602][0] = 38; EXPECTATIONS[1602][1] = 216; EXPECTATIONS[1603] = new int[3]; EXPECTATIONS[1603][0] = 19; EXPECTATIONS[1603][1] = 216; EXPECTATIONS[1603][2] = 333; EXPECTATIONS[1604] = new int[3]; EXPECTATIONS[1604][0] = 20; EXPECTATIONS[1604][1] = 216; EXPECTATIONS[1604][2] = 334; EXPECTATIONS[1605] = new int[2]; EXPECTATIONS[1605][0] = 96; EXPECTATIONS[1605][1] = 216; EXPECTATIONS[1606] = new int[2]; EXPECTATIONS[1606][0] = 76; EXPECTATIONS[1606][1] = 216; EXPECTATIONS[1607] = new int[2]; EXPECTATIONS[1607][0] = 77; EXPECTATIONS[1607][1] = 216; EXPECTATIONS[1608] = new int[2]; EXPECTATIONS[1608][0] = 78; EXPECTATIONS[1608][1] = 216; EXPECTATIONS[1609] = new int[2]; EXPECTATIONS[1609][0] = 79; EXPECTATIONS[1609][1] = 216; EXPECTATIONS[1610] = new int[2]; EXPECTATIONS[1610][0] = 80; EXPECTATIONS[1610][1] = 216; EXPECTATIONS[1611] = new int[2]; EXPECTATIONS[1611][0] = 81; EXPECTATIONS[1611][1] = 216; EXPECTATIONS[1612] = new int[2]; EXPECTATIONS[1612][0] = 82; EXPECTATIONS[1612][1] = 216; EXPECTATIONS[1613] = new int[2]; EXPECTATIONS[1613][0] = 83; EXPECTATIONS[1613][1] = 216; EXPECTATIONS[1614] = new int[2]; EXPECTATIONS[1614][0] = 84; EXPECTATIONS[1614][1] = 216; EXPECTATIONS[1615] = new int[2]; EXPECTATIONS[1615][0] = 110; EXPECTATIONS[1615][1] = 216; EXPECTATIONS[1616] = new int[4]; EXPECTATIONS[1616][0] = 49; EXPECTATIONS[1616][1] = 216; EXPECTATIONS[1616][2] = 335; EXPECTATIONS[1616][3] = 336; EXPECTATIONS[1617] = new int[3]; EXPECTATIONS[1617][0] = 111; EXPECTATIONS[1617][1] = 216; EXPECTATIONS[1617][2] = 337; EXPECTATIONS[1618] = new int[4]; EXPECTATIONS[1618][0] = 18; EXPECTATIONS[1618][1] = 216; EXPECTATIONS[1618][2] = 338; EXPECTATIONS[1618][3] = 339; EXPECTATIONS[1619] = new int[2]; EXPECTATIONS[1619][0] = 114; EXPECTATIONS[1619][1] = 216; EXPECTATIONS[1620] = new int[2]; EXPECTATIONS[1620][0] = 115; EXPECTATIONS[1620][1] = 216; EXPECTATIONS[1621] = new int[2]; EXPECTATIONS[1621][0] = 111; EXPECTATIONS[1621][1] = 216; EXPECTATIONS[1622] = new int[2]; EXPECTATIONS[1622][0] = 119; EXPECTATIONS[1622][1] = 216; } public static void initialize() { initialize0(); initialize1(); } static { initialize(); } }
ae8399cac6fc632d7404c47c7c1d9dce2a0d7d4f
c8b72333da5b9b9d3fc0723e8d3715ec2e1946bf
/src/main/java/ua/sombra/entity/AuthorEntity.java
f81066a3f15699cb00b1be4e5b473eb500451de9
[]
no_license
yurasheremeta/Test
4ae4fabe0555535896318d4d804baee25b0f70bd
5b887e4fde13a64e0e67546bdfc8bd3122991b35
refs/heads/master
2020-03-26T05:29:45.233803
2018-08-15T22:04:09
2018-08-15T22:04:09
124,806,704
0
0
null
null
null
null
UTF-8
Java
false
false
462
java
package ua.sombra.entity; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import java.sql.Date; import java.util.List; import javax.persistence.*; @Getter @Setter @NoArgsConstructor @Entity @Table(name = "author") public class AuthorEntity extends BaseEntity{ private String name; private String gender; private Date born; @ManyToMany(fetch = FetchType.LAZY,mappedBy = "authors") private List<BookEntity> books; }
18187184b538f17408f7d325d02c3bac90ac65aa
1ca9dafcfe05c2f7744dc2871f17b32621f470cb
/Coursera/GladLib/GladLibMap.java
e31363ba18ef56adcfdf35cbafc9602e77218a1d
[]
no_license
KuanWeiBeCool/BigJavaPracticeProblems
7efc73151fa5d59e3c6f0184029c1762298c6edd
079d4bc141b6ff37fb36f79bc3bad75f15f96750
refs/heads/main
2023-07-04T18:18:33.233449
2021-08-18T15:29:57
2021-08-18T15:29:57
359,575,083
0
0
null
null
null
null
UTF-8
Java
false
false
5,312
java
import edu.duke.*; import java.util.*; public class GladLibMap { private ArrayList<String> usedList; private ArrayList<String> usedCategory; private Random myRandom; private HashMap<String, ArrayList<String>> myMap; private static String dataSourceURL = "http://dukelearntoprogram.com/course3/data"; private static String dataSourceDirectory = "datalong"; public GladLibMap(){ myMap = new HashMap<String, ArrayList<String>>(); initializeFromSource(dataSourceDirectory); myRandom = new Random(); } public GladLibMap(String source){ myMap = new HashMap<String, ArrayList<String>>(); initializeFromSource(source); myRandom = new Random(); } private void initializeFromSource(String source) { myMap.put("adjectiveList", readIt(source+"/adjective.txt")); myMap.put("nounList", readIt(source+"/noun.txt")); myMap.put("colorList", readIt(source+"/color.txt")); myMap.put("countryList", readIt(source+"/country.txt")); myMap.put("nameList", readIt(source+"/name.txt")); myMap.put("animalList", readIt(source+"/animal.txt")); myMap.put("timeframeList", readIt(source+"/timeframe.txt")); myMap.put("verbList", readIt(source+"/verb.txt")); myMap.put("fruitList", readIt(source+"/fruit.txt")); usedList = new ArrayList<String>(); usedCategory = new ArrayList<String>(); } private String randomFrom(ArrayList<String> source){ int index = myRandom.nextInt(source.size()); return source.get(index); } private String getSubstitute(String label) { String listName = label + "List"; // System.out.println(listName); if (label.equals("number")){ return ""+myRandom.nextInt(50)+5; } if (myMap.containsKey(listName)){ // System.out.println("Yes"); return randomFrom(myMap.get(listName)); } return "**UNKNOWN**"; } private String processWord(String w){ int first = w.indexOf("<"); int last = w.indexOf(">",first); if (first == -1 || last == -1){ return w; } // String prefix = w.substring(0,first); // System.out.println("prefix: " + prefix); // String suffix = w.substring(last+1); // System.out.println("suffix: " + prefix); String category = w.substring(first+1,last); if ((usedCategory.indexOf(category) == -1) && (!category.equals("number"))){ usedCategory.add(category); } String sub = getSubstitute(w.substring(first+1,last)); while (usedList.indexOf(sub) != -1){ sub = getSubstitute(w.substring(first+1,last)); } usedList.add(sub); return sub; } private void printOut(String s, int lineWidth){ int charsWritten = 0; for(String w : s.split("\\s+")){ if (charsWritten + w.length() > lineWidth){ System.out.println(); charsWritten = 0; } System.out.print(w+" "); charsWritten += w.length() + 1; } } private String fromTemplate(String source){ String story = ""; if (source.startsWith("http")) { URLResource resource = new URLResource(source); for(String word : resource.words()){ story = story + processWord(word) + " "; } } else { FileResource resource = new FileResource(source); for(String word : resource.words()){ story = story + processWord(word) + " "; } } return story; } private ArrayList<String> readIt(String source){ ArrayList<String> list = new ArrayList<String>(); if (source.startsWith("http")) { URLResource resource = new URLResource(source); for(String line : resource.lines()){ list.add(line); } } else { FileResource resource = new FileResource(source); for(String line : resource.lines()){ list.add(line); } } return list; } public void makeStory(){ usedList.clear(); usedCategory.clear(); System.out.println("\n"); String story = fromTemplate("data/madtemplate2.txt"); printOut(story, 60); int totalWords = totalWordsInMap(); int totalWordsCategory = totalWordsConsidered(); System.out.println("Total words: " + totalWords + "; Total words considered " + totalWordsCategory); } private int totalWordsInMap(){ int totalCount = 0; for(String listName : myMap.keySet()){ totalCount += myMap.get(listName).size(); } return totalCount; } private int totalWordsConsidered(){ int totalCount = 0; for(String category : usedCategory){ String listName = category + "List"; System.out.println(listName); totalCount += myMap.get(listName).size(); } return totalCount; } }
102aece46fff7596dc2c210d765a3431be8bf94f
44c5ef884143b3f24ca616189edb40833a11ab0b
/src/main/java/WebApp/servlet/StaticServlet.java
7255923d25957a8d099d056b9c921842752d8313
[]
no_license
shahsevil/sevil_homework
1e0a2e140e1c4038298790b617bc1d8a4a5bc198
383c65769fc4b327c6f2e59d9f27a5663dc310c2
refs/heads/master
2023-06-23T22:37:41.955528
2020-04-20T09:26:28
2020-04-20T09:26:28
239,511,669
0
0
null
2023-06-13T22:55:19
2020-02-10T12:55:09
Java
UTF-8
Java
false
false
895
java
package WebApp.servlet; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.io.OutputStream; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; public class StaticServlet extends HttpServlet { private final String subPath; public StaticServlet(String subPath) { this.subPath = subPath; } @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { String filename = req.getPathInfo(); String osFileLocation = "content"; Path path = Paths.get(osFileLocation, subPath, filename); try (OutputStream os = resp.getOutputStream()) { Files.copy(path, os); } } }
4202e9f446ba3834d75231217aa2e02b9f0c7a30
81707652159ce1c1e5611c95960ee30c5911ad81
/generala-server/src/main/java/uy/edu/cei/generala/server/services/impl/UserServiceInDBImpl.java
55d9b26e0c4fe8f5f83d626f8da0a2ff108b66d9
[]
no_license
jesi-franco/generala
0a7c9aa2a98600fdf4e1e77430f253708ad1e369
86ad8cffc1c866532346d7053a4ad618252f52a6
refs/heads/master
2020-04-11T15:58:08.049677
2018-12-17T22:19:34
2018-12-17T22:19:34
161,909,028
0
0
null
null
null
null
UTF-8
Java
false
false
1,689
java
package uy.edu.cei.generala.server.services.impl; import javax.persistence.EntityManager; import javax.persistence.EntityManagerFactory; import javax.persistence.Persistence; import javax.persistence.TypedQuery; import uy.edu.cei.generala.domain.UserModel; import uy.edu.cei.generala.server.services.UserService; public class UserServiceInDBImpl implements UserService { private static UserServiceInDBImpl instance; private EntityManagerFactory emf; private EntityManager em; public EntityManagerFactory getEmf() { return emf; } public void setEmf(EntityManagerFactory emf) { this.emf = emf; } public EntityManager getEm() { return em; } public void setEm(EntityManager em) { this.em = em; } public static void setInstance(UserServiceInDBImpl instance) { UserServiceInDBImpl.instance = instance; } static { UserServiceInDBImpl.instance = new UserServiceInDBImpl(); } public static UserService getInstance() { return UserServiceInDBImpl.instance; } private UserServiceInDBImpl() { this.emf = Persistence.createEntityManagerFactory("jpaDS"); this.em = emf.createEntityManager(); } @Override public UserModel findUserByUsername(String username, String password) { UserModel user = null; em.getTransaction().begin(); TypedQuery<UserModel> query = em.createNamedQuery("UserModel.login", UserModel.class) .setParameter("username", username) .setParameter("password", password); em.getTransaction().commit(); return user; } /*@Override public UserModel findUserByUsername(String username) { // TODO Auto-generated method stub return null; }*/ }
10df3121a12ca9cc011cf1fdf6c496c6ef02b7c7
7791973ca350994b734557803f91a3fd47ea1c02
/Arrays/ProductSubarray.java
9e42f12382f0c86033339c9350398c1fba8fb4cf
[]
no_license
gupta29470/Practice
4713ae02a5ab84c6783d711d53df227d9060604a
81676b21fbf0191f8ded836d19f0c280b4bda1cd
refs/heads/master
2023-07-03T15:52:49.832892
2021-08-17T08:49:05
2021-08-17T08:49:05
357,317,997
0
0
null
null
null
null
UTF-8
Java
false
false
3,130
java
import java.io.*; class ProductSubarray { // Utility functions to get minimum of two integers static int min(int x, int y) { return x < y ? x : y; } // Utility functions to get maximum of two integers static int max(int x, int y) { return x > y ? x : y; } /* Returns the product of max product subarray. Assumes that the given array always has a subarray with product more than 1 */ static int maxSubarrayProduct(int arr[]) { int n = arr.length; // max positive product ending at the current position int max_ending_here = 1; // min negative product ending at the current position int min_ending_here = 1; // Initialize overall max product int max_so_far = 1; int flag = 0; /* Traverse through the array. Following values are maintained after the ith iteration: max_ending_here is always 1 or some positive product ending with arr[i] min_ending_here is always 1 or some negative product ending with arr[i] */ for (int i = 0; i < n; i++) { /* If this element is positive, update max_ending_here. Update min_ending_here only if min_ending_here is negative */ if (arr[i] > 0) { max_ending_here = max_ending_here * arr[i]; min_ending_here = min(min_ending_here * arr[i], 1); flag = 1; } /* If this element is 0, then the maximum product cannot end here, make both max_ending_here and min_ending _here 0 Assumption: Output is alway greater than or equal to 1. */ else if (arr[i] == 0) { max_ending_here = 1; min_ending_here = 1; } /* If element is negative. This is tricky max_ending_here can either be 1 or positive. min_ending_here can either be 1 or negative. next min_ending_here will always be prev. max_ending_here * arr[i] next max_ending_here will be 1 if prev min_ending_here is 1, otherwise next max_ending_here will be prev min_ending_here * arr[i] */ else { int temp = max_ending_here; max_ending_here = max(min_ending_here * arr[i], 1); min_ending_here = temp * arr[i]; } // update max_so_far, if needed if (max_so_far < max_ending_here) max_so_far = max_ending_here; } if (flag == 0 && max_so_far == 1) return 0; return max_so_far; } public static void main(String[] args) { int arr[] = { 1, -2, -3, 0, 7, -8, -2 }; System.out.println("Maximum Sub array product is " + maxSubarrayProduct(arr)); } }
e678dcd077fd4f4e99c8053dc46d0fe93e3d2411
afc34d6fed1675887edbdfd1e86591698b9f175e
/140424. Final Project/JES-2.8.2-src/src/test/java/com/ericdaugherty/mail/Utils.java
7e604620dc8aefbbe009ad0920e9627f4eb462e7
[]
no_license
RICEMS/COMP529
07ed8f1264cd677ac9f65fad860d0ad0cef2c4b1
3de55f1565591764b59524ab689d066d5cf2568b
refs/heads/master
2016-09-05T12:39:51.933848
2015-07-24T00:33:20
2015-07-24T00:33:20
39,601,129
1
1
null
null
null
null
UTF-8
Java
false
false
8,504
java
/****************************************************************************** * This program is a 100% Java Email Server. ****************************************************************************** * Copyright (c) 2001-2013, Eric Daugherty (http://www.ericdaugherty.com) * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the copyright holder nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER ''AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************** * For current versions and more information, please visit: * http://javaemailserver.sf.net/ * * or contact the author at: * [email protected] * ****************************************************************************** * This program is based on the CSRMail project written by Calvin Smith. * http://crsemail.sourceforge.net/ ****************************************************************************** * * $Rev$ * $Date$ * ******************************************************************************/ package com.ericdaugherty.mail; //Java Imports import java.io.*; import java.security.GeneralSecurityException; import java.security.MessageDigest; import java.util.ArrayList; import java.util.List; import javax.net.ssl.SSLContext; //Local Imports import com.ericdaugherty.mail.server.configuration.ConfigurationManager; import com.ericdaugherty.mail.server.utils.FileUtils; import com.ericdaugherty.mail.server.utils.IOUtils; import com.xlat4cast.jes.crypto.digest.JESMessageDigest; /** * * @author Andreas Kyrmegalos */ public class Utils { public static String getSupportedCiphers() { String[] enabledCiphers = {"TLS_DHE_RSA_WITH_AES_256_CBC_SHA","TLS_DHE_DSS_WITH_AES_256_CBC_SHA","TLS_RSA_WITH_AES_256_CBC_SHA", "TLS_DHE_RSA_WITH_AES_128_CBC_SHA","TLS_DHE_DSS_WITH_AES_128_CBC_SHA","TLS_RSA_WITH_AES_128_CBC_SHA"}; SSLContext ctx; try { ctx = SSLContext.getInstance("TLS"); ctx.init(null, null, null); String [] dcs = ctx.getServerSocketFactory().getDefaultCipherSuites(); List<String> temp = new ArrayList<String>(enabledCiphers.length); for (String cipher:enabledCiphers) { for (String dCipher:dcs) { if (cipher.equals(dCipher)) { temp.add(dCipher); break; } } } enabledCiphers = temp.toArray(new String[temp.size()]); } catch (GeneralSecurityException gse) { List<String> temp = new ArrayList<String>(enabledCiphers.length); for (String cipher:enabledCiphers) { if (cipher.indexOf("ECDH")==-1) { temp.add(cipher); } } enabledCiphers = temp.toArray(new String[temp.size()]); } StringBuilder sb = new StringBuilder(); for (String ec:enabledCiphers) { sb.append(ec).append(" "); } sb.deleteCharAt(sb.length()-1); return sb.toString(); } public static void copyFiles(File directory, File target) throws IOException{ File[] allTestFiles = directory.listFiles(); boolean dirMade; for (File allTestFile : allTestFiles) { if (allTestFile.isDirectory()) { String newSubDir = allTestFile.getPath(); newSubDir = newSubDir.substring(newSubDir.lastIndexOf(File.separator)+1); File targetDir = new File(target, newSubDir); dirMade = targetDir.mkdir(); if (!dirMade) { throw new IOException("Directory "+targetDir.getName()+" could not be created."); } copyFiles(allTestFile, targetDir); } else { FileUtils.copyFile(allTestFile, new File(target, allTestFile.getName())); } } } public static void deleteFiles(File directory) throws IOException{ deleteFiles(directory, false); } public static void deleteFiles(File directory, boolean all) throws IOException{ File[] allTestFiles = directory.listFiles(); for (File allTestFile : allTestFiles) { if (allTestFile.isDirectory()) { //Don't delete the database folder if (allTestFile.getName().equals("JES") && ! all) { continue; } deleteFiles(allTestFile); if (!allTestFile.delete()) { System.err.println("unable to delete " + allTestFile); } } else { if (allTestFile.getName().toLowerCase().startsWith("derby")) { continue; } if (!allTestFile.delete()) { System.err.println("unable to delete " + allTestFile); } } } } public static void deleteFilesOnExit(File directory) throws IOException{ File[] allTestFiles = directory.listFiles(); for (File allTestFile : allTestFiles) { if (allTestFile.isDirectory()) { deleteFilesOnExit(allTestFile); allTestFile.deleteOnExit(); } else { allTestFile.deleteOnExit(); } } } public static boolean mkDir(File directory) { boolean dirMade = false; if (!directory.exists()) { dirMade = directory.mkdir(); if (!dirMade) { throw new RuntimeException("Unable to create a "+directory.getName()+" directory. Aborting..."); } } return dirMade; } public static byte[] getOriginalMD5(File input) throws IOException { InputStream is = null; byte[] result = new byte[16]; int count = 0; try { is = new FileInputStream(input); int nextByte; for (;count<16;) { nextByte = is.read(); result[count++] = (byte)(nextByte&0xff); } return result; } finally { IOUtils.close(is); } } public static byte[] getDerivedMD5(File input) throws IOException, GeneralSecurityException{ MessageDigest md = JESMessageDigest.getInstance("MD5"); InputStream is = null; try { is = new FileInputStream(input); int nextByte; outer: while((nextByte=is.read())!=-1) { if (nextByte==0x0a||nextByte==0x0d) continue; for (int i=0;i<initialField.length;i++) { if (nextByte!=initialField[i]) continue outer; if ((nextByte=is.read())==-1) { throw new IOException("Reached end of file before discovering initial field"); } } for (int i=0;i<initialField.length;i++) { md.update((byte)(initialField[i]&0xff)); } break; } while((nextByte=is.read())!=-1) { if (nextByte==0x0a||nextByte==0x0d) continue; md.update((byte)(nextByte&0xff)); } return md.digest(); } finally { IOUtils.close(is); } } private static final byte[] initialField = "X-Priority: Normal".getBytes(ConfigurationManager.getUtf8Charset()); }
bc615f6c500a34467c42d7b708b9c00045e6fcef
5741045375dcbbafcf7288d65a11c44de2e56484
/reddit-decompilada/com/reddit/frontpage/ui/detail/BaseDetailScreen$$Lambda$17.java
45df3e1b0b4d2f4c85e8b921c7863530ed65d207
[]
no_license
miarevalo10/ReporteReddit
18dd19bcec46c42ff933bb330ba65280615c281c
a0db5538e85e9a081bf268cb1590f0eeb113ed77
refs/heads/master
2020-03-16T17:42:34.840154
2018-05-11T10:16:04
2018-05-11T10:16:04
132,843,706
0
0
null
null
null
null
UTF-8
Java
false
false
2,095
java
package com.reddit.frontpage.ui.detail; import android.support.v7.widget.RecyclerView.ViewHolder; import android.view.View; import android.view.View.OnClickListener; import com.reddit.datalibrary.frontpage.data.provider.CommentsProvider; import com.reddit.frontpage.ui.detail.comments.ReplyableTreeNode; final /* synthetic */ class BaseDetailScreen$$Lambda$17 implements OnClickListener { private final BaseDetailScreen f21142a; BaseDetailScreen$$Lambda$17(BaseDetailScreen baseDetailScreen) { this.f21142a = baseDetailScreen; } public final void onClick(View view) { view = this.f21142a; if (view.f39155H != null) { View findChildViewUnder = view.detailList.findChildViewUnder(0.0f, (float) (view.f39149B.getMeasuredHeight() + 1)); if (findChildViewUnder != null) { ReplyableTreeNode a; ViewHolder findContainingViewHolder = view.detailList.findContainingViewHolder(findChildViewUnder); if (findContainingViewHolder == null || (findChildViewUnder instanceof DetailListHeader)) { a = view.f39155H.a(0); } else { view.f39155H.a(view.f39154G.m30148d(findContainingViewHolder)); int d = view.f39154G.m30148d(findContainingViewHolder); CommentsProvider commentsProvider = view.f39155H; if (d < 0) { d = 0; } ReplyableTreeNode a2 = commentsProvider.a(d); commentsProvider = view.f39155H; for (d = commentsProvider.a.m23359a(a2) + 1; d < commentsProvider.a.f21186b.size() - 1; d++) { a = commentsProvider.a.m23360a(d); if (a.f21183b == 0) { break; } } a = null; } if (a != null) { view.m39124a(a.f21182a.b(), true, false); } } } } }
87f8f000bd59f343d14258fc7d74862fe4853b6d
2e0979a8b4af06f89edce0b3bfd7ee1490cdd080
/src/main/java/com/reactor/controller/dto/BookDTO.java
fae39404a173dfaf68677f5c987fd9edf8bf161b
[]
no_license
eceolin/webflux-tips
3682423f603f9dabb47ec60f00351ca85d4b0df7
53be3683775096f5c91e45330917bdd184ebd1b6
refs/heads/master
2021-10-11T21:32:37.454520
2021-10-05T02:48:29
2021-10-05T02:48:29
184,442,519
2
1
null
null
null
null
UTF-8
Java
false
false
697
java
package com.reactor.controller.dto; public class BookDTO { private String id; private String name; private Integer pages; public BookDTO() { } public BookDTO(String id, String name, Integer pages) { this.id = id; this.name = name; this.pages = pages; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getPages() { return pages; } public void setPages(Integer pages) { this.pages = pages; } public String getId() { return id; } public void setId(String id) { this.id = id; } }
ebe884f629d8ccb87e28e97c4f498d310d3f8aad
9e5ec21099f0707672ee74d6eb7782d4b71b8ebf
/app/src/androidTest/java/com/example/android/blossom/ExampleInstrumentedTest.java
93e8674b78ca881378afd675f47ec762a828add2
[]
no_license
alonshp/miLab-Demo-App
4a5cd4b41a32caf572a627931ec4d8b6250a9a4b
1adb126fa7ae417a7f2118c41eab6b496112b5f7
refs/heads/master
2020-12-02T17:57:12.560942
2017-07-06T16:57:13
2017-07-06T16:57:13
null
0
0
null
null
null
null
UTF-8
Java
false
false
758
java
package com.example.android.blossom; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumentation test, which will execute on an Android device. * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ @RunWith(AndroidJUnit4.class) public class ExampleInstrumentedTest { @Test public void useAppContext() throws Exception { // Context of the app under test. Context appContext = InstrumentationRegistry.getTargetContext(); assertEquals("com.example.android.blossom", appContext.getPackageName()); } }
ccc9aecfd19b34d3f1f02d6d538098cdb76977e6
7e5846f713e2feeac36bc183d337347e5756f72e
/src/main/java/com/examples/rs/exception/ExceptionConstants.java
ad7a43f384e98021a9a712032b43280765fc3284
[]
no_license
naggangisetty/Calulator_Terraform
2125c94863ee93045374668a88c5e4bf579bd357
66cc54748b5eead6b5d5876546ac1fd05ac443da
refs/heads/master
2021-11-26T14:06:50.838559
2018-07-24T19:53:31
2018-07-24T19:53:31
142,179,429
0
0
null
2021-11-12T19:49:37
2018-07-24T15:38:54
Java
UTF-8
Java
false
false
510
java
package com.examples.rs.exception; public final class ExceptionConstants { private ExceptionConstants() { } public static final String CLIENT_REQUEST_INCORRECT_CODE = "GEN-FAIL-C-001"; public static final String GENERAL_SERVER_FAILURE_CODE = "GEN-FAIL-S-042"; public static final String GENERAL_CLIENT_FAILURE_CODE = "GEN-FAIL-C-042"; public static final String GENERAL_UNKNOWN_TYPE_FAILURE_CODE = "GEN-FAIL-U-042"; public static final String CIRCUIT_OPEN_SERVER_FAILURE_CODE = "GEN-FAIL-S-001-"; }
2791f792501c4ab5493f9bb6dd1d2a480cefe84c
c45410519e45995b42dbda7738058b8fa84a1136
/app/src/test/java/com/df/proyecto_age_of_empiresii/ExampleUnitTest.java
4dda23e26e25f7568dde2e1409ae1313295bfd54
[]
no_license
Edisson80/Proyecto_Age_of_EmpiresII
0e8c15dff542570c9e6c7472cea6b5bd265f2d36
cbab7f643b30a67b6373b2758ae83b8520167b52
refs/heads/master
2023-06-03T03:45:13.743129
2021-06-19T03:32:27
2021-06-19T03:32:27
378,312,627
0
0
null
null
null
null
UTF-8
Java
false
false
393
java
package com.df.proyecto_age_of_empiresii; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void addition_isCorrect() { assertEquals(4, 2 + 2); } }
a3c3ed09225db586a406b8d843ed23c67577f9c1
3a8cb9ce341fbc583d7850391b2e5c0f2793858d
/engine/src/main/java/by/mkwt/engine/ecs/component/graphic/TiledComponent.java
8bc0ae3223add7f83c105212557159981268b9b9
[]
no_license
MakovWait/smth
7c1d2bf648ae2125d3d561c55f040b82982f65f7
266f6d8eae162672a5bc3521160816959509be7d
refs/heads/master
2020-06-10T03:46:38.580486
2019-07-11T14:25:17
2019-07-11T14:25:17
193,570,788
0
0
null
null
null
null
UTF-8
Java
false
false
1,140
java
package by.mkwt.engine.ecs.component.graphic; import com.badlogic.ashley.core.Component; import com.badlogic.gdx.graphics.g2d.TextureRegion; public class TiledComponent implements Component { public int gid = 0; public int id = 0; public float width = 0; public String name = ""; public String type = ""; public float height = 0; public float x = 0; public float y = 0; public float scaleX = 1; public float scaleY = 1; public float z = 0; public float rotation = 0; public TextureRegion region = null; @Override public String toString() { return "TiledComponent{" + "gid=" + gid + ", id=" + id + ", width=" + width + ", name='" + name + '\'' + ", type='" + type + '\'' + ", height=" + height + ", x=" + x + ", y=" + y + ", scaleX=" + scaleX + ", scaleY=" + scaleY + ", z=" + z + ", rotation=" + rotation + ", region=" + region + '}'; } }
d1a7f2239f79c4f304b98e7910dbfc7620548579
93ae5e556ea31cc6d57cf0f19f61cda4902eb959
/src/main/java/com/fei/netty/springmvc/db/Param.java
7af95259cc5fd1545b3d9fde85cfd314071cc4f4
[]
no_license
1401826426/netty-springmvc
66e7f58f7b9077b8904388bf7d5135252a12a8ed
ec4e03a3d6717530807aa7cc1b1e7ee104053cf8
refs/heads/master
2020-03-23T23:44:19.116772
2019-03-02T09:38:12
2019-03-02T09:38:12
142,252,699
0
0
null
null
null
null
UTF-8
Java
false
false
376
java
package com.fei.netty.springmvc.db; import java.sql.SQLType; public class Param { public Object obj ; public SQLType type ; public Param(Object obj, SQLType type) { super(); this.obj = obj; this.type = type; } public Param(Object obj) { super(); this.obj = obj; } public SQLType getSqlType(){ return this.type ; } }
6a6832a8a81768256efb72ce602f5cbc5a3ad212
83e81c25b1f74f88ed0f723afc5d3f83e7d05da8
/services/core/java/com/android/server/pm/PackageVerificationResponse.java
a9aef6da6d4de34fe1634a84c15b073ac9239dc5
[ "Apache-2.0", "LicenseRef-scancode-unicode" ]
permissive
Ankits-lab/frameworks_base
8a63f39a79965c87a84e80550926327dcafb40b7
150a9240e5a11cd5ebc9bb0832ce30e9c23f376a
refs/heads/main
2023-02-06T03:57:44.893590
2020-11-14T09:13:40
2020-11-14T09:13:40
null
0
0
null
null
null
null
UTF-8
Java
false
false
921
java
/* * Copyright (C) 2011 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.server.pm; public class PackageVerificationResponse { public final int code; public final int callerUid; public PackageVerificationResponse(int code, int callerUid) { this.code = code; this.callerUid = callerUid; } }
2ef8f9503a1b3229339203664a7a3537a5dd7f7d
7ef67b2a805d93c8bcabb3d46dc5375ec92d65ec
/lab27/src/lab27/svc/MRegistService.java
3b735ed99485d5179b478b3820be8ec91ca5ccbb
[]
no_license
kay128/ProjectInEdu
8a29882f9ea86488532fe69233a8933f652b7dc7
b2860c6ade7e156fcef32e35cd16e7f109fce446
refs/heads/master
2021-09-24T18:53:27.253173
2018-10-13T12:24:46
2018-10-13T12:24:46
null
0
0
null
null
null
null
UTF-8
Java
false
false
650
java
package lab27.svc; import static lab27.db.JdbcUtils.*; import java.sql.Connection; import lab27.vo.Lab27_DAO; import lab27.vo.MemberVO; public class MRegistService { public boolean memberRegist(MemberVO member) { Connection conn = getConnection(); int check = 0; Lab27_DAO dao = new Lab27_DAO(conn); check = dao.memberJoin(member); if(check == 0) { rollback(conn); close(conn, null, null); return false; } else { commit(conn); close(conn, null, null); return true; } } }
[ "KAY@DESKTOP-6UNUHQG" ]
KAY@DESKTOP-6UNUHQG
0a3cfc7af20f74c6cbff1e401c47a359ba7c07e0
f6c46616f670357e7d348a85bfaab70f7f994e6e
/src/main/java/com/wass/hr/entity/RewardsPunishment.java
b8d8cd22f40e40773482cd5d4bd5848b8ed950f5
[]
no_license
wass4035/vhr
227a9fedcdb9197da79e366390f58b9ca4bc163c
7a291f2fdf64bf559efdcd2d7a6aa94ef7c1cada
refs/heads/master
2020-09-26T14:00:31.212857
2019-12-06T06:23:58
2019-12-06T06:23:58
226,246,664
0
0
null
null
null
null
UTF-8
Java
false
false
1,387
java
package com.wass.hr.entity; import java.io.Serializable; import java.util.Date; /** * 奖惩制度实体类 * * @author wass */ public class RewardsPunishment implements Serializable { private Long rpsmtId;//奖惩表ID private Date rpsmtDate;//奖惩日期 private String rpsmtReason;//奖惩原因 private String rpsmtPoint;///奖惩分数 private String rpsmtType;//奖惩类型 private String remark;//备注 public Long getRpsmtId() { return rpsmtId; } public void setRpsmtId(Long rpsmtId) { this.rpsmtId = rpsmtId; } public Date getRpsmtDate() { return rpsmtDate; } public void setRpsmtDate(Date rpsmtDate) { this.rpsmtDate = rpsmtDate; } public String getRpsmtReason() { return rpsmtReason; } public void setRpsmtReason(String rpsmtReason) { this.rpsmtReason = rpsmtReason; } public String getRpsmtPoint() { return rpsmtPoint; } public void setRpsmtPoint(String rpsmtPoint) { this.rpsmtPoint = rpsmtPoint; } public String getRpsmtType() { return rpsmtType; } public void setRpsmtType(String rpsmtType) { this.rpsmtType = rpsmtType; } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark; } }
209b63228c8b8e1f27082909174f719873e0ed7c
a62ab57246aea6e99a24a792155aa05bf90f68f0
/src/com/bjwg/back/model/UserPreorder.java
23d1b47019663c24fd5d272864a1f7c647808269
[ "Apache-2.0" ]
permissive
liangjinx/BJWG_BACK
7220f75769e75f56aacda3bfc23a904ef700e217
8057ddb87350cdd1e947f914d02a9a12763a4d03
refs/heads/master
2021-01-10T08:43:57.242050
2016-02-28T09:08:30
2016-02-28T09:08:30
52,712,923
0
0
null
null
null
null
UTF-8
Java
false
false
3,748
java
package com.bjwg.back.model; import java.util.Date; public class UserPreorder { /** * This field was generated by MyBatis Generator. * This field corresponds to the database column bjwg_user_preorder.user_id * * @mbggenerated */ private Long userId; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column bjwg_user_preorder.project_id * * @mbggenerated */ private Long projectId; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column bjwg_user_preorder.ctime * * @mbggenerated */ private Date ctime; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column bjwg_user_preorder.num * * @mbggenerated */ private Integer num; /** * This method was generated by MyBatis Generator. * This method returns the value of the database column bjwg_user_preorder.user_id * * @return the value of bjwg_user_preorder.user_id * * @mbggenerated */ public Long getUserId() { return userId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column bjwg_user_preorder.user_id * * @param userId the value for bjwg_user_preorder.user_id * * @mbggenerated */ public void setUserId(Long userId) { this.userId = userId; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column bjwg_user_preorder.project_id * * @return the value of bjwg_user_preorder.project_id * * @mbggenerated */ public Long getProjectId() { return projectId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column bjwg_user_preorder.project_id * * @param projectId the value for bjwg_user_preorder.project_id * * @mbggenerated */ public void setProjectId(Long projectId) { this.projectId = projectId; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column bjwg_user_preorder.ctime * * @return the value of bjwg_user_preorder.ctime * * @mbggenerated */ public Date getCtime() { return ctime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column bjwg_user_preorder.ctime * * @param ctime the value for bjwg_user_preorder.ctime * * @mbggenerated */ public void setCtime(Date ctime) { this.ctime = ctime; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column bjwg_user_preorder.num * * @return the value of bjwg_user_preorder.num * * @mbggenerated */ public Integer getNum() { return num; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column bjwg_user_preorder.num * * @param num the value for bjwg_user_preorder.num * * @mbggenerated */ public void setNum(Integer num) { this.num = num; } private String username; public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } }
702969f85f0d4e225a453492187b2c39c5161887
40f9c667cdee0fcd5790f4798439741178300e90
/src/test/java/ru/erogov/service/AuditEventServiceIT.java
03bbb63ae973db89a760b384947ab9c2ec3cec77
[]
no_license
stas-erogov/simple-crud-pbi
2f53153eee0e3dc17b933705e116e29435053705
b98d0b33e97f978b8073622c3789fd55a69650bb
refs/heads/master
2022-12-23T20:02:03.887727
2019-12-25T16:57:13
2019-12-25T16:57:13
230,123,175
0
0
null
2022-12-16T04:43:01
2019-12-25T15:50:50
Java
UTF-8
Java
false
false
2,979
java
package ru.erogov.service; import ru.erogov.domain.PersistentAuditEvent; import ru.erogov.repository.PersistenceAuditEventRepository; import ru.erogov.SimpleCrudPbiApp; import io.github.jhipster.config.JHipsterProperties; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.transaction.annotation.Transactional; import java.time.Instant; import java.time.temporal.ChronoUnit; import static org.assertj.core.api.Assertions.assertThat; /** * Integration tests for {@link AuditEventService}. */ @SpringBootTest(classes = SimpleCrudPbiApp.class) @Transactional public class AuditEventServiceIT { @Autowired private AuditEventService auditEventService; @Autowired private PersistenceAuditEventRepository persistenceAuditEventRepository; @Autowired private JHipsterProperties jHipsterProperties; private PersistentAuditEvent auditEventOld; private PersistentAuditEvent auditEventWithinRetention; private PersistentAuditEvent auditEventNew; @BeforeEach public void init() { auditEventOld = new PersistentAuditEvent(); auditEventOld.setAuditEventDate(Instant.now().minus(jHipsterProperties.getAuditEvents().getRetentionPeriod() + 1, ChronoUnit.DAYS)); auditEventOld.setPrincipal("test-user-old"); auditEventOld.setAuditEventType("test-type"); auditEventWithinRetention = new PersistentAuditEvent(); auditEventWithinRetention.setAuditEventDate(Instant.now().minus(jHipsterProperties.getAuditEvents().getRetentionPeriod() - 1, ChronoUnit.DAYS)); auditEventWithinRetention.setPrincipal("test-user-retention"); auditEventWithinRetention.setAuditEventType("test-type");; auditEventNew = new PersistentAuditEvent(); auditEventNew.setAuditEventDate(Instant.now()); auditEventNew.setPrincipal("test-user-new"); auditEventNew.setAuditEventType("test-type"); } @Test @Transactional public void verifyOldAuditEventsAreDeleted() { persistenceAuditEventRepository.deleteAll(); persistenceAuditEventRepository.save(auditEventOld); persistenceAuditEventRepository.save(auditEventWithinRetention); persistenceAuditEventRepository.save(auditEventNew); persistenceAuditEventRepository.flush(); auditEventService.removeOldAuditEvents(); persistenceAuditEventRepository.flush(); assertThat(persistenceAuditEventRepository.findAll().size()).isEqualTo(2); assertThat(persistenceAuditEventRepository.findByPrincipal("test-user-old")).isEmpty(); assertThat(persistenceAuditEventRepository.findByPrincipal("test-user-retention")).isNotEmpty(); assertThat(persistenceAuditEventRepository.findByPrincipal("test-user-new")).isNotEmpty(); } }
2aee633c4ad0e65d2108ff846cde00bb97572be7
a894a309b0476c45996df5a2c6017ac1f56b0efc
/app/src/main/java/com/aptitudemaster/Tutorial.java
f16bb51ab1dbaa48dc204a4e32234fdcc906fb55
[]
no_license
sirilsiju98/Aptitude-Master
a5c4b6b15552125b16ab6e9095093c2cd0b7adb5
b65068d19e09758e3e09b4731016767c5416b3a8
refs/heads/master
2020-12-27T19:27:18.205213
2020-03-01T10:36:27
2020-03-01T10:36:27
238,021,709
0
0
null
null
null
null
UTF-8
Java
false
false
491
java
package com.aptitudemaster; public class Tutorial { String topic; String url; public Tutorial() { } public Tutorial(String topic, String url) { this.topic = topic; this.url = url; } public String getTopic() { return topic; } public String getUrl() { return url; } public void setTopic(String topic) { this.topic = topic; } public void setUrl(String url) { this.url = url; } }
6ce250d8c355f70fd2b46aba8475514ea7b92abc
5d7565cf8cd813df51ed65afba3e4ed205d538fb
/src/main/java/chs/wechat/spy/websdk/api/model/WeChatMessage.java
2a3c0770bf292679b8d6c3951f1a4cb080f66729
[ "MIT" ]
permissive
CSNight/VX-MonitorServices
0238bd81209939e55a5222f02e4cb16aa098a236
b46eefb1b7d3a3125508fc8a40e3ebb6b78b8cfd
refs/heads/master
2022-10-24T08:53:36.616498
2022-10-12T15:01:52
2022-10-12T15:01:52
185,579,731
3
2
MIT
2022-06-17T02:09:05
2019-05-08T09:58:13
Java
UTF-8
Java
false
false
2,084
java
package chs.wechat.spy.websdk.api.model; import chs.wechat.spy.websdk.api.enums.MsgType; import chs.wechat.spy.websdk.utils.StringUtils; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; /** * 微信消息,封装了原始消息 * * @author biezhi * @date 2018/1/20 */ @Data @Builder @NoArgsConstructor @AllArgsConstructor public class WeChatMessage { /** * 微信原始消息 */ private Message raw; /** * mssage_id */ private String id; /** * 文本内容 */ private String text; /** * 接收到的图片在本地的路径 */ private String imagePath; /** * 接收到的视频在本地的路径 */ private String videoPath; /** * 接收到的音频在本地的路径 */ private String voicePath; /** * 发送人 username */ private String fromUserName; /** * 发送人昵称 */ private String fromNickName; /** * 发送人备注 */ private String fromRemarkName; /** * 我的UserName */ private String mineUserName; /** * 我的微信昵称 */ private String mineNickName; /** * 接收人 username */ private String toUserName; /** * 个人名片 */ private Recommend recommend; /** * 是否是位置信息 */ private boolean isLocation; /** * 是否是艾特我的消息 */ private boolean isAtMe; /** * 消息类型 */ private MsgType msgType; /** * 获取发送人姓名如果有备注则优先显示备注,否则显示昵称 * * @return */ public String getName() { return StringUtils.isEmpty(fromRemarkName) ? this.fromNickName : this.fromRemarkName; } /** * 是否是群聊消息 * * @return 返回是否是群组消息 */ public boolean isGroup() { return fromUserName.contains("@@") || toUserName.contains("@@"); } }
8e399a33832ddb3be0fd6cd41595be0f69853b5f
8cddc0e08634b945eb52c95d9ca1c0957242793c
/Workspace/Polymorphism/src/Programi/Programi.java
5b43a6384ad971b45f61ff8969cb062712fb528a
[]
no_license
CiscoCourse/Projects
3d8f1a648b6bca635f559a148f3ce42cdb3eff83
79c24ade2ec52c1184de57397ab06a2116383848
refs/heads/master
2021-01-10T18:20:03.946470
2016-03-06T17:22:41
2016-03-06T17:22:41
53,265,368
0
0
null
null
null
null
UTF-8
Java
false
false
502
java
package Programi; import Polymorphism.Internisti; import Polymorphism.Kardiologu; import Polymorphism.Mjeku; public class Programi { public static void main(String[] args) { // TODO Auto-generated method stub Internisti internisti = new Internisti(); Kardiologu kardiologu = new Kardiologu(); internisti.trego(); kardiologu.trego(); Mjeku mjeku = new Kardiologu(); mjeku.trego(); Mjeku mjeku2 = new Internisti(); mjeku2.trego(); } }
8fd945837187eac8fa55d01bbd312dd3a543a434
3920d17adf2315b60bd106818f437a96ac902a08
/src/sandesh/OWN_Practice_Sandesh_1/ReverseUsingStringBuffer.java
05be7b9393598d6dcead33b452fbcba9f49b644b
[]
no_license
gaurav-4uk/JAVATechnoMar2021
882f4925f2a27f11698ef8a5a8c7b9b5e01a792b
6bb08f38a6212bed883a746be8290c171b40e717
refs/heads/main
2023-05-16T22:32:43.176457
2021-06-05T17:16:49
2021-06-05T17:16:49
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,174
java
package sandesh.OWN_Practice_Sandesh_1; public class ReverseUsingStringBuffer { public static void main(String[] args) { String str = "NAMANT"; StringBuffer sb = new StringBuffer(str); // Created StringBuffer and passed str to it. sb.reverse(); // StringBuffer is mutable, so reversed the string using .reverse() method of StringBuffer. if(sb.toString().equals(str)) // .equals() method of StringBuffer compares the memory address. So converting the SB back to string and then using .equals() method of String class which overrides .equals() of Object class. It simply compares the content. System.out.println(str + " is a Palindrome"); else System.out.println(str + " is NOT a Palindrome"); StringBuffer sb1 = new StringBuffer(str); if(sb1.equals(sb1)) System.out.println("sb1's memory address is indeed same as sb1's memory address"); if(sb.equals(sb1)) System.out.println("sb and sb1 have same memory address"); else System.out.println("Hence Proved. sb and sb1 have different memory address coz .equals() method in case of SB is not overridden. It uses .equals() of Object class which compares memory addresses."); } }
2f9c9215c31cac78bb9f9b7fe604327b0e7082bb
b839f0c848657c113ec06ab0111a7f69f67074d9
/talents/src/main/java/win/yulongsun/talents/ui/stu/StuIndexFragment.java
15754e057cddc2426598082e0e5e84c8799a76e2
[]
no_license
yulongsun007/talentsapp2
506bf2e7163aba0d80a69007f902cb19e6305e1e
83196d88a2e64a8dd4998590eca401c798343c9e
refs/heads/master
2021-01-13T16:03:29.762026
2017-05-11T02:39:42
2017-05-11T02:39:42
76,762,383
0
0
null
null
null
null
UTF-8
Java
false
false
5,199
java
package win.yulongsun.talents.ui.stu; import android.support.v7.widget.GridLayoutManager; import android.support.v7.widget.RecyclerView; import android.support.v7.widget.Toolbar; import android.view.View; import org.greenrobot.eventbus.EventBus; import java.util.ArrayList; import butterknife.Bind; import win.yulongsun.framework.adapter.OnItemClickListener; import win.yulongsun.talents.R; import win.yulongsun.talents.adapter.StuIndexRVAdapter; import win.yulongsun.talents.base.BaseRootFragment; import win.yulongsun.talents.entity.ItemIndex; import win.yulongsun.talents.event.StartBrotherEvent; import win.yulongsun.talents.ui.stu.feedback.FeedbackListFragment; import win.yulongsun.talents.ui.stu.job.StuJobTempListFragment; import win.yulongsun.talents.ui.stu.plan.MyPlanListFragment; import win.yulongsun.talents.ui.stu.resume.ResumeListFragment; /** * @author sunyulong on 2016/12/15. * 学生端首页 */ public class StuIndexFragment extends BaseRootFragment { // @Bind(R.id.vp_stu_index) // ViewPager mVpStuIndex; @Bind(R.id.toolbar) Toolbar mToolbar; @Bind(R.id.recy_stu_index) RecyclerView mRecyStuIndex; @Override protected int getLayoutResId() { return R.layout.fragment_stu_index; } @Override protected Toolbar getToolbar() { return mToolbar; } @Override protected String getToolbarTitle() { return "首页"; } public static StuIndexFragment newInstance() { return new StuIndexFragment(); } @Override protected void initView() { super.initView(); ArrayList<ItemIndex> mDatas = new ArrayList<>(); mDatas.add(new ItemIndex(R.mipmap.ic_index_class, "招聘信息")); // mDatas.add(new ItemIndex(R.mipmap.ic_index_plan, "培养计划")); mDatas.add(new ItemIndex(R.mipmap.ic_index_internship, "我的计划")); mDatas.add(new ItemIndex(R.mipmap.ic_index_feedback, "投递反馈")); // _mDatas.add(new ItemIndex(R.mipmap.ic_index_hr, "HR邀约")); // _mDatas.add(new ItemIndex(R.mipmap.ic_index_career_talk, "宣讲会邀约")); // _mDatas.add(new ItemIndex(R.mipmap.ic_index_talent_pool, "人才库邀约")); // _mDatas.add(new ItemIndex(R.mipmap.ic_index_faq, "校招邀约")); mDatas.add(new ItemIndex(R.mipmap.ic_index_other, "我的简历")); StuIndexRVAdapter mAdapter = new StuIndexRVAdapter(_mActivity, mDatas, R.layout.item_stu_index); mRecyStuIndex.setAdapter(mAdapter); GridLayoutManager mManager = new GridLayoutManager(_mActivity, 3); mRecyStuIndex.setLayoutManager(mManager); mAdapter.setOnItemClickListener(new OnItemClickListener() { @Override public void onItemClick(View itemView, int viewType, int position) { switch (position) { case 0: EventBus.getDefault().post(new StartBrotherEvent(StuJobTempListFragment.newInstance())); break; // case 1: // EventBus.getDefault().post(new StartBrotherEvent(PlanListFragment.newInstance())); // break; case 1: EventBus.getDefault().post(new StartBrotherEvent(MyPlanListFragment.newInstance())); break; case 2: EventBus.getDefault().post(new StartBrotherEvent(FeedbackListFragment.newInstance())); break; case 3: EventBus.getDefault().post(new StartBrotherEvent(ResumeListFragment.newInstance())); break; } } }); // mRecyStuIndex.addItemDecoration(new MyItemDecoration()); //添加Item点击事件 // mAdapter.setOnItemClickListener(new AdapterView.OnItemClickListener() { // @Override // public void onItemClick(View view,int position) { // Log.d(TAG, "onItemClick: "+position); // switch (position){ // case 1:// // EventBus.getDefault().post(new StartBrotherEvent(InternshipFragment.newInstance())); // break; // case 2: // break; // } // // // } // }); // ArrayList<ImageView> mHeaderDatas = new ArrayList<>(); // ImageView mView = new ImageView(_mActivity); // ImageView mView2 = new ImageView(_mActivity); // ImageView mView3 = new ImageView(_mActivity); // mView.setImageResource(R.mipmap.img_zhaoping1); // mView2.setImageResource(R.mipmap.img_zhaoping2); //// mView3.setImageResource(R.mipmap.img_zhaoping3); // mHeaderDatas.add(mView); // mHeaderDatas.add(mView2); //// mHeaderDatas.add(mView3); // // mVpStuIndex.setAdapter(new StuIndexVPAdapter(mHeaderDatas)); // ImageView imageView = (ImageView) _mActivity.findViewById(R.id.iv); // ImageLoadManager.getInstance().with(_mActivity).load(R.mipmap.img_zhaoping1).into(imageView); } }
[ "a87533887" ]
a87533887
5eed08c004e50ae27c0f663f9eb8aaf6cfdaa3eb
32bd70b925e2eb16cbc78da03df015b53b80720c
/app/src/androidTest/java/com/nsb/xmatrix/ExampleInstrumentedTest.java
0be21c67cda009a139cea0c7e8f485b9f305e100
[ "Apache-2.0" ]
permissive
huangzewen/ConnectingLuguApp
71e17cfb2b69eda176bb93e2be97144d466b6e54
30ff3ceaf429333c290850293d761441f7dc0bc1
refs/heads/master
2023-06-27T07:14:22.591823
2021-08-02T08:34:57
2021-08-02T08:34:57
390,217,907
0
0
null
null
null
null
UTF-8
Java
false
false
735
java
package com.nsb.xmatrix; import android.content.Context; import androidx.test.platform.app.InstrumentationRegistry; import androidx.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on an Android device. * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ @RunWith(AndroidJUnit4.class) public class ExampleInstrumentedTest { @Test public void useAppContext() { // Context of the app under test. Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); assertEquals("com.nsb.xmatrix", appContext.getPackageName()); } }
a9b3df48ae51760b83e9e90200620345fe20bbd0
c08c665caf9c5326146d8ed6b51e0b5010049e4c
/BanditGDPSimulator/test/bandit_solver_tests/TestStateGeneration.java
28d64196c5100351f385fde2e2a551f3ffe6461e
[]
no_license
asestes1/AcrpRepository
b2e8740f7121b8c8c408b0c3c4ae697e93515c7f
eecff0e5cc63a3c2dcb4c84995479e23ecfea4f2
refs/heads/master
2021-01-21T13:34:20.702614
2018-03-14T22:52:16
2018-03-14T22:52:16
53,608,698
1
0
null
null
null
null
UTF-8
Java
false
false
2,589
java
package bandit_solver_tests; import java.security.InvalidAlgorithmParameterException; import java.util.function.BiFunction; import org.apache.commons.math3.linear.ArrayRealVector; import org.apache.commons.math3.linear.RealMatrix; import org.apache.commons.math3.linear.RealVector; import org.junit.Test; import bandit_objects.SimpleTmiAction; import bandit_simulator.SimilarityBanditInstance; import bandit_simulator.SimilarityBanditRunner; import bandit_simulator.UniformStateGenerator; import bandit_solvers.UniRandomSolver; import function_util.MatrixHelper; import function_util.QuadraticFormFunction; import random_processes.GaussianKernel; public class TestStateGeneration { @Test public void testUniRandomBandit() throws InvalidAlgorithmParameterException{ UniRandomSolver my_random_solver = new UniRandomSolver(); for(int i=0; i < 100;i++){ SimpleTmiAction my_action = my_random_solver.suggestAction(null, 0); System.out.println(my_action); } } @Test public void testUniformStateGeneratr(){ UniformStateGenerator myStateGenerator = new UniformStateGenerator(10); for(int i=0; i < 100;i++){ RealVector state = myStateGenerator.generate(); System.out.println(state); } } @Test public void testHistoryPregeneration(){ int state_dimension = 2; UniformStateGenerator myStateGenerator = new UniformStateGenerator(state_dimension); SimilarityBanditInstance myInstance = SimilarityBanditRunner.makeInstance(myStateGenerator, 50); System.out.println(myInstance); } @Test public void testActionGeneration() throws Exception{ int state_dimension = 5; RealMatrix myTmiMatrix = MatrixHelper.makeIdentityMatrix(state_dimension+SimpleTmiAction.GDP_DIMENSION); RealMatrix myNoTmiMatrix = MatrixHelper.makeIdentityMatrix(state_dimension); RealVector myTmiVector = new ArrayRealVector(new double[]{4,9,1,2,3,5,7,11,13}); RealVector myNoTmiVector = myTmiVector.getSubVector(0, state_dimension); Double myConstant = 20.0; BiFunction<RealVector,SimpleTmiAction,Double> myFunction = new QuadraticFormFunction(myTmiMatrix,myTmiVector,myConstant,myNoTmiMatrix,myNoTmiVector,myConstant); UniformStateGenerator myStateGenerator = new UniformStateGenerator(state_dimension); GaussianKernel myKernel = new GaussianKernel(1.0, 5); SimilarityBanditInstance myInstance = SimilarityBanditRunner.makeInstance(myFunction, myStateGenerator, myKernel, 10, 20, new UniRandomSolver()); System.out.println(myInstance); } }
2f099520c2762e9ce7d22ff0e3a311ad2a937271
104928b13942375011ca6582c446d509b8b19bad
/src/main/java/com/garowing/gameexp/game/rts/skill/constants/SkillEventType.java
7028f35069ad77bcdab7f4da737792920290f50f
[ "MIT" ]
permissive
cool112/game
b1d7a2a3de0da5ae0e59a02e76010c1affc57254
61071efa6498825f9cbcc7722420c6cd399bb3ab
refs/heads/master
2021-06-18T12:54:45.047133
2021-01-27T09:46:39
2021-01-27T09:46:39
152,873,406
0
0
null
null
null
null
UTF-8
Java
false
false
3,002
java
package com.garowing.gameexp.game.rts.skill.constants; import com.garowing.gameexp.game.rts.skill.handler.SkillEventHandler; import com.garowing.gameexp.game.rts.skill.handler.eventhandler.AttackSkillEventHandler; import com.garowing.gameexp.game.rts.skill.handler.eventhandler.ClientNotifySkillEventHandler; import com.garowing.gameexp.game.rts.skill.handler.eventhandler.EnterSceneSkillEventHandler; import com.garowing.gameexp.game.rts.skill.handler.eventhandler.InterrupEffectSkillEventHandler; import com.garowing.gameexp.game.rts.skill.handler.eventhandler.InitControlSkillEventHandler; import com.garowing.gameexp.game.rts.skill.handler.eventhandler.RefreshEffectSkillEventHandler; import com.garowing.gameexp.game.rts.skill.handler.eventhandler.RestartEffectSkillEventHandler; import com.garowing.gameexp.game.rts.skill.handler.eventhandler.SkillHarmSkillEventHandler; import com.garowing.gameexp.game.rts.skill.handler.eventhandler.TargetChangeSkillEventHandler; import com.garowing.gameexp.game.rts.skill.handler.eventhandler.TroopDieSkillEventHandler; import com.garowing.gameexp.game.rts.skill.handler.eventhandler.TroopNumSkillEventHandler; import com.garowing.gameexp.game.rts.skill.handler.eventhandler.UnitHpChangeSkillEventHandler; import com.garowing.gameexp.game.rts.skill.handler.eventhandler.UseCardSkillEventHandler; import com.garowing.gameexp.game.rts.skill.handler.eventhandler.UseStrategosSkillEventHandler; /** * 技能事件类型 * @author seg * 2017年3月24日 */ public enum SkillEventType { /* 技能触发控制 */ /** * 攻击事件,包含被攻击 */ ATTACK(new AttackSkillEventHandler()), /** * 进入战场,涉及开场技能 */ ENTER_SCENE(new EnterSceneSkillEventHandler()), /** * 初始化控制器,如增加初始粮草的技能 */ INIT_CONTROL(new InitControlSkillEventHandler()), /** * 使用将军技能 */ USE_GENERAL_SKILL(new UseStrategosSkillEventHandler()), /** * 部队数改变 */ TROOP_COUNT_CHANGE(new TroopNumSkillEventHandler()), /** * 部队死亡 */ TROOP_DIE(new TroopDieSkillEventHandler()), /** * 使用卡牌 */ USE_CARD(new UseCardSkillEventHandler()), /** * 目标改变事件 */ TARGET_CHANGE(new TargetChangeSkillEventHandler()), /** * 血量改变 */ HP_CHANGE(new UnitHpChangeSkillEventHandler()), /** * 技能伤害 */ SKILL_HARM(new SkillHarmSkillEventHandler()), /* 技能生命周期控制 */ /** * 客户端通知 */ CLIENT_NOTIFY(new ClientNotifySkillEventHandler()), /** * 技能强制结束 */ INTERRUPT(new InterrupEffectSkillEventHandler()), /** * 重置效果 */ RESTART_EFFECT(new RestartEffectSkillEventHandler()), /** * 刷新效果持续事件 */ REFRESH_EFFECT(new RefreshEffectSkillEventHandler()), ; private final SkillEventHandler handler; SkillEventType(SkillEventHandler handler) { this.handler = handler; } public SkillEventHandler getHandler() { return handler; } }
6af2ab4414e29e6c0db95b660b0ec1ff91fc85f7
68534507652bebcb5e1b5e31b11cb38bfc37da99
/Monosnap_Automation_Tests/src/test/java/Login/LoginTests.java
4e29082f8f28edb4e76076ce2be00856753467ac
[]
no_license
oluwabernard/Monosnap_Automation_Tests_Task
e01f2c41a27c5abd4b5d8ae7aad03e8cc7bff09e
bd1a5683b8969b2a7175b600ba360c890182aa14
refs/heads/master
2022-12-21T20:36:37.310727
2020-09-26T12:13:20
2020-09-26T12:13:20
298,638,249
0
0
null
null
null
null
UTF-8
Java
false
false
1,603
java
package Login; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import java.util.concurrent.TimeUnit; public class LoginTests { //import selenium driver private WebDriver driver; //import chrome driver public void setUp()throws InterruptedException{ System.setProperty("webdriver.chrome.driver","resources/chromedriver.exe"); driver = new ChromeDriver(); //Get the project URL driver.get("https://monosnap.com/"); //Wait to load project page driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); //maximize Project page driver.manage().window().maximize(); //Get project Title System.out.println(driver.getTitle()); //lOCATE SIGN IN BUTTON AND CLICK driver.findElement(By.xpath("//*[@id=\"root\"]/div[2]/div/div[3]/div[1]/div/div[2]/div[3]/span")).click(); //Locate username field. driver.findElement(By.xpath("//*[@id=\"root\"]/div[2]/div/div[1]/div[1]/div/div[2]/form/div[4]/input[1]")).sendKeys("[email protected]"); //Locate password field driver.findElement(By.xpath("//*[@id=\"root\"]/div[2]/div/div[1]/div[1]/div/div[2]/form/div[4]/input[2]")).sendKeys("MOUNTAIN12TEST"); //CLICK ON SIGN IN BUTTON driver.findElement(By.xpath("//*[@id=\"root\"]/div[2]/div/div[1]/div[1]/div/div[2]/form/button")).click(); Thread.sleep(10000); //close windows driver.quit(); } //Initiate public static void main(String args[]) throws InterruptedException { LoginTests tests = new LoginTests(); tests.setUp(); } }
1d45bcc8463184874801fe357231514581360d51
6da34247e66e886ed339cbf7a6ad913088f4e45c
/uts mobile/kuis android/app/src/main/java/com/fina/kuis/adapter/RecylerAdapter.java
661af4674e18b35fc413bad334bc35f38c521e5e
[]
no_license
finayuniarti/mobile-programming
0d3baf23e96645152bfc06ec67b8540a2a206c7e
f76dbde58692843ed70e62bc9cca619b66197e5e
refs/heads/master
2020-05-19T02:05:10.137567
2019-05-04T02:21:58
2019-05-04T02:21:58
184,772,803
0
0
null
null
null
null
UTF-8
Java
false
false
2,604
java
package com.fina.kuis.adapter; import android.content.Context; import android.content.Intent; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import android.widget.Toast; import com.fina.kuis.MainActivity; import com.fina.kuis.R; import com.fina.kuis.model.DataModel; import java.util.List; /** * Created by Server on 13/09/2017. */ public class RecylerAdapter extends RecyclerView.Adapter<RecylerAdapter.MyHolder> { List<DataModel> mList ; Context ctx; public RecylerAdapter(Context ctx, List<DataModel> mList) { this.mList = mList; this.ctx = ctx; } @Override public RecylerAdapter.MyHolder onCreateViewHolder(ViewGroup parent, int viewType) { View layout = LayoutInflater.from(parent.getContext()).inflate(R.layout.layoutlist, parent, false); MyHolder holder = new MyHolder(layout); return holder; } @Override public void onBindViewHolder(RecylerAdapter.MyHolder holder, final int position) { holder.nama.setText(mList.get(position).getNama()); holder.stok.setText(mList.get(position).getStok()); holder.itemView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Intent goInput = new Intent(ctx,MainActivity.class); try { goInput.putExtra("id", mList.get(position).getId()); goInput.putExtra("nama", mList.get(position).getNama()); goInput.putExtra("stok", mList.get(position).getStok()); ctx.startActivity(goInput); }catch (Exception e){ e.printStackTrace(); Toast.makeText(ctx, "Error data " +e, Toast.LENGTH_SHORT).show(); } } }); } @Override public int getItemCount() { return mList.size(); } public class MyHolder extends RecyclerView.ViewHolder { TextView nama, stok; DataModel dataModel; public MyHolder(View v) { super(v); nama = (TextView) v.findViewById(R.id.tvNama); stok = (TextView) v.findViewById(R.id.tvStok); } } }
a273c4d0a5c146c72f7d6c2ace7b840c21a246e9
5b0022f1c0d2e80bce399b07e45a0603a1c36469
/JavaProject/back-end/src/main/java/top/ender/miniapp/service/impl/VirtualCardServiceImpl.java
299824834e60364f379dd1d19411a639bb9192a9
[]
no_license
EnderXiao/GraduationProject
83d506e9b6113cef06395b7c9388bd811ea310da
90eb033e16086f6db8090edc006742c3187582e2
refs/heads/main
2023-04-06T18:32:19.315120
2021-04-05T09:27:29
2021-04-05T09:27:29
354,781,015
1
0
null
null
null
null
UTF-8
Java
false
false
2,346
java
package top.ender.miniapp.service.impl; import top.ender.miniapp.dao.VirtualCardDao; import top.ender.miniapp.entity.VirtualCard; import top.ender.miniapp.service.VirtualCardService; import org.springframework.stereotype.Service; import javax.annotation.Resource; import java.util.List; /** * (VirtualCard)表服务实现类 * * @author makejava * @since 2021-02-12 10:58:11 */ @Service("virtualcardService") public class VirtualCardServiceImpl implements VirtualCardService { @Resource private VirtualCardDao virtualcardDao; /** * 通过ID查询单条数据 * * @param vcId 主键 * @return 实例对象 */ @Override public VirtualCard queryById(Integer vcId) { return this.virtualcardDao.queryById(vcId); } /** * 查询多条数据 * * @param offset 查询起始位置 * @param limit 查询条数 * @return 对象列表 */ @Override public List<VirtualCard> queryAllByLimit(int offset, int limit) { return this.virtualcardDao.queryAllByLimit(offset, limit); } /** * 按用户Id查找 * * @param uId 用户Id * @return 实列对象 */ @Override public VirtualCard queryByUserId(String uId) { return this.virtualcardDao.queryByUserId(uId); } /** * 新增数据 * * @param virtualcard 实例对象 * @return 实例对象 */ @Override public VirtualCard insert(VirtualCard virtualcard) { this.virtualcardDao.insert(virtualcard); return virtualcard; } /** * 修改数据 * * @param virtualcard 实例对象 * @return 实例对象 */ @Override public VirtualCard update(VirtualCard virtualcard) { this.virtualcardDao.update(virtualcard); return this.queryById(virtualcard.getVcId()); } /** * 通过主键删除数据 * * @param vcId 主键 * @return 是否成功 */ @Override public boolean deleteById(Integer vcId) { return this.virtualcardDao.deleteById(vcId) > 0; } /** * 通过用户ID删除数据 * * @param uId 用户ID * @return 是否成功 */ @Override public boolean deleteByUserId(String uId) { return this.virtualcardDao.deleteByUserId(uId) > 0; } }
d0caa16fe88843a7ac4995994babe1fc37652516
2290a47fbbdef8cb893f8477e3230ec5a0cb225c
/src/test/java/de/javagl/common/ui/closeable/test/CloseablePanelTest.java
23875be8cd334a14665c248538f81a049330bc10
[ "MIT" ]
permissive
javagl/CommonUI
06bf903939eac2beee0a0e2a875c94117c617329
d19fd1858877b9a6979839e57b82e0d806455553
refs/heads/master
2022-11-30T14:08:38.715230
2022-11-26T14:33:09
2022-11-26T14:33:09
46,824,622
2
1
null
null
null
null
UTF-8
Java
false
false
2,035
java
package de.javagl.common.ui.closeable.test; import java.awt.Color; import java.awt.Component; import java.awt.GridLayout; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.SwingUtilities; import de.javagl.common.ui.closeable.CloseCallback; import de.javagl.common.ui.closeable.CloseablePanel; /** * Simple integration test for the {@link CloseablePanel} */ @SuppressWarnings("javadoc") public class CloseablePanelTest { public static void main(String[] args) { SwingUtilities.invokeLater(new Runnable() { @Override public void run() { createAndShowGUI(); } }); } private static void createAndShowGUI() { JFrame f = new JFrame(); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JPanel container = new JPanel(new GridLayout(0,1)); CloseablePanel panel0 = new CloseablePanel( "Title 0", new JLabel("Panel 0")); panel0.setBackground(Color.RED); container.add(panel0); CloseablePanel panel1 = new CloseablePanel( new JLabel("Panel 1, without title")); panel1.setBackground(Color.GREEN); container.add(panel1); CloseCallback closeCallback = new CloseCallback() { @Override public boolean mayClose(Component componentInTab) { System.out.println("Checking whether panel may be closed..."); return false; } }; CloseablePanel panel2 = new CloseablePanel("Title 2", new JLabel("Panel 2, may not be closed"), closeCallback); panel2.setBackground(Color.YELLOW); container.add(panel2); f.getContentPane().add(container); f.setSize(400,200); f.setLocationRelativeTo(null); f.setVisible(true); } }
3047fb017dd4b5647b785dac95ab2555f99ceee1
9b9056d5ab066cc2c0c9c01b128ac01d4caaa153
/geometry/Rectangle.java
f6851c56c0173c1926e1714efee0bdaab9dd7c94
[]
no_license
ModiEsawi/ArkanoidGame-Final
c89cc239d04f63faf2e30c4102371f4e7e327889
8322105bd56b12034091ccb677bdf7ce004b386a
refs/heads/master
2022-12-04T10:11:39.576898
2020-08-11T14:04:34
2020-08-11T14:04:34
286,738,659
0
0
null
null
null
null
UTF-8
Java
false
false
5,094
java
package geometry; /** * @author Mohamad Elesawi <[email protected]> * @since 2019-03-28 */ import java.util.ArrayList; import java.util.List; /** * a geometry.Rectangle class. */ public class Rectangle { private Point upperLeft; private double width; private double height; private Line leftLine, rightLine, upLine, lowLine; /** * creating a new rectangle with with a specific location controlled by his upper left point and a * certain height and width. * * @param upperLeft : the rectangle's upper left point. * @param width : the rectangles width. * @param height : the rectangles height. */ public Rectangle(Point upperLeft, double width, double height) { this.upperLeft = upperLeft; this.width = width; this.height = height; this.setLines(); // breaking the rectangle to 4 lines and setting their staring and ending point. } /** * using the given upper left point , we can get calculate each part of the rectangles line length. */ public void setLines() { Point point1 = new Point(upperLeft.getX(), upperLeft.getY()), point2 = new Point(upperLeft.getX() + width, upperLeft.getY()), point3 = new Point(upperLeft.getX(), upperLeft.getY() + height), point4 = new Point(upperLeft.getX() + width, upperLeft.getY() + height); this.upLine = new Line(point1, point2); this.leftLine = new Line(point1, point3); this.rightLine = new Line(point2, point4); this.lowLine = new Line(point3, point4); } /** * @return , returning the rectangle's width. */ public double getWidth() { return this.width; } /** * @return , returning the rectangle's height. */ public double getHeight() { return this.height; } /** * @return , returning the rectangle's upper left point. */ public Point getUpperLeft() { return this.upperLeft; } /** * @return , returning the rectangle's left line. */ public Line getLeftLine() { return this.leftLine; } /** * @return , returning the rectangle's right line. */ public Line getRightLine() { return this.rightLine; } /** * @return , returning the rectangle's upper line. */ public Line getUpLine() { return this.upLine; } /** * @return , returning the rectangle's low line. */ public Line getLowLine() { return this.lowLine; } /** * finding out the intersection points of a specific line with a rectangle and storing it in a list * (possibly empty). * * @param line : the line to find intersection points between it and the rectangle. * @return List of intersection points with the specified line (possibly empty). */ public List<Point> intersectionPoints(Line line) { Line[] rectangleLines; // an array of the rectangles lines. rectangleLines = new Line[]{upLine, lowLine, leftLine, rightLine}; // the list to store the intersection points in. List<Point> rectanglesintersectionPoints = new ArrayList<>(); int oneEqualPoints = 3, twoEqualPoints = 4, zerouthIndex = 0, firstIndex = 1, secondIndex = 2, thirdIndex = 3, twoHits = 2; // if there is an intersection , we add the point to the list of intersection Points. for (int i = 0; i < rectangleLines.length; i++) { if (rectangleLines[i].isIntersecting(line)) { rectanglesintersectionPoints.add(rectangleLines[i].intersectionWith(line)); } } /* * if our list contains four intersection , that means we have two points that already exist, if the list * contains 3 points that means we have a point that already exist , and if our list contains 2 points, * we must check to see if they are equal, and according to the way that the "rectangleLines" array is built, * the equal points will always be the last so we can remove them. */ if (rectanglesintersectionPoints.isEmpty()) { return rectanglesintersectionPoints; } if (rectanglesintersectionPoints.size() == oneEqualPoints) { rectanglesintersectionPoints.remove(secondIndex); } if (rectanglesintersectionPoints.size() == twoEqualPoints) { rectanglesintersectionPoints.remove(thirdIndex); rectanglesintersectionPoints.remove(secondIndex); } if (rectanglesintersectionPoints.size() == twoHits) { if ((rectanglesintersectionPoints.get(zerouthIndex)) .equals(rectanglesintersectionPoints.get(firstIndex))) { rectanglesintersectionPoints.remove(firstIndex); } } return rectanglesintersectionPoints; } }
17fb77c5603f4aa5ccf830ef1e9b1baff2556ba5
4b0bf4787e89bcae7e4759bde6d7f3ab2c81f849
/aliyun-java-sdk-cloudcallcenter/src/main/java/com/aliyuncs/cloudcallcenter/model/v20170705/QueryNumber400ListResponse.java
a9233b87c10957d413a2b343725e2e02a730b2b9
[ "Apache-2.0" ]
permissive
aliyun/aliyun-openapi-java-sdk
a263fa08e261f12d45586d1b3ad8a6609bba0e91
e19239808ad2298d32dda77db29a6d809e4f7add
refs/heads/master
2023-09-03T12:28:09.765286
2023-09-01T09:03:00
2023-09-01T09:03:00
39,555,898
1,542
1,317
NOASSERTION
2023-09-14T07:27:05
2015-07-23T08:41:13
Java
UTF-8
Java
false
false
2,951
java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudcallcenter.model.v20170705; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudcallcenter.transform.v20170705.QueryNumber400ListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryNumber400ListResponse extends AcsResponse { private String requestId; private Boolean success; private String code; private String message; private Integer httpStatusCode; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer monthlyPrice; private List<Number> numbers; public Integer getMonthlyPrice() { return this.monthlyPrice; } public void setMonthlyPrice(Integer monthlyPrice) { this.monthlyPrice = monthlyPrice; } public List<Number> getNumbers() { return this.numbers; } public void setNumbers(List<Number> numbers) { this.numbers = numbers; } public static class Number { private String number; private String signature; public String getNumber() { return this.number; } public void setNumber(String number) { this.number = number; } public String getSignature() { return this.signature; } public void setSignature(String signature) { this.signature = signature; } } } @Override public QueryNumber400ListResponse getInstance(UnmarshallerContext context) { return QueryNumber400ListResponseUnmarshaller.unmarshall(this, context); } }
bfe1962a121e98112735a7d3d18b9e5ad54ecd92
31e7b116fcdbb5762f95bfe908ccefac1aa9eaa6
/src/Sale/SaleServiceImpl.java
9367808b37f6b1e989fe1a44ad609371793ae587
[]
no_license
DestinyOwner/OnlineBookStoreClient
f2cce6b495112b649644df9ec1f88b8002d0e53d
bea24299b79782a709f36c9ebfbb36b1f0caddc9
refs/heads/master
2020-03-28T19:12:25.437976
2012-12-14T08:40:32
2012-12-14T08:40:32
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,324
java
package Sale; import java.net.MalformedURLException; import java.rmi.Naming; import java.rmi.NotBoundException; import java.rmi.RemoteException; import ClientRunner.Const; import RMI.ResultMessage; public class SaleServiceImpl implements SaleService { private SaleService service_stub = null; public SaleServiceImpl() { try { service_stub = (SaleService) Naming.lookup(Const.SERVER + "SaleService"); } catch (MalformedURLException e) { e.printStackTrace(); } catch (RemoteException e) { e.printStackTrace(); } catch (NotBoundException e) { e.printStackTrace(); } } @Override public ResultMessage addToCart(ItemPO itemPO, int memberID) throws RemoteException { return service_stub.addToCart(itemPO, memberID); } @Override public ResultMessage deleteFromCart(String bookISBN, int memberID) throws RemoteException { return service_stub.deleteFromCart(bookISBN, memberID); } @Override public ResultMessage addOrder(OrderPO orderPO) throws RemoteException { return service_stub.addOrder(orderPO); } @Override public ResultMessage getBooksInCart(int memberID) throws RemoteException { return service_stub.getBooksInCart(memberID); } @Override public ResultMessage updateCart(CartPO cartPO) throws RemoteException { return service_stub.updateCart(cartPO); } }
8273b0ceb82c462bd3f31535d5b18d562d80dcf6
797662760376118f495b0744345f42fade8339cf
/app/src/main/java/hu/bme/yjzygk/voyagerrecord40/intro/IntroActivity.java
60db17f47f98365fdbe15f2423e82027ecc5267f
[]
no_license
KicsiMonkey/voyager-record-40
a4c05724d84d23c1efa22f0bf0fcf2956c3d040f
555f45e3baf51cf1c735a52b26c0b2c09029e934
refs/heads/master
2020-07-04T22:25:20.939720
2019-08-14T23:30:11
2019-08-14T23:30:11
202,440,280
0
0
null
null
null
null
UTF-8
Java
false
false
4,354
java
package hu.bme.yjzygk.voyagerrecord40.intro; import android.content.Intent; import android.os.Bundle; import android.support.v4.view.ViewPager; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.Button; import android.widget.LinearLayout; import android.widget.TextView; import hu.bme.yjzygk.voyagerrecord40.MainActivity; import hu.bme.yjzygk.voyagerrecord40.R; import hu.bme.yjzygk.voyagerrecord40.util.FirstLaunchSharedPrefManager; import hu.bme.yjzygk.voyagerrecord40.util.ImmersiveModeSwitcher; public class IntroActivity extends AppCompatActivity { private FirstLaunchSharedPrefManager firstLaunchSharedPrefManager; private ViewPager viewPager; private IntroPagerAdapter introPagerAdapter; private LinearLayout dotsLayout; private TextView[] dots; private Button btnSkip, btnNext; private int currentPageIdx; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ImmersiveModeSwitcher.set(this); firstLaunchSharedPrefManager = new FirstLaunchSharedPrefManager(this); if (!firstLaunchSharedPrefManager.isFirstLaunch()) { startMainActivity(); } setContentView(R.layout.activity_intro); viewPager = (ViewPager) findViewById(R.id.vpIntro); introPagerAdapter = new IntroPagerAdapter(getSupportFragmentManager()); viewPager.setAdapter(introPagerAdapter); viewPager.addOnPageChangeListener(new ViewPager.OnPageChangeListener() { @Override public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) { } @Override public void onPageSelected(int position) { refreshDots(position); if (position == introPagerAdapter.getCount()-1) { btnNext.setText(getString(R.string.start)); btnSkip.setVisibility(View.GONE); } else { btnNext.setText(getString(R.string.next)); btnSkip.setVisibility(View.VISIBLE); } } @Override public void onPageScrollStateChanged(int state) { } }); dotsLayout = (LinearLayout) findViewById(R.id.layoutDots); btnSkip = (Button) findViewById(R.id.btn_skip); btnSkip.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { startMainActivity(); } }); btnNext = (Button) findViewById(R.id.btn_next); btnNext.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (currentPageIdx == introPagerAdapter.getCount()-1) { startMainActivity(); } else { viewPager.setCurrentItem(currentPageIdx+1); } } }); refreshDots(0); } @Override protected void onStart() { super.onStart(); ImmersiveModeSwitcher.set(this); } @Override protected void onResume() { super.onResume(); ImmersiveModeSwitcher.set(this); } @Override protected void onPause() { super.onPause(); ImmersiveModeSwitcher.set(this); } private void startMainActivity() { firstLaunchSharedPrefManager.setFirstLaunch(false); Intent intent = new Intent(IntroActivity.this, MainActivity.class); startActivity(intent); finish(); } private void refreshDots(int newCurrentPageIdx) { currentPageIdx = newCurrentPageIdx; dots = new TextView[introPagerAdapter.getCount()]; int colorActive = getResources().getIntArray(R.array.array_dot_active)[newCurrentPageIdx]; int colorInactive = getResources().getIntArray(R.array.array_dot_inactive)[newCurrentPageIdx]; dotsLayout.removeAllViews(); for (int i = 0; i < dots.length; ++i) { dots[i] = new TextView(this); dots[i].setText("•"); dots[i].setTextSize(35); dots[i].setTextColor( newCurrentPageIdx==i ? colorActive : colorInactive); dotsLayout.addView(dots[i]); } } }
65ab2ccea91604f2f2ec292b82aadd79466a272a
d114dc5e9f5326675a6d3aecd13c7778a9985840
/src/main/java/local/Screening.java
6f91205bb802f3db4e9ca1029871f83ecedb9965
[]
no_license
byounghoonmoon/ScreeningManage
5cb5327033900cf87fed07c7dc21ccb9c9945c50
97b41b946ea20c7306f1e2b6028dd719e02891e9
refs/heads/master
2022-12-09T00:43:14.041651
2020-09-03T04:45:24
2020-09-03T04:45:24
291,697,637
0
3
null
null
null
null
UTF-8
Java
false
false
2,846
java
package local; import javax.persistence.*; import org.springframework.beans.BeanUtils; @Entity @Table(name="Screening_table") public class Screening { @Id @GeneratedValue(strategy=GenerationType.AUTO) private Long id; private Long hospitalId; private String chkDate; private String custNm; private String status; private String hospitalNm; @PostPersist public void onPostPersist(){; // 검진 요청함 ( Req / Res : 동기 방식 호출) local.external.Hospital hospital = new local.external.Hospital(); hospital.setHospitalId(getHospitalId()); // mappings goes here ScreeningManageApplication.applicationContext.getBean(local.external.HospitalService.class) .screeningRequest(hospital.getHospitalId(),hospital); Requested requested = new Requested(); BeanUtils.copyProperties(this, requested); requested.publishAfterCommit(); } @PostUpdate public void onPostUpdate(){ System.out.println("#### onPostUpdate :" + this.toString()); if("CANCELED".equals(this.getStatus())) { Canceled canceled = new Canceled(); BeanUtils.copyProperties(this, canceled); canceled.publishAfterCommit(); } else if("FORCE_CANCELED".equals(getStatus())){ ForceCanceled forceCanceled = new ForceCanceled(); BeanUtils.copyProperties(this, forceCanceled); forceCanceled.publishAfterCommit(); } else if("REQUEST_COMPLETED".equals(getStatus())){ System.out.println(getStatus()); System.out.println("## REQ Info : " + this.getHospitalId()); System.out.println("## REQ Info : " + this.getHospitalId()); RequestCompleted requestCompleted = new RequestCompleted(); BeanUtils.copyProperties(this, requestCompleted); requestCompleted.publishAfterCommit(); } } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getHospitalId() { return hospitalId; } public void setHospitalId(Long hospitalId) { this.hospitalId = hospitalId; } public String getChkDate() { return chkDate; } public void setChkDate(String chkDate) { this.chkDate = chkDate; } public String getCustNm() { return custNm; } public void setCustNm(String custNm) { this.custNm = custNm; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public String getHospitalNm() { return hospitalNm; } public void setHospitalNm(String hospitalNm) { this.hospitalNm = hospitalNm; } }
4c614de65a4ad762764b2a281e20f6636d405548
082e26b011e30dc62a62fae95f375e4f87d9e99c
/docs/weixin_7.0.4_source/反编译源码/未反混淆/src/main/java/com/tencent/mm/ui/conversation/a/e.java
5fd26afb07b5265633c1fdfacffa2f233e38fcbe
[]
no_license
xsren/AndroidReverseNotes
9631a5aabc031006e795a112b7ac756a8edd4385
9202c276fe9f04a978e4e08b08e42645d97ca94b
refs/heads/master
2021-04-07T22:50:51.072197
2019-07-16T02:24:43
2019-07-16T02:24:43
null
0
0
null
null
null
null
UTF-8
Java
false
false
6,884
java
package com.tencent.mm.ui.conversation.a; import android.content.Context; import com.facebook.appevents.AppEventsConstants; import com.tencent.matrix.trace.core.AppMethodBeat; import com.tencent.mm.model.a.f; import com.tencent.mm.model.a.g; import com.tencent.mm.model.aw; import com.tencent.mm.model.b.b.b; import com.tencent.mm.model.bd; import com.tencent.mm.model.be; import com.tencent.mm.model.c; import com.tencent.mm.sdk.platformtools.ab; import com.tencent.mm.sdk.platformtools.bo; public final class e { public enum a { MAIN_FRAME_BANNER, CHATTING_RECOMMEND_BANNER, CHATTING_SECURITY_BANNER, NET_WARN_BANNER, OTHER_ONLINE_BANNER, FORCE_NOTIFY_BANNER, FACEBOOK_BANNER, AD_BANNER, ABTEST_BANNER, MASS_SEND_SIGHT_BANNER, TRY_NEW_INIT_BANNER, MAIN_FRAME_AND_ABTEST_BANNER, CHATTING_MONITORED_HINT; static { AppMethodBeat.o(34648); } } public static com.tencent.mm.pluginsdk.ui.b.a a(Context context, a aVar, Object[] objArr) { com.tencent.mm.pluginsdk.ui.b.a aVar2 = null; int i = 0; AppMethodBeat.i(34649); String obj; String obj2; switch (aVar) { case CHATTING_RECOMMEND_BANNER: if (objArr != null && objArr.length == 2) { obj = objArr[0] != null ? objArr[0].toString() : null; if (objArr[1] != null) { obj2 = objArr[1].toString(); } else { obj2 = null; } if (aw.ZK().Yk() == null) { ab.w("MicroMsg.BannerFactory", "recommend banner stg is null. this may be caused by account async init."); } if (aw.ZK().Yk() != null && (aw.ZK().Yk().oV(obj) || aw.ZK().Yk().oV(obj2))) { aVar2 = new f(context, obj, obj2); break; } } case CHATTING_SECURITY_BANNER: if (objArr != null && objArr.length == 3) { String obj3; boolean z; obj2 = objArr[0] != null ? objArr[0].toString() : null; if (objArr[1] != null) { obj3 = objArr[1].toString(); } else { obj3 = null; } if (objArr[2] == null || !(objArr[2] instanceof Boolean)) { z = false; } else { z = ((Boolean) objArr[2]).booleanValue(); } if ((aw.RK() && aw.ZK().Yl() != null && aw.ZK().Yl().oV(obj2)) || aw.ZK().Yl().oV(obj3)) { aVar2 = new g(context, obj2, obj3, z); break; } } break; case NET_WARN_BANNER: aVar2 = new o(context); break; case OTHER_ONLINE_BANNER: aVar2 = new p(context); break; case FORCE_NOTIFY_BANNER: aVar2 = new i(context); break; case FACEBOOK_BANNER: aVar2 = new h(context); break; case AD_BANNER: aVar2 = new a(context); break; case MAIN_FRAME_BANNER: be.ZV(); bd ZW = be.ZW(); if (ZW != null) { aVar2 = new l(context, ZW); break; } break; case ABTEST_BANNER: com.tencent.mm.model.a.e oP = g.aaK().oP("4"); if (oP != null) { obj = oP.value; if (!(bo.isNullOrNil(obj) || obj.equals(AppEventsConstants.EVENT_PARAM_VALUE_NO))) { Object obj4; if (!obj.equals("1")) { if (obj.equals("2")) { aw.ZK(); obj4 = c.Ry().get(328196, Boolean.FALSE); if (obj4 instanceof Boolean) { i = ((Boolean) obj4).booleanValue(); } if (i != 0) { ab.i("MicroMsg.BannerFactory", "[cpan] banner type upload contact has clicked."); break; } be.ZV(); if (be.ZY() != com.tencent.mm.model.be.a.SUCC) { aVar2 = new l(context, new bd(2, 1, "")); f.oT("4"); break; } ab.i("MicroMsg.BannerFactory", "already upload the Mobile"); break; } } aw.ZK(); obj4 = c.Ry().get(328195, Boolean.FALSE); if (obj4 instanceof Boolean) { i = ((Boolean) obj4).booleanValue(); } if (i != 0) { ab.i("MicroMsg.BannerFactory", "[cpan] banner type bind mobile has clicked."); break; } be.ZV(); com.tencent.mm.model.be.a ZY = be.ZY(); if (ZY != com.tencent.mm.model.be.a.SUCC && ZY != com.tencent.mm.model.be.a.SUCC_UNLOAD) { aVar2 = new l(context, new bd(1, 1, "")); f.oT("4"); break; } ab.i("MicroMsg.BannerFactory", "already Bind the Mobile"); break; } } break; case MASS_SEND_SIGHT_BANNER: aVar2 = new m(context); break; case TRY_NEW_INIT_BANNER: aVar2 = new q(context); break; case MAIN_FRAME_AND_ABTEST_BANNER: aVar2 = new k(context); break; case CHATTING_MONITORED_HINT: b bVar; if (objArr == null || objArr.length <= 0) { bVar = b.Main; } else { bVar = (b) objArr[0]; } aVar2 = new com.tencent.mm.ui.d.a(context, bVar); break; } AppMethodBeat.o(34649); return aVar2; } }
840cdb4f8cf787b321da09ac35cc6bca07903fd5
56319e53f4155b0f0ae4ab249b1d3249fc8ddd98
/apache-tomcat-8.0.39/converted/org/apache/tomcat/util/http/MainForTestRequestUtil_testNormalize20.java
97565507554143c4a0295bd89d0d8ad5d58ed557
[]
no_license
SnowOnion/J2mConvertedTestcases
2f904e2f2754f859f6125f248d3672eb1a70abd1
e74b0e4c08f12e5effeeb8581670156ace42640a
refs/heads/master
2021-01-11T19:01:42.207334
2017-01-19T12:22:22
2017-01-19T12:22:22
79,295,183
1
0
null
null
null
null
UTF-8
Java
false
false
409
java
package org.apache.tomcat.util.http; import org.apache.tomcat.util.http.TestRequestUtil; public class MainForTestRequestUtil_testNormalize20 { public static void main(String[] args) { try { TestRequestUtil objTestRequestUtil = new TestRequestUtil(); objTestRequestUtil.testNormalize20(); } catch (Throwable e) { e.printStackTrace(); } } }
732750ec4442736743dbdb11d3d801f339cb303a
0e7dfb99c678e6af489cc9d5be3811f6a90b25da
/src/main/java/net/craftminecraft/bungee/bungeeyaml/bukkitapi/ConfigurationOptions.java
8f939a8e994faf62d953c100f4df2c0a78d95bcb
[]
no_license
AwesomePowered/BungeeYAML
240c322b618bec8ccb65040066e3b431bc497f5d
bcbe8fd0f33766dc00bb42c4f359985bd07122b2
refs/heads/master
2021-01-16T19:10:31.047966
2014-08-08T12:23:17
2014-08-08T12:23:17
11,221,611
0
2
null
null
null
null
UTF-8
Java
false
false
2,940
java
package net.craftminecraft.bungee.bungeeyaml.bukkitapi; /** * Various settings for controlling the input and output of a {@link Configuration} */ public class ConfigurationOptions { private char pathSeparator = '.'; private boolean copyDefaults = false; private final Configuration configuration; protected ConfigurationOptions(Configuration configuration) { this.configuration = configuration; } /** * Returns the {@link Configuration} that this object is responsible for. * * @return Parent configuration */ public Configuration configuration() { return configuration; } /** * Gets the char that will be used to separate {@link ConfigurationSection}s * <p /> * This value does not affect how the {@link Configuration} is stored, only in * how you access the data. The default value is '.'. * * @return Path separator */ public char pathSeparator() { return pathSeparator; } /** * Sets the char that will be used to separate {@link ConfigurationSection}s * <p /> * This value does not affect how the {@link Configuration} is stored, only in * how you access the data. The default value is '.'. * * @param value Path separator * @return This object, for chaining */ public ConfigurationOptions pathSeparator(char value) { this.pathSeparator = value; return this; } /** * Checks if the {@link Configuration} should copy values from its default {@link Configuration} directly. * <p /> * If this is true, all values in the default Configuration will be directly copied, * making it impossible to distinguish between values that were set and values that * are provided by default. As a result, {@link ConfigurationSection#contains(java.lang.String)} will always * return the same value as {@link ConfigurationSection#isSet(java.lang.String)}. * The default value is false. * * @return Whether or not defaults are directly copied */ public boolean copyDefaults() { return copyDefaults; } /** * Sets if the {@link Configuration} should copy values from its default {@link Configuration} directly. * <p /> * If this is true, all values in the default Configuration will be directly copied, * making it impossible to distinguish between values that were set and values that * are provided by default. As a result, {@link ConfigurationSection#contains(java.lang.String)} will always * return the same value as {@link ConfigurationSection#isSet(java.lang.String)}. * The default value is false. * * @param value Whether or not defaults are directly copied * @return This object, for chaining */ public ConfigurationOptions copyDefaults(boolean value) { this.copyDefaults = value; return this; } }
34491a1e88c0572cb3d285d9fd1d42871e0c49c8
3098dd57aacfded9adc58025301b1a9f833424f7
/app/src/main/java/com/pharmacy/android/dwa/MainAdapters/ItemAdapter.java
53b04776686dc3af8e73c57e45bccc816fbecbbb
[]
no_license
AhmedMensh/3amo_hanna
a1a779ced91054d2f7a4df0807bd033390fc9b66
eb4c600c949b9b29354f9fcd0981cefc63c6cf60
refs/heads/master
2022-11-07T21:53:36.605247
2020-06-21T09:37:50
2020-06-21T09:37:50
273,873,082
0
0
null
null
null
null
UTF-8
Java
false
false
8,963
java
package com.pharmacy.android.dwa.MainAdapters; import android.content.Context; import android.os.Bundle; import android.support.v4.app.Fragment; import android.support.v4.app.FragmentActivity; import android.support.v4.app.FragmentTransaction; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.TextView; import android.widget.Toast; import com.pharmacy.android.dwa.DataModel.SubCategoerItemModel; import com.pharmacy.android.dwa.FragmentPages.FragmentDetailItem; import com.pharmacy.android.dwa.Home.MainHome; import com.pharmacy.android.dwa.R; import com.pharmacy.android.dwa.Utilities.Constance; import com.pharmacy.android.dwa.Utilities.SessionApp; import java.util.ArrayList; /** * Created by Sufyan_Karajeh on 2/20/2018. */ public class ItemAdapter extends RecyclerView.Adapter<ItemAdapter.ViewHolder> { private Context mContext; private ArrayList<SubCategoerItemModel> fragmentList; private int IndexParent; private int isSave; SessionApp sessionApp; public ItemAdapter(Context mContext, ArrayList<SubCategoerItemModel> fragmentList,int ind,int isSave) { this.mContext = mContext; this.fragmentList = fragmentList; IndexParent=ind; this.isSave=isSave; sessionApp=new SessionApp(mContext); } @Override public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { View v = LayoutInflater.from(parent.getContext()) .inflate(R.layout.content_item, parent, false); ViewHolder vh = new ViewHolder(v); return vh; } @Override public void onBindViewHolder(final ViewHolder holder, final int position) { final SubCategoerItemModel storeCard = fragmentList.get(position); holder.NameItem.setText(storeCard.getName()+""); holder.mainLayout.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { loadFragmentWithOutAnim(new FragmentDetailItem(),IndexParent); } }); if(isSave==1){ if(IndexParent==1 ){ if(sessionApp.getLang().equals("en")) { holder.layCorner.setBackground(mContext.getResources().getDrawable(R.drawable.border_corner_brown_right)); }else{ holder.layCorner.setBackground(mContext.getResources().getDrawable(R.drawable.border_corner_brown_left)); } }else if(IndexParent==2){ if(sessionApp.getLang().equals("en")) { holder.layCorner.setBackground(mContext.getResources().getDrawable(R.drawable.border_corner_pink_right)); }else{ holder.layCorner.setBackground(mContext.getResources().getDrawable(R.drawable.border_corner_pink_left)); } }else if(IndexParent==3){ if(sessionApp.getLang().equals("en")) { holder.layCorner.setBackground(mContext.getResources().getDrawable(R.drawable.border_profile_notif_raight)); }else{ holder.layCorner.setBackground(mContext.getResources().getDrawable(R.drawable.border_profile_notif)); } }else if(IndexParent==4){ if(sessionApp.getLang().equals("en")) { holder.layCorner.setBackground(mContext.getResources().getDrawable(R.drawable.border_corner_test_right)); }else{ holder.layCorner.setBackground(mContext.getResources().getDrawable(R.drawable.border_corner_test_left)); } }else if(IndexParent==5){ if(sessionApp.getLang().equals("en")) { holder.layCorner.setBackground(mContext.getResources().getDrawable(R.drawable.border_corner_yello_right)); }else{ holder.layCorner.setBackground(mContext.getResources().getDrawable(R.drawable.border_corner_yello_left)); } } else if(IndexParent==7){ if(sessionApp.getLang().equals("en")) { holder.layCorner.setBackground(mContext.getResources().getDrawable(R.drawable.border_check_raight)); }else{ holder.layCorner.setBackground(mContext.getResources().getDrawable(R.drawable.border_check_left)); } } holder.layCorner.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { view.setAnimation(MainHome.buttonClick); setMessageToast( mContext.getString(R.string.saved)); } }); }else{ if(IndexParent==4){ if(sessionApp.getLang().equals("en")) { holder.layCorner.setBackground(mContext.getResources().getDrawable(R.drawable.border_corner_test_right)); }else{ holder.layCorner.setBackground(mContext.getResources().getDrawable(R.drawable.border_corner_test_left)); } } holder.imgCorener.setImageDrawable(mContext.getResources().getDrawable(R.drawable.removeitem)); holder.layCorner.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { view.setAnimation(MainHome.buttonClick); setMessageToast( mContext.getString(R.string.remove)); fragmentList.remove(position); notifyDataSetChanged(); } }); } switch (Constance.backColor){ case 1: holder.itemIamge.setImageDrawable(mContext.getResources().getDrawable(R.drawable.ic_snakes)); holder.buyBtn.setTextColor(mContext.getResources().getColor(R.color.brown)); break; case 2: holder.itemIamge.setImageDrawable(mContext.getResources().getDrawable(R.drawable.ic_dairy)); holder.buyBtn.setTextColor(mContext.getResources().getColor(R.color.brown_light)); break; case 3: holder.itemIamge.setImageDrawable(mContext.getResources().getDrawable(R.drawable.ic_fruits)); holder.buyBtn.setTextColor(mContext.getResources().getColor(R.color.Red)); break; case 4: holder.itemIamge.setImageDrawable(mContext.getResources().getDrawable(R.drawable.ic_beverages)); holder.buyBtn.setTextColor(mContext.getResources().getColor(R.color.test)); break; case 5: holder.itemIamge.setImageDrawable(mContext.getResources().getDrawable(R.drawable.ic_bakery)); holder.buyBtn.setTextColor(mContext.getResources().getColor(R.color.yellow)); break; case 6: holder.itemIamge.setImageDrawable(mContext.getResources().getDrawable(R.drawable.ic_vegetables)); holder.buyBtn.setTextColor(mContext.getResources().getColor(R.color.green)); break; case 7: holder.itemIamge.setImageDrawable(mContext.getResources().getDrawable(R.drawable.ic_personal_care)); holder.buyBtn.setTextColor(mContext.getResources().getColor(R.color.blue)); break; } } @Override public int getItemCount() { return fragmentList.size(); } public class ViewHolder extends RecyclerView.ViewHolder { private TextView NameItem; LinearLayout mainLayout; Button buyBtn; LinearLayout layCorner; ImageView imgCorener ,itemIamge; public ViewHolder(View v) { super(v); itemIamge = v.findViewById(R.id.image); NameItem = v.findViewById(R.id.nameItem); mainLayout=v.findViewById(R.id.mainLayout); layCorner=v.findViewById(R.id.layCorner); imgCorener=v.findViewById(R.id.imgCorener); buyBtn = v.findViewById(R.id.buy); } } public void loadFragmentWithOutAnim(Fragment fragment,int ind) { Bundle bundle = new Bundle(); bundle.putInt("Index",ind); fragment.setArguments(bundle); FragmentTransaction transaction = ((FragmentActivity) mContext).getSupportFragmentManager().beginTransaction(); transaction.addToBackStack(null); transaction.add(R.id.frame_container, fragment); transaction.commit(); } public void setMessageToast(String mess) { Toast.makeText(mContext,mess+"",Toast.LENGTH_SHORT).show(); } }
123aa6f28c870693f40e29b56013f6681cf92764
fd1841e3cf7324ccc8cd22c14bd4fbf1e5119d29
/Assignment/managers/ExtentManager.java
94d10a70f884286c9e0be18c0584d638b825ac21
[]
no_license
vijaykumar457/Assignment
bc6bd713f24390ec937a7f5f3c62b9ed44696be3
f3d3e3278dbe8f28cff17380753669a5ece2a6f7
refs/heads/master
2023-06-02T20:57:00.534374
2021-06-22T10:55:47
2021-06-22T10:55:47
379,234,849
0
0
null
null
null
null
UTF-8
Java
false
false
2,412
java
package com.managers; import java.io.File; import com.aventstack.extentreports.ExtentReports; import com.aventstack.extentreports.reporter.ExtentHtmlReporter; import com.aventstack.extentreports.reporter.configuration.Theme; public class ExtentManager { private static ExtentReports extent; private static String reportFileName = "Test-Automaton-Report"+".html"; private static String fileSeperator = System.getProperty("file.separator"); private static String reportFilepath = System.getProperty("user.dir") +fileSeperator+ "TestReport"; private static String reportFileLocation = reportFilepath +fileSeperator+ reportFileName; public static ExtentReports getInstance() { if (extent == null) createInstance(); return extent; } //Create an extent report instance public static ExtentReports createInstance() { String fileName = getReportPath(reportFilepath); ExtentHtmlReporter htmlReporter = new ExtentHtmlReporter(fileName); // htmlReporter.config().setTestViewChartLocation(ChartLocation.BOTTOM); // htmlReporter.config().setChartVisibilityOnOpen(true); htmlReporter.config().setTheme(Theme.STANDARD); htmlReporter.config().setDocumentTitle(reportFileName); htmlReporter.config().setEncoding("utf-8"); htmlReporter.config().setReportName(reportFileName); htmlReporter.config().setTimeStampFormat("EEEE, MMMM dd, yyyy, hh:mm a '('zzz')'"); extent = new ExtentReports(); extent.attachReporter(htmlReporter); //Set environment details extent.setSystemInfo("OS", "Windows"); extent.setSystemInfo("AUT", "QA"); return extent; } //Create the report path private static String getReportPath (String path) { File testDirectory = new File(path); if (!testDirectory.exists()) { if (testDirectory.mkdir()) { System.out.println("Directory: " + path + " is created!" ); return reportFileLocation; } else { System.out.println("Failed to create directory: " + path); return System.getProperty("user.dir"); } } else { System.out.println("Directory already exists: " + path); } return reportFileLocation; } }
[ "User1@NEWLENOVO" ]
User1@NEWLENOVO
c12ce58fa24888de2b0f91804ad261ebda0db3ef
79389555a85a09199df423e0c3971e668340ad37
/src/PasswordGui.java
9181a771fdae13b91923d477000ba903bb41e5ad
[]
no_license
badgerwild/password-maker
bba8cf3917428fa7d7d71bdf6c24296cd91bfd7d
702c238f416f93565fc92e704928af47618e3311
refs/heads/master
2020-05-21T01:07:24.623254
2020-04-28T13:12:00
2020-04-28T13:12:00
185,848,874
0
0
null
null
null
null
UTF-8
Java
false
false
6,301
java
import javafx.application.Application; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.event.EventHandler; import javafx.geometry.Insets; import javafx.scene.control.*; import javafx.scene.input.MouseEvent; import javafx.scene.layout.HBox; import javafx.scene.layout.VBox; import javafx.stage.Stage; import javafx.scene.text.Text; import javafx.scene.text.Font; import javafx.scene.*; import java.io.File; import java.io.FileNotFoundException; import java.io.ObjectOutputStream; import java.io.PrintStream; import java.io.IOException; import java.util.ArrayList; import java.util.Scanner; public class PasswordGui extends Application { TextArea output = new TextArea(); public static void main(String[] args) { launch(args); } @Override public void start(Stage primaryStage) throws Exception { Scene scene = new Scene(new Group()); primaryStage.setWidth(500); primaryStage.setHeight(500); primaryStage.setTitle("Password Generator"); Text t1 = new Text(); t1.setFont(new Font(22)); t1.setX(5); t1.setY(5); t1.setText("Welcome to the pass code generator"); Text t2 = new Text("How many dice would you like to use?"); t2.setFont(new Font(14)); Text t3 = new Text("How many words would you like the pass phrase to have?"); t2.setFont(new Font(14)); //first group of radio buttons selects the number of Dice to be used final ToggleGroup numberOfDice = new ToggleGroup(); //use the long word list RadioButton r1 = new RadioButton("four"); r1.setToggleGroup(numberOfDice); r1.setSelected(true); r1.setUserData(4); //use the short word list RadioButton r2 = new RadioButton("five"); r2.setToggleGroup(numberOfDice); r2.setUserData(5); //event handler for the first radio button group numberOfDice.selectedToggleProperty().addListener(new ChangeListener<Toggle>() { @Override public void changed(ObservableValue<? extends Toggle> observable, Toggle oldValue, Toggle newValue) { if(numberOfDice.getSelectedToggle() != null){ // System.out.println(numberOfDice.getSelectedToggle().getUserData().toString()); if(numberOfDice.getSelectedToggle().getUserData().equals(4)){ diceNumber =4; wordSource = new File("/home/badger/word-lists/eff_short_wordlist.txt"); } else if(numberOfDice.getSelectedToggle().getUserData().equals(5)){ diceNumber =5; wordSource = new File("/home/badger/word-lists/eff_large_wordlist.txt"); } } } }); //define a new hbox and vbox HBox hBox = new HBox(); VBox vbox = new VBox(); //adding in the intial text and radio buttons vbox.getChildren().add(t1); vbox.getChildren().add(t2); vbox.getChildren().add(r1); vbox.getChildren().add(r2); vbox.setSpacing(10); vbox.setPadding(new Insets(20, 10, 50, 20)); hBox.getChildren().add(vbox); hBox.setSpacing(50); ((Group)scene.getRoot()).getChildren().add(hBox); //group two of the radion buttons, determines the number of the words used in the pass phrase final ToggleGroup selectNumberOfWords = new ToggleGroup(); RadioButton w1 = new RadioButton("four"); w1.setToggleGroup(selectNumberOfWords); w1.setUserData(4); w1.setSelected(true); RadioButton w2 = new RadioButton("five"); w2.setToggleGroup(selectNumberOfWords); w2.setUserData(5); RadioButton w3 = new RadioButton("six"); w3.setToggleGroup(selectNumberOfWords); w3.setUserData(6); //Event handler for the second group of radio buttons. Selects the number of words that will make up the passcode selectNumberOfWords.selectedToggleProperty().addListener(new ChangeListener<Toggle>() { @Override public void changed(ObservableValue<? extends Toggle> observable, Toggle oldValue, Toggle newValue) { if(selectNumberOfWords.getSelectedToggle().getUserData()!=null){ // System.out.println(selectNumberOfWords.getSelectedToggle().getUserData().toString()); if(selectNumberOfWords.getSelectedToggle().getUserData().equals(4)){ wordNumber=4; } else if(selectNumberOfWords.getSelectedToggle().getUserData().equals(5)){ wordNumber =5; } else if(selectNumberOfWords.getSelectedToggle().getUserData().equals(6)){ wordNumber =6; } } } }); vbox.getChildren().add(t3); vbox.getChildren().add(w1); vbox.getChildren().add(w2); vbox.getChildren().add(w3); vbox.setSpacing(12); vbox.setPadding(new Insets(20,10,10,20)); //button that completes the first function Button generate = new Button("Generate"); generate.setOnMouseClicked(new EventHandler<MouseEvent>() { @Override public void handle(MouseEvent event) { System.out.println(thePassword()); } }); vbox.getChildren().add(generate); //TextArea output = new TextArea(); System.setOut(new PrintStream(new ObjectOutputStream() { @Override public void write(int b) throws IOException { output.appendText("" + ((char) b)); } @Override public void write(byte[] b) throws IOException { output.appendText(new String(b)); } @Override public void write(byte[] b, int off, int len) throws IOException { output.appendText(new String(b, off, len)); } })); output.setMaxSize(400, 100); vbox.getChildren().add(output); primaryStage.setScene(scene); primaryStage.show(); } }
97d49a4962d9bdd6d8e4571fce3364257065245e
f3aec68bc48dc52e76f276fd3b47c3260c01b2a4
/core/drugstore-tier/src/main/java/org/hl7/v3/COCTMT010000UV01Authorization.java
d4c8262d2447bcfa7ffdcd7ef29d4c28375e22fb
[]
no_license
MarsStirner/core
c9a383799a92e485e2395d81a0bc95d51ada5fa5
6fbf37af989aa48fabb9c4c2566195aafd2b16ab
refs/heads/master
2020-12-03T00:39:51.407573
2016-04-29T12:28:32
2016-04-29T12:28:32
96,041,573
0
1
null
null
null
null
UTF-8
Java
false
false
5,522
java
package org.hl7.v3; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for COCT_MT010000UV01.Authorization complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;complexType name="COCT_MT010000UV01.Authorization"> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element name="realmCode" type="{urn:hl7-org:v3}CS" maxOccurs="unbounded" minOccurs="0"/> * &lt;element name="typeId" type="{urn:hl7-org:v3}II" minOccurs="0"/> * &lt;element name="templateId" type="{urn:hl7-org:v3}II" maxOccurs="unbounded" minOccurs="0"/> * &lt;element name="consent" type="{urn:hl7-org:v3}COCT_MT470000UV.Consent"/> * &lt;/sequence> * &lt;attribute name="nullFlavor" type="{urn:hl7-org:v3}NullFlavor" /> * &lt;attribute name="typeCode" use="required" type="{urn:hl7-org:v3}ActRelationshipAuthorizedBy" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "COCT_MT010000UV01.Authorization", propOrder = { "realmCode", "typeId", "templateId", "consent" }) public class COCTMT010000UV01Authorization { protected List<CS> realmCode; protected II typeId; protected List<II> templateId; @XmlElement(required = true, nillable = true) protected COCTMT470000UVConsent consent; @XmlAttribute(name = "nullFlavor") protected NullFlavor nullFlavor; @XmlAttribute(name = "typeCode", required = true) protected ActRelationshipAuthorizedBy typeCode; /** * Gets the value of the realmCode property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the realmCode property. * * <p> * For example, to add a new item, do as follows: * <pre> * getRealmCode().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link CS } * * */ public List<CS> getRealmCode() { if (realmCode == null) { realmCode = new ArrayList<CS>(); } return this.realmCode; } /** * Gets the value of the typeId property. * * @return * possible object is * {@link II } * */ public II getTypeId() { return typeId; } /** * Sets the value of the typeId property. * * @param value * allowed object is * {@link II } * */ public void setTypeId(II value) { this.typeId = value; } /** * Gets the value of the templateId property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the templateId property. * * <p> * For example, to add a new item, do as follows: * <pre> * getTemplateId().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link II } * * */ public List<II> getTemplateId() { if (templateId == null) { templateId = new ArrayList<II>(); } return this.templateId; } /** * Gets the value of the consent property. * * @return * possible object is * {@link COCTMT470000UVConsent } * */ public COCTMT470000UVConsent getConsent() { return consent; } /** * Sets the value of the consent property. * * @param value * allowed object is * {@link COCTMT470000UVConsent } * */ public void setConsent(COCTMT470000UVConsent value) { this.consent = value; } /** * Gets the value of the nullFlavor property. * * @return * possible object is * {@link NullFlavor } * */ public NullFlavor getNullFlavor() { return nullFlavor; } /** * Sets the value of the nullFlavor property. * * @param value * allowed object is * {@link NullFlavor } * */ public void setNullFlavor(NullFlavor value) { this.nullFlavor = value; } /** * Gets the value of the typeCode property. * * @return * possible object is * {@link ActRelationshipAuthorizedBy } * */ public ActRelationshipAuthorizedBy getTypeCode() { return typeCode; } /** * Sets the value of the typeCode property. * * @param value * allowed object is * {@link ActRelationshipAuthorizedBy } * */ public void setTypeCode(ActRelationshipAuthorizedBy value) { this.typeCode = value; } }
a60ad132ea8dc5353c097fd8e4bd85032c14f0d1
b25e0126f671c6ddca46a4329e388e14d99c2220
/iotdb-core/consensus/src/main/java/org/apache/iotdb/consensus/common/request/ByteBufferConsensusRequest.java
6ce31cc18597de112ef0915d6e9cf67fc46b386e
[ "Apache-2.0", "BSD-3-Clause", "EPL-1.0", "CDDL-1.1", "MIT", "LicenseRef-scancode-public-domain", "BSD-2-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
apache/iotdb
fd59940125c905537ffedad3b0963f7170ba67d9
d5450a1e5648699409e1c793035204989d78cfbb
refs/heads/master
2023-09-01T01:15:59.527322
2023-08-31T11:43:29
2023-08-31T11:43:29
158,975,124
2,882
893
Apache-2.0
2023-09-14T14:16:58
2018-11-24T21:29:17
Java
UTF-8
Java
false
false
1,521
java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.iotdb.consensus.common.request; import java.nio.ByteBuffer; /** * In general, for the requests from the leader, we can directly strong-cast the class to reduce the * cost of deserialization during the execution of the leader state machine. For the requests * received by the followers, the responsibility of deserialization can generally be transferred to * the state machine layer */ public class ByteBufferConsensusRequest implements IConsensusRequest { private final ByteBuffer byteBuffer; public ByteBufferConsensusRequest(ByteBuffer byteBuffer) { this.byteBuffer = byteBuffer; } @Override public ByteBuffer serializeToByteBuffer() { return byteBuffer; } }
20036bc8186edec9c6a7dfcbc40f01c41804bd29
4b5b8de63e3d2bef4833a830440885a6045a9306
/movieapp-api/target/generated-sources/upgrad/movieapp/api/model/TheatreShowType.java
49db4088f6652ebf95631e51656668306255c1fc
[]
no_license
somijaiswal23/Moviepp-Backend
2283c21b022f62edca8f2c37be037fb82b369d53
eb089d5062d1eae1682c160d3d8dbf6eb653aa6a
refs/heads/master
2020-04-24T07:38:41.742411
2018-08-30T07:14:50
2018-08-30T07:14:50
171,804,644
1
0
null
null
null
null
UTF-8
Java
false
false
5,827
java
package upgrad.movieapp.api.model; import java.util.Objects; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonCreator; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.util.UUID; import upgrad.movieapp.api.model.LanguageType; import upgrad.movieapp.api.model.MovieSummaryType; import org.springframework.validation.annotation.Validated; import javax.validation.Valid; import javax.validation.constraints.*; /** * TheatreShowType */ @Validated @javax.annotation.Generated(value = "io.swagger.codegen.languages.SpringCodegen", date = "2018-08-29T15:54:02.515+05:30") public class TheatreShowType { @JsonProperty("id") private UUID id = null; @JsonProperty("movie") private MovieSummaryType movie = null; @JsonProperty("show_timing") private String showTiming = null; @JsonProperty("language") private LanguageType language = null; @JsonProperty("unit_price") private Float unitPrice = null; @JsonProperty("total_seats") private Integer totalSeats = null; @JsonProperty("available_seats") private Integer availableSeats = null; public TheatreShowType id(UUID id) { this.id = id; return this; } /** * Unique identifier of the show in a standard UUID format * @return id **/ @ApiModelProperty(value = "Unique identifier of the show in a standard UUID format") @Valid public UUID getId() { return id; } public void setId(UUID id) { this.id = id; } public TheatreShowType movie(MovieSummaryType movie) { this.movie = movie; return this; } /** * Get movie * @return movie **/ @ApiModelProperty(value = "") @Valid public MovieSummaryType getMovie() { return movie; } public void setMovie(MovieSummaryType movie) { this.movie = movie; } public TheatreShowType showTiming(String showTiming) { this.showTiming = showTiming; return this; } /** * Show timing in yyyy-MM-ddTHH:MM format * @return showTiming **/ @ApiModelProperty(value = "Show timing in yyyy-MM-ddTHH:MM format") public String getShowTiming() { return showTiming; } public void setShowTiming(String showTiming) { this.showTiming = showTiming; } public TheatreShowType language(LanguageType language) { this.language = language; return this; } /** * Get language * @return language **/ @ApiModelProperty(value = "") @Valid public LanguageType getLanguage() { return language; } public void setLanguage(LanguageType language) { this.language = language; } public TheatreShowType unitPrice(Float unitPrice) { this.unitPrice = unitPrice; return this; } /** * Unit price of the movie (for e.g. 200.00) * @return unitPrice **/ @ApiModelProperty(value = "Unit price of the movie (for e.g. 200.00)") public Float getUnitPrice() { return unitPrice; } public void setUnitPrice(Float unitPrice) { this.unitPrice = unitPrice; } public TheatreShowType totalSeats(Integer totalSeats) { this.totalSeats = totalSeats; return this; } /** * Total number that this show can host * @return totalSeats **/ @ApiModelProperty(value = "Total number that this show can host") public Integer getTotalSeats() { return totalSeats; } public void setTotalSeats(Integer totalSeats) { this.totalSeats = totalSeats; } public TheatreShowType availableSeats(Integer availableSeats) { this.availableSeats = availableSeats; return this; } /** * Total available seats that this show still has * @return availableSeats **/ @ApiModelProperty(value = "Total available seats that this show still has") public Integer getAvailableSeats() { return availableSeats; } public void setAvailableSeats(Integer availableSeats) { this.availableSeats = availableSeats; } @Override public boolean equals(java.lang.Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TheatreShowType theatreShowType = (TheatreShowType) o; return Objects.equals(this.id, theatreShowType.id) && Objects.equals(this.movie, theatreShowType.movie) && Objects.equals(this.showTiming, theatreShowType.showTiming) && Objects.equals(this.language, theatreShowType.language) && Objects.equals(this.unitPrice, theatreShowType.unitPrice) && Objects.equals(this.totalSeats, theatreShowType.totalSeats) && Objects.equals(this.availableSeats, theatreShowType.availableSeats); } @Override public int hashCode() { return Objects.hash(id, movie, showTiming, language, unitPrice, totalSeats, availableSeats); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class TheatreShowType {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" movie: ").append(toIndentedString(movie)).append("\n"); sb.append(" showTiming: ").append(toIndentedString(showTiming)).append("\n"); sb.append(" language: ").append(toIndentedString(language)).append("\n"); sb.append(" unitPrice: ").append(toIndentedString(unitPrice)).append("\n"); sb.append(" totalSeats: ").append(toIndentedString(totalSeats)).append("\n"); sb.append(" availableSeats: ").append(toIndentedString(availableSeats)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(java.lang.Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
e3c257e052266d9df8ce5f7765ef32aa8b57e3bf
c54bff13e390bcffdcacf93f969f3539f1edb82c
/app/src/main/java/example/foodbuzz/Adapters/CirclePageIndicator.java
8911a3e71bf5513bf4a8677d69ee4d7af4cb1da7
[]
no_license
tarook1994/Udacity-Nano-Degree-Capston-Foodbuzz
e68f6e6852a503317d057a20bb1cda57740ec85b
f056fd979647f7715eeec6556539e4af9d0c4f81
refs/heads/master
2021-01-13T06:06:47.027542
2017-04-25T00:23:50
2017-04-25T00:23:50
86,526,712
0
0
null
null
null
null
UTF-8
Java
false
false
19,754
java
/* * Copyright (C) 2011 Patrik Akerfeldt * Copyright (C) 2011 Jake Wharton * * 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 example.foodbuzz.Adapters; import android.content.Context; import android.content.res.Resources; import android.content.res.TypedArray; import android.graphics.Canvas; import android.graphics.Paint; import android.graphics.Paint.Style; import android.graphics.drawable.Drawable; import android.os.Parcel; import android.os.Parcelable; import android.support.v4.view.MotionEventCompat; import android.support.v4.view.ViewConfigurationCompat; import android.support.v4.view.ViewPager; import android.util.AttributeSet; import android.view.MotionEvent; import android.view.View; import android.view.ViewConfiguration; import example.foodbuzz.R; import static android.graphics.Paint.ANTI_ALIAS_FLAG; import static android.widget.LinearLayout.HORIZONTAL; import static android.widget.LinearLayout.VERTICAL; /** * Draws circles (one for each view). The current view position is filled and * others are only stroked. */ public class CirclePageIndicator extends View implements PageIndicator { private static final int INVALID_POINTER = -1; private float mRadius; private final Paint mPaintPageFill = new Paint(ANTI_ALIAS_FLAG); private final Paint mPaintStroke = new Paint(ANTI_ALIAS_FLAG); private final Paint mPaintFill = new Paint(ANTI_ALIAS_FLAG); private ViewPager mViewPager; private ViewPager.OnPageChangeListener mListener; private int mCurrentPage; private int mSnapPage; private float mPageOffset; private int mScrollState; private int mOrientation; private boolean mCentered; private boolean mSnap; private int mTouchSlop; private float mLastMotionX = -1; private int mActivePointerId = INVALID_POINTER; private boolean mIsDragging; public CirclePageIndicator(Context context) { this(context, null); } public CirclePageIndicator(Context context, AttributeSet attrs) { this(context, attrs, R.attr.vpiCirclePageIndicatorStyle); } public CirclePageIndicator(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); if (isInEditMode()) return; //Load defaults from resources final Resources res = getResources(); final int defaultPageColor = res.getColor(R.color.default_circle_indicator_page_color); final int defaultFillColor = res.getColor(R.color.default_circle_indicator_fill_color); final int defaultOrientation = res.getInteger(R.integer.default_circle_indicator_orientation); final int defaultStrokeColor = res.getColor(R.color.default_circle_indicator_stroke_color); final float defaultStrokeWidth = res.getDimension(R.dimen.default_circle_indicator_stroke_width); final float defaultRadius = 16; final boolean defaultCentered = res.getBoolean(R.bool.default_circle_indicator_centered); final boolean defaultSnap = res.getBoolean(R.bool.default_circle_indicator_snap); //Retrieve styles attributes TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CirclePageIndicator, defStyle, 0); mCentered = a.getBoolean(R.styleable.CirclePageIndicator_centered, defaultCentered); mOrientation = a.getInt(R.styleable.CirclePageIndicator_android_orientation, defaultOrientation); mPaintPageFill.setStyle(Style.FILL); mPaintPageFill.setColor(a.getColor(R.styleable.CirclePageIndicator_pageColor, defaultPageColor)); mPaintStroke.setStyle(Style.STROKE); mPaintStroke.setColor(a.getColor(R.styleable.CirclePageIndicator_strokeColor, defaultStrokeColor)); mPaintStroke.setStrokeWidth(a.getDimension(R.styleable.CirclePageIndicator_strokeWidth, defaultStrokeWidth)); mPaintFill.setStyle(Style.FILL); mPaintFill.setColor(a.getColor(R.styleable.CirclePageIndicator_fillColor, defaultFillColor)); mRadius = a.getDimension(R.styleable.CirclePageIndicator_radius, defaultRadius); mSnap = a.getBoolean(R.styleable.CirclePageIndicator_snap, defaultSnap); Drawable background = a.getDrawable(R.styleable.CirclePageIndicator_android_background); if (background != null) { setBackgroundDrawable(background); } a.recycle(); final ViewConfiguration configuration = ViewConfiguration.get(context); mTouchSlop = ViewConfigurationCompat.getScaledPagingTouchSlop(configuration); } public void setCentered(boolean centered) { mCentered = centered; invalidate(); } public boolean isCentered() { return mCentered; } public void setPageColor(int pageColor) { mPaintPageFill.setColor(pageColor); invalidate(); } public int getPageColor() { return mPaintPageFill.getColor(); } public void setFillColor(int fillColor) { mPaintFill.setColor(fillColor); invalidate(); } public int getFillColor() { return mPaintFill.getColor(); } public void setOrientation(int orientation) { switch (orientation) { case HORIZONTAL: case VERTICAL: mOrientation = orientation; requestLayout(); break; default: throw new IllegalArgumentException("Orientation must be either HORIZONTAL or VERTICAL."); } } public int getOrientation() { return mOrientation; } public void setStrokeColor(int strokeColor) { mPaintStroke.setColor(strokeColor); invalidate(); } public int getStrokeColor() { return mPaintStroke.getColor(); } public void setStrokeWidth(float strokeWidth) { mPaintStroke.setStrokeWidth(strokeWidth); invalidate(); } public float getStrokeWidth() { return mPaintStroke.getStrokeWidth(); } public void setRadius(float radius) { mRadius = radius; invalidate(); } public float getRadius() { return mRadius; } public void setSnap(boolean snap) { mSnap = snap; invalidate(); } public boolean isSnap() { return mSnap; } @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); if (mViewPager == null) { return; } final int count = mViewPager.getAdapter().getCount(); if (count == 0) { return; } if (mCurrentPage >= count) { setCurrentItem(count - 1); return; } int longSize; int longPaddingBefore; int longPaddingAfter; int shortPaddingBefore; if (mOrientation == HORIZONTAL) { longSize = getWidth(); longPaddingBefore = getPaddingLeft(); longPaddingAfter = getPaddingRight(); shortPaddingBefore = getPaddingTop(); } else { longSize = getHeight(); longPaddingBefore = getPaddingTop(); longPaddingAfter = getPaddingBottom(); shortPaddingBefore = getPaddingLeft(); } final float threeRadius = mRadius * 3; final float shortOffset = shortPaddingBefore + mRadius; float longOffset = longPaddingBefore + mRadius; if (mCentered) { longOffset += ((longSize - longPaddingBefore - longPaddingAfter) / 2.0f) - ((count * threeRadius) / 2.0f); } float dX; float dY; float pageFillRadius = mRadius; if (mPaintStroke.getStrokeWidth() > 0) { pageFillRadius -= mPaintStroke.getStrokeWidth() / 2.0f; } //Draw stroked circles for (int iLoop = 0; iLoop < count; iLoop++) { float drawLong = longOffset + (iLoop * threeRadius); if (mOrientation == HORIZONTAL) { dX = drawLong; dY = shortOffset; } else { dX = shortOffset; dY = drawLong; } // Only paint fill if not completely transparent if (mPaintPageFill.getAlpha() > 0) { canvas.drawCircle(dX, dY, pageFillRadius, mPaintPageFill); } // Only paint stroke if a stroke width was non-zero if (pageFillRadius != mRadius) { canvas.drawCircle(dX, dY, mRadius, mPaintStroke); } } //Draw the filled circle according to the current scroll float cx = (mSnap ? mSnapPage : mCurrentPage) * threeRadius; if (!mSnap) { cx += mPageOffset * threeRadius; } if (mOrientation == HORIZONTAL) { dX = longOffset + cx; dY = shortOffset; } else { dX = shortOffset; dY = longOffset + cx; } canvas.drawCircle(dX, dY, mRadius, mPaintFill); } public boolean onTouchEvent(MotionEvent ev) { if (super.onTouchEvent(ev)) { return true; } if ((mViewPager == null) || (mViewPager.getAdapter().getCount() == 0)) { return false; } final int action = ev.getAction() & MotionEventCompat.ACTION_MASK; switch (action) { case MotionEvent.ACTION_DOWN: mActivePointerId = MotionEventCompat.getPointerId(ev, 0); mLastMotionX = ev.getX(); break; case MotionEvent.ACTION_MOVE: { final int activePointerIndex = MotionEventCompat.findPointerIndex(ev, mActivePointerId); final float x = MotionEventCompat.getX(ev, activePointerIndex); final float deltaX = x - mLastMotionX; if (!mIsDragging) { if (Math.abs(deltaX) > mTouchSlop) { mIsDragging = true; } } if (mIsDragging) { mLastMotionX = x; if (mViewPager.isFakeDragging() || mViewPager.beginFakeDrag()) { mViewPager.fakeDragBy(deltaX); } } break; } case MotionEvent.ACTION_CANCEL: case MotionEvent.ACTION_UP: if (!mIsDragging) { final int count = mViewPager.getAdapter().getCount(); final int width = getWidth(); final float halfWidth = width / 2f; final float sixthWidth = width / 6f; if ((mCurrentPage > 0) && (ev.getX() < halfWidth - sixthWidth)) { if (action != MotionEvent.ACTION_CANCEL) { mViewPager.setCurrentItem(mCurrentPage - 1); } return true; } else if ((mCurrentPage < count - 1) && (ev.getX() > halfWidth + sixthWidth)) { if (action != MotionEvent.ACTION_CANCEL) { mViewPager.setCurrentItem(mCurrentPage + 1); } return true; } } mIsDragging = false; mActivePointerId = INVALID_POINTER; if (mViewPager.isFakeDragging()) mViewPager.endFakeDrag(); break; case MotionEventCompat.ACTION_POINTER_DOWN: { final int index = MotionEventCompat.getActionIndex(ev); mLastMotionX = MotionEventCompat.getX(ev, index); mActivePointerId = MotionEventCompat.getPointerId(ev, index); break; } case MotionEventCompat.ACTION_POINTER_UP: final int pointerIndex = MotionEventCompat.getActionIndex(ev); final int pointerId = MotionEventCompat.getPointerId(ev, pointerIndex); if (pointerId == mActivePointerId) { final int newPointerIndex = pointerIndex == 0 ? 1 : 0; mActivePointerId = MotionEventCompat.getPointerId(ev, newPointerIndex); } mLastMotionX = MotionEventCompat.getX(ev, MotionEventCompat.findPointerIndex(ev, mActivePointerId)); break; } return true; } @Override public void setViewPager(ViewPager view) { if (mViewPager == view) { return; } if (mViewPager != null) { mViewPager.setOnPageChangeListener(null); } if (view.getAdapter() == null) { throw new IllegalStateException("ViewPager does not have adapter instance."); } mViewPager = view; mViewPager.setOnPageChangeListener(this); invalidate(); } @Override public void setViewPager(ViewPager view, int initialPosition) { setViewPager(view); setCurrentItem(initialPosition); } @Override public void setCurrentItem(int item) { if (mViewPager == null) { throw new IllegalStateException("ViewPager has not been bound."); } mViewPager.setCurrentItem(item); mCurrentPage = item; invalidate(); } @Override public void notifyDataSetChanged() { invalidate(); } @Override public void onPageScrollStateChanged(int state) { mScrollState = state; if (mListener != null) { mListener.onPageScrollStateChanged(state); } } @Override public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) { mCurrentPage = position; mPageOffset = positionOffset; invalidate(); if (mListener != null) { mListener.onPageScrolled(position, positionOffset, positionOffsetPixels); } } @Override public void onPageSelected(int position) { if (mSnap || mScrollState == ViewPager.SCROLL_STATE_IDLE) { mCurrentPage = position; mSnapPage = position; invalidate(); } if (mListener != null) { mListener.onPageSelected(position); } } @Override public void setOnPageChangeListener(ViewPager.OnPageChangeListener listener) { mListener = listener; } /* * (non-Javadoc) * * @see android.view.View#onMeasure(int, int) */ @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { if (mOrientation == HORIZONTAL) { setMeasuredDimension(measureLong(widthMeasureSpec), measureShort(heightMeasureSpec)); } else { setMeasuredDimension(measureShort(widthMeasureSpec), measureLong(heightMeasureSpec)); } } /** * Determines the width of this view * * @param measureSpec * A measureSpec packed into an int * @return The width of the view, honoring constraints from measureSpec */ private int measureLong(int measureSpec) { int result; int specMode = MeasureSpec.getMode(measureSpec); int specSize = MeasureSpec.getSize(measureSpec); if ((specMode == MeasureSpec.EXACTLY) || (mViewPager == null)) { //We were told how big to be result = specSize; } else { //Calculate the width according the views count final int count = mViewPager.getAdapter().getCount(); result = (int)(getPaddingLeft() + getPaddingRight() + (count * 2 * mRadius) + (count - 1) * mRadius + 1); //Respect AT_MOST value if that was what is called for by measureSpec if (specMode == MeasureSpec.AT_MOST) { result = Math.min(result, specSize); } } return result; } /** * Determines the height of this view * * @param measureSpec * A measureSpec packed into an int * @return The height of the view, honoring constraints from measureSpec */ private int measureShort(int measureSpec) { int result; int specMode = MeasureSpec.getMode(measureSpec); int specSize = MeasureSpec.getSize(measureSpec); if (specMode == MeasureSpec.EXACTLY) { //We were told how big to be result = specSize; } else { //Measure the height result = (int)(2 * mRadius + getPaddingTop() + getPaddingBottom() + 1); //Respect AT_MOST value if that was what is called for by measureSpec if (specMode == MeasureSpec.AT_MOST) { result = Math.min(result, specSize); } } return result; } @Override public void onRestoreInstanceState(Parcelable state) { SavedState savedState = (SavedState)state; super.onRestoreInstanceState(savedState.getSuperState()); mCurrentPage = savedState.currentPage; mSnapPage = savedState.currentPage; requestLayout(); } @Override public Parcelable onSaveInstanceState() { Parcelable superState = super.onSaveInstanceState(); SavedState savedState = new SavedState(superState); savedState.currentPage = mCurrentPage; return savedState; } static class SavedState extends BaseSavedState { int currentPage; public SavedState(Parcelable superState) { super(superState); } private SavedState(Parcel in) { super(in); currentPage = in.readInt(); } @Override public void writeToParcel(Parcel dest, int flags) { super.writeToParcel(dest, flags); dest.writeInt(currentPage); } @SuppressWarnings("UnusedDeclaration") public static final Creator<SavedState> CREATOR = new Creator<SavedState>() { @Override public SavedState createFromParcel(Parcel in) { return new SavedState(in); } @Override public SavedState[] newArray(int size) { return new SavedState[size]; } }; } } interface PageIndicator extends ViewPager.OnPageChangeListener { /** * Bind the indicator to a ViewPager. * * @param view */ void setViewPager(ViewPager view); /** * Bind the indicator to a ViewPager. * * @param view * @param initialPosition */ void setViewPager(ViewPager view, int initialPosition); /** * <p>Set the current page of both the ViewPager and indicator.</p> * * <p>This <strong>must</strong> be used if you need to set the page before * the views are drawn on screen (e.g., default start page).</p> * * @param item */ void setCurrentItem(int item); /** * Set a page change listener which will receive forwarded events. * * @param listener */ void setOnPageChangeListener(ViewPager.OnPageChangeListener listener); /** * Notify the indicator that the fragment list has changed. */ void notifyDataSetChanged(); }
1447368f75457edee74f4fddf6eab8243645ac16
4cc844e111d9ed0d35b35f785560dcd80adfe842
/src/main/java/com/marekmaj/learn/flink/kafka/PopularPlace.java
9d254fd583936dc598c50c46892f1924b1578225
[]
no_license
MarekMaj/playing-with-flink
dda2bd5360c7684097aaf4c88f70ae7c7f70f785
053af33a73d5a7c2ac1d43283acf7d4331944730
refs/heads/master
2021-01-10T22:41:11.490020
2016-10-09T02:02:29
2016-10-09T02:02:29
70,368,065
2
1
null
null
null
null
UTF-8
Java
false
false
2,168
java
package com.marekmaj.learn.flink.kafka; import org.apache.flink.api.java.tuple.Tuple5; import java.time.Instant; import java.time.LocalDateTime; import java.time.ZoneId; import java.time.ZonedDateTime; import java.util.Objects; public class PopularPlace { private static final ZoneId ZONE_ID = ZoneId.systemDefault(); public Float longitude; public Float latitude; public Boolean isStart; public LocalDateTime processTime; public Integer count; public PopularPlace() { } public PopularPlace(Float longitude, Float latitude, Boolean isStart, LocalDateTime processTime, Integer count) { this.longitude = longitude; this.latitude = latitude; this.isStart = isStart; this.processTime = processTime; this.count = count; } public static PopularPlace from(Tuple5<Float, Float, Long, Boolean, Integer> tuple) { Instant instant = Instant.ofEpochMilli(tuple.f2); LocalDateTime dateTime = LocalDateTime.ofInstant(instant, ZONE_ID); return new PopularPlace(tuple.f0, tuple.f1, tuple.f3, dateTime, tuple.f4); } // TODO pewnie to mogloby byc lepsze... @Override public String toString() { return "PopularPlace{" + "longitude=" + longitude + ", latitude=" + latitude + ", isStart=" + isStart + ", processTime=" + ZonedDateTime.of(processTime, ZONE_ID).toInstant().getEpochSecond() + ", count=" + count + '}'; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; PopularPlace that = (PopularPlace) o; return Objects.equals(longitude, that.longitude) && Objects.equals(latitude, that.latitude) && Objects.equals(isStart, that.isStart) && Objects.equals(processTime, that.processTime) && Objects.equals(count, that.count); } @Override public int hashCode() { return Objects.hash(longitude, latitude, isStart, processTime, count); } }
0103a9079ab881d2f2b9ad7040e4dd47a48d3342
a3e9de23131f569c1632c40e215c78e55a78289a
/alipay/alipay_sdk/src/main/java/com/alipay/api/request/ZhimaCreditPeContractSignpageInitializeRequest.java
8a66c6d607f7c0eaa6c8afc5050953d5c514ba25
[]
no_license
P79N6A/java_practice
80886700ffd7c33c2e9f4b202af7bb29931bf03d
4c7abb4cde75262a60e7b6d270206ee42bb57888
refs/heads/master
2020-04-14T19:55:52.365544
2019-01-04T07:39:40
2019-01-04T07:39:40
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,074
java
package com.alipay.api.request; import com.alipay.api.domain.ZhimaCreditPeContractSignpageInitializeModel; import java.util.Map; import com.alipay.api.AlipayRequest; import com.alipay.api.internal.util.AlipayHashMap; import com.alipay.api.response.ZhimaCreditPeContractSignpageInitializeResponse; import com.alipay.api.AlipayObject; /** * ALIPAY API: zhima.credit.pe.contract.signpage.initialize request * * @author auto create * @since 1.0, 2018-07-27 18:15:00 */ public class ZhimaCreditPeContractSignpageInitializeRequest implements AlipayRequest<ZhimaCreditPeContractSignpageInitializeResponse> { private AlipayHashMap udfParams; // add user-defined text parameters private String apiVersion="1.0"; /** * 获取签约页面 */ private String bizContent; public void setBizContent(String bizContent) { this.bizContent = bizContent; } public String getBizContent() { return this.bizContent; } private String terminalType; private String terminalInfo; private String prodCode; private String notifyUrl; private String returnUrl; private boolean needEncrypt=false; private AlipayObject bizModel=null; public String getNotifyUrl() { return this.notifyUrl; } public void setNotifyUrl(String notifyUrl) { this.notifyUrl = notifyUrl; } public String getReturnUrl() { return this.returnUrl; } public void setReturnUrl(String returnUrl) { this.returnUrl = returnUrl; } public String getApiVersion() { return this.apiVersion; } public void setApiVersion(String apiVersion) { this.apiVersion = apiVersion; } public void setTerminalType(String terminalType){ this.terminalType=terminalType; } public String getTerminalType(){ return this.terminalType; } public void setTerminalInfo(String terminalInfo){ this.terminalInfo=terminalInfo; } public String getTerminalInfo(){ return this.terminalInfo; } public void setProdCode(String prodCode) { this.prodCode=prodCode; } public String getProdCode() { return this.prodCode; } public String getApiMethodName() { return "zhima.credit.pe.contract.signpage.initialize"; } public Map<String, String> getTextParams() { AlipayHashMap txtParams = new AlipayHashMap(); txtParams.put("biz_content", this.bizContent); if(udfParams != null) { txtParams.putAll(this.udfParams); } return txtParams; } public void putOtherTextParam(String key, String value) { if(this.udfParams == null) { this.udfParams = new AlipayHashMap(); } this.udfParams.put(key, value); } public Class<ZhimaCreditPeContractSignpageInitializeResponse> getResponseClass() { return ZhimaCreditPeContractSignpageInitializeResponse.class; } public boolean isNeedEncrypt() { return this.needEncrypt; } public void setNeedEncrypt(boolean needEncrypt) { this.needEncrypt=needEncrypt; } public AlipayObject getBizModel() { return this.bizModel; } public void setBizModel(AlipayObject bizModel) { this.bizModel=bizModel; } }
7a01d51a5e87a2612cb6431fc99ebff60f449d36
fa8cd7c0b05e03567299a9c5a6bf19e11903b928
/src/robert/model/StaticStructure.java
5f36aa7f4f0da278e28d780029dfbd0b2652dd51
[]
no_license
robson021/Conways-Game-of-Life
892218c55afeaf79e46c4b033efc9b83fa57338c
613068a1dedbc50b6056c9d9c3182b452e6ab4f9
refs/heads/master
2021-01-17T23:37:05.169051
2016-05-08T17:38:15
2016-05-08T17:38:15
null
0
0
null
null
null
null
UTF-8
Java
false
false
787
java
package robert.model; import robert.gui.CellPane; import java.awt.*; import java.util.List; /** * Created by robert on 25.04.16. */ public class StaticStructure extends AbstractStructure { /*private static final Color[] colors = new Color[]{Color.YELLOW, Color.ORANGE, Color.CYAN, Color.PINK.darker(), Color.WHITE, Color.MAGENTA};*/ public static final int SIZE = 3; public StaticStructure(List<CellPane> cells) { super(cells, StructureType.STATIC); } @Override public void move() { //System.out.println("Static structure can not move."); for (CellPane c : this.myCells) { //c.changeColor(colors[random.nextInt(colors.length)]); c.changeColor(Color.MAGENTA.darker().darker()); } } }
a07cc64c317743aa27e3401a00bfd417b79f2edf
080a68868c483e3e55b915c6a4a3df3a140ce34f
/jOOQ/src/main/java/org/jooq/WithAsStep17.java
c52718eeb7f293a8eb859214ec297e9a71719dd1
[ "Apache-2.0" ]
permissive
gh0ztbuster/jOOQ
ab89cd5088d085e07734c368c9f3754a8c88e21d
33dfa611d4d3fa523b72a07ff5cbe3a4158f25ec
refs/heads/master
2020-03-19T19:01:44.579062
2018-06-08T12:21:59
2018-06-08T12:21:59
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,112
java
/* * 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. * * Other licenses: * ----------------------------------------------------------------------------- * Commercial licenses for this work are available. These replace the above * ASL 2.0 and offer limited warranties, support, maintenance, and commercial * database integrations. * * For more information, please visit: http://www.jooq.org/licenses * * * * * * * * * * * * * * * * */ package org.jooq; // ... // ... import static org.jooq.SQLDialect.FIREBIRD; import static org.jooq.SQLDialect.H2; import static org.jooq.SQLDialect.HSQLDB; import static org.jooq.SQLDialect.MARIADB; import static org.jooq.SQLDialect.MYSQL_8_0; // ... import static org.jooq.SQLDialect.POSTGRES; // ... // ... // ... import javax.annotation.Generated; /** * This type is part of the jOOQ DSL to create {@link Select}, {@link Insert}, * {@link Update}, {@link Delete}, {@link Merge} statements prefixed with a * <code>WITH</code> clause and with {@link CommonTableExpression}s. * <p> * Example: * <code><pre> * DSL.with("table", "col1", "col2") * .as( * select(one(), two()) * ) * .select() * .from("table") * </pre></code> * * @author Lukas Eder */ @Generated("This class was generated using jOOQ-tools") public interface WithAsStep17 { /** * Associate a subselect with a common table expression's table and column names. */ @Support({ FIREBIRD, H2, HSQLDB, MARIADB, MYSQL_8_0, POSTGRES }) WithStep as(Select<? extends Record17<?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?>> select); }
b5ea5403547619dd16b46d3ee256c2138886980b
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/1/1_d4ced07d6cccab769714daa37772892e8c5044e0/ResourceDescriptorImpl/1_d4ced07d6cccab769714daa37772892e8c5044e0_ResourceDescriptorImpl_t.java
a41cd9d5bd3d1aea5acd712a44b45080306df93f
[]
no_license
zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516692
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
2023-06-22T07:55:57
2020-04-28T11:07:49
null
UTF-8
Java
false
false
2,441
java
/******************************************************************************* * Copyright (c) 2009 itemis AG (http://www.itemis.eu) and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html *******************************************************************************/ package org.eclipse.emf.index.impl; import java.io.Serializable; import java.io.Serializable; import java.util.Collections; import java.util.HashMap; import java.util.Map; import org.eclipse.emf.index.ResourceDescriptor; /** * @author Jan Khnlein - Initial contribution and API */ public class ResourceDescriptorImpl implements ResourceDescriptor, Serializable { private static final long serialVersionUID = 4559062618979870492L; protected long indexingDate; protected String uri; protected Map<String, Serializable> userData; public ResourceDescriptorImpl(String uri, long indexingDate, Map<String, Serializable> userData) { this.uri = uri; this.indexingDate = indexingDate; if (userData != null) this.userData = Collections.unmodifiableMap(userData); } public long getIndexingDate() { return indexingDate; } public String getURI() { return uri; } public Map<String, Serializable> getUserData() { return userData; } public Serializable getUserData(String key) { return (userData == null) ? null : userData.get(key); } @Override public String toString() { return uri; } @Override public boolean equals(Object obj) { if (obj instanceof ResourceDescriptor) { ResourceDescriptor resourceDescriptor = (ResourceDescriptor) obj; return hashCode() == resourceDescriptor.hashCode() && uri.equals(resourceDescriptor.getURI()); } return false; } @Override public int hashCode() { return uri.hashCode(); } public boolean copyDetails(ResourceDescriptor resourceDesc) { Map<String, Serializable> newUserData = resourceDesc.getUserData(); if (newUserData != null) { if (!newUserData.equals(userData)) { userData = Collections.unmodifiableMap(new HashMap<String, Serializable>(newUserData)); return true; } } else if (userData != null) { userData = null; return true; } return false; } }
21fea570a9e2afac01276da721278dd870b16d5c
44ab727e179f0ff85a54a97be9206a4bc3337d3c
/build/flutter_beacon/generated/source/r/debug/androidx/legacy/coreui/R.java
4a9a61553bc7fdab22e29c1d5ca537fc62d13dba
[]
no_license
here-here/joshApp2.0
cdc2259dcff27e4ee0764c5a81e4183ffa622642
f39f2a8650da50ef53e7ede0565c682752bf0ef5
refs/heads/master
2020-09-14T06:18:39.635962
2019-12-02T23:47:14
2019-12-02T23:47:14
223,045,646
0
0
null
null
null
null
UTF-8
Java
false
false
11,345
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * gradle plugin from the resource data it found. It * should not be modified by hand. */ package androidx.legacy.coreui; public final class R { public static final class attr { public static int alpha = 0x7f040001; public static int coordinatorLayoutStyle = 0x7f040002; public static int font = 0x7f040003; public static int fontProviderAuthority = 0x7f040004; public static int fontProviderCerts = 0x7f040005; public static int fontProviderFetchStrategy = 0x7f040006; public static int fontProviderFetchTimeout = 0x7f040007; public static int fontProviderPackage = 0x7f040008; public static int fontProviderQuery = 0x7f040009; public static int fontStyle = 0x7f04000a; public static int fontVariationSettings = 0x7f04000b; public static int fontWeight = 0x7f04000c; public static int keylines = 0x7f04000d; public static int layout_anchor = 0x7f04000e; public static int layout_anchorGravity = 0x7f04000f; public static int layout_behavior = 0x7f040010; public static int layout_dodgeInsetEdges = 0x7f040011; public static int layout_insetEdge = 0x7f040012; public static int layout_keyline = 0x7f040013; public static int statusBarBackground = 0x7f040014; public static int ttcIndex = 0x7f040015; } public static final class color { public static int notification_action_color_filter = 0x7f060001; public static int notification_icon_bg_color = 0x7f060002; public static int ripple_material_light = 0x7f060005; public static int secondary_text_default_material_light = 0x7f060007; } public static final class dimen { public static int compat_button_inset_horizontal_material = 0x7f080001; public static int compat_button_inset_vertical_material = 0x7f080002; public static int compat_button_padding_horizontal_material = 0x7f080003; public static int compat_button_padding_vertical_material = 0x7f080004; public static int compat_control_corner_material = 0x7f080005; public static int compat_notification_large_icon_max_height = 0x7f080006; public static int compat_notification_large_icon_max_width = 0x7f080007; public static int notification_action_icon_size = 0x7f080008; public static int notification_action_text_size = 0x7f080009; public static int notification_big_circle_margin = 0x7f08000a; public static int notification_content_margin_start = 0x7f08000b; public static int notification_large_icon_height = 0x7f08000c; public static int notification_large_icon_width = 0x7f08000d; public static int notification_main_column_padding_top = 0x7f08000e; public static int notification_media_narrow_margin = 0x7f08000f; public static int notification_right_icon_size = 0x7f080010; public static int notification_right_side_padding_top = 0x7f080011; public static int notification_small_icon_background_padding = 0x7f080012; public static int notification_small_icon_size_as_large = 0x7f080013; public static int notification_subtext_size = 0x7f080014; public static int notification_top_pad = 0x7f080015; public static int notification_top_pad_large_text = 0x7f080016; } public static final class drawable { public static int notification_action_background = 0x7f090001; public static int notification_bg = 0x7f090002; public static int notification_bg_low = 0x7f090003; public static int notification_bg_low_normal = 0x7f090004; public static int notification_bg_low_pressed = 0x7f090005; public static int notification_bg_normal = 0x7f090006; public static int notification_bg_normal_pressed = 0x7f090007; public static int notification_icon_background = 0x7f090008; public static int notification_template_icon_bg = 0x7f090009; public static int notification_template_icon_low_bg = 0x7f09000a; public static int notification_tile_bg = 0x7f09000b; public static int notify_panel_notification_icon_bg = 0x7f09000c; } public static final class id { public static int action_container = 0x7f0c0002; public static int action_divider = 0x7f0c0003; public static int action_image = 0x7f0c0004; public static int action_text = 0x7f0c0005; public static int actions = 0x7f0c0006; public static int async = 0x7f0c0007; public static int blocking = 0x7f0c0008; public static int bottom = 0x7f0c0009; public static int chronometer = 0x7f0c000b; public static int end = 0x7f0c000c; public static int forever = 0x7f0c000e; public static int icon = 0x7f0c000f; public static int icon_group = 0x7f0c0010; public static int info = 0x7f0c0011; public static int italic = 0x7f0c0012; public static int left = 0x7f0c0013; public static int line1 = 0x7f0c0014; public static int line3 = 0x7f0c0015; public static int none = 0x7f0c0017; public static int normal = 0x7f0c0018; public static int notification_background = 0x7f0c0019; public static int notification_main_column = 0x7f0c001a; public static int notification_main_column_container = 0x7f0c001b; public static int right = 0x7f0c001c; public static int right_icon = 0x7f0c001d; public static int right_side = 0x7f0c001e; public static int start = 0x7f0c001f; public static int tag_transition_group = 0x7f0c0021; public static int tag_unhandled_key_event_manager = 0x7f0c0022; public static int tag_unhandled_key_listeners = 0x7f0c0023; public static int text = 0x7f0c0024; public static int text2 = 0x7f0c0025; public static int time = 0x7f0c0026; public static int title = 0x7f0c0027; public static int top = 0x7f0c0028; } public static final class integer { public static int status_bar_notification_info_maxnum = 0x7f0d0002; } public static final class layout { public static int notification_action = 0x7f0f0001; public static int notification_action_tombstone = 0x7f0f0002; public static int notification_template_custom_big = 0x7f0f0009; public static int notification_template_icon_group = 0x7f0f000a; public static int notification_template_part_chronometer = 0x7f0f000e; public static int notification_template_part_time = 0x7f0f000f; } public static final class string { public static int status_bar_notification_info_overflow = 0x7f150001; } public static final class style { public static int TextAppearance_Compat_Notification = 0x7f160001; public static int TextAppearance_Compat_Notification_Info = 0x7f160002; public static int TextAppearance_Compat_Notification_Line2 = 0x7f160004; public static int TextAppearance_Compat_Notification_Time = 0x7f160007; public static int TextAppearance_Compat_Notification_Title = 0x7f160009; public static int Widget_Compat_NotificationActionContainer = 0x7f16000b; public static int Widget_Compat_NotificationActionText = 0x7f16000c; public static int Widget_Support_CoordinatorLayout = 0x7f16000d; } public static final class styleable { public static int[] ColorStateListItem = { 0x7f040001, 0x0101031f, 0x010101a5 }; public static int ColorStateListItem_alpha = 0; public static int ColorStateListItem_android_alpha = 1; public static int ColorStateListItem_android_color = 2; public static int[] CoordinatorLayout = { 0x7f04000d, 0x7f040014 }; public static int CoordinatorLayout_keylines = 0; public static int CoordinatorLayout_statusBarBackground = 1; public static int[] CoordinatorLayout_Layout = { 0x010100b3, 0x7f04000e, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013 }; public static int CoordinatorLayout_Layout_android_layout_gravity = 0; public static int CoordinatorLayout_Layout_layout_anchor = 1; public static int CoordinatorLayout_Layout_layout_anchorGravity = 2; public static int CoordinatorLayout_Layout_layout_behavior = 3; public static int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; public static int CoordinatorLayout_Layout_layout_insetEdge = 5; public static int CoordinatorLayout_Layout_layout_keyline = 6; public static int[] FontFamily = { 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009 }; public static int FontFamily_fontProviderAuthority = 0; public static int FontFamily_fontProviderCerts = 1; public static int FontFamily_fontProviderFetchStrategy = 2; public static int FontFamily_fontProviderFetchTimeout = 3; public static int FontFamily_fontProviderPackage = 4; public static int FontFamily_fontProviderQuery = 5; public static int[] FontFamilyFont = { 0x01010532, 0x0101053f, 0x01010570, 0x01010533, 0x0101056f, 0x7f040003, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f040015 }; public static int FontFamilyFont_android_font = 0; public static int FontFamilyFont_android_fontStyle = 1; public static int FontFamilyFont_android_fontVariationSettings = 2; public static int FontFamilyFont_android_fontWeight = 3; public static int FontFamilyFont_android_ttcIndex = 4; public static int FontFamilyFont_font = 5; public static int FontFamilyFont_fontStyle = 6; public static int FontFamilyFont_fontVariationSettings = 7; public static int FontFamilyFont_fontWeight = 8; public static int FontFamilyFont_ttcIndex = 9; public static int[] GradientColor = { 0x0101020b, 0x010101a2, 0x010101a3, 0x0101019e, 0x01010512, 0x01010513, 0x010101a4, 0x0101019d, 0x01010510, 0x01010511, 0x01010201, 0x010101a1 }; public static int GradientColor_android_centerColor = 0; public static int GradientColor_android_centerX = 1; public static int GradientColor_android_centerY = 2; public static int GradientColor_android_endColor = 3; public static int GradientColor_android_endX = 4; public static int GradientColor_android_endY = 5; public static int GradientColor_android_gradientRadius = 6; public static int GradientColor_android_startColor = 7; public static int GradientColor_android_startX = 8; public static int GradientColor_android_startY = 9; public static int GradientColor_android_tileMode = 10; public static int GradientColor_android_type = 11; public static int[] GradientColorItem = { 0x010101a5, 0x01010514 }; public static int GradientColorItem_android_color = 0; public static int GradientColorItem_android_offset = 1; } }
7f387e4e1d67f8d2f673bcc035417ee5e0778e56
ad402915f7fc651328a5c21e98b3dc796602fa8d
/test-app/fabric-gateway-java/src/test/java/org/hyperledger/fabric/gateway/impl/GatewayTest.java
ec3398225668595a05c26ffd6f65da78ee980b45
[]
no_license
stan336/fabric-test-example
46e56c5a105628bd1fa69c4f5320e5f31b4e5e33
9d5bb87f081dad09f4de63877b9bb9330db2b7c4
refs/heads/master
2022-11-22T16:50:57.622576
2020-08-01T17:41:47
2020-08-01T17:41:47
284,486,937
1
0
null
2020-08-02T15:18:47
2020-08-02T15:18:46
null
UTF-8
Java
false
false
3,123
java
/* * Copyright 2019 IBM All Rights Reserved. * * SPDX-License-Identifier: Apache-2.0 */ package org.hyperledger.fabric.gateway.impl; import org.hyperledger.fabric.gateway.Gateway; import org.hyperledger.fabric.gateway.GatewayException; import org.hyperledger.fabric.gateway.Network; import org.hyperledger.fabric.gateway.TestUtils; import org.hyperledger.fabric.sdk.Channel; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThatThrownBy; /** * 用于检测fabric网络是否正常 */ public class GatewayTest { private static final TestUtils testUtils = TestUtils.getInstance(); private Gateway.Builder builder = null; @BeforeEach public void beforeEach() throws Exception { builder = testUtils.newGatewayBuilder(); } /** * 类似NetworkTest.java中,测试channel是否存在 * 输入正确的channel */ @Test public void testGetNetworkFromConfig() { try (Gateway gateway = builder.connect()) { Network network = gateway.getNetwork("mychannel"); assertThat(network.getChannel().getName()).isEqualTo("mychannel"); } } /** * 类似NetworkTest.java中,测试channel是否存在,同上 */ @Test public void testGetMychannelNetwork() { try (Gateway gateway = builder.connect()) { Network network = gateway.getNetwork("mychannel"); assertThat(network.getChannel().getName()).isEqualTo("mychannel"); } } /** * 两次读取mychannel,第二次是内存中读取 */ @Test public void testGetCachedNetwork() { try (Gateway gateway = builder.connect()) { Network network = gateway.getNetwork("mychannel"); Network network2 = gateway.getNetwork("mychannel"); assertThat(network).isSameAs(network2); } } /** * 输入“”字符串,看是否读取channel正常 */ @Test public void testGetNetworkEmptyString() { try (Gateway gateway = builder.connect()) { assertThatThrownBy(() -> gateway.getNetwork("")) .isInstanceOf(IllegalArgumentException.class) .hasMessage("Channel name must be a non-empty string"); } } /** * 输入null字符串,看是否读取channel正常 */ @Test public void testGetNetworkNullString() { try (Gateway gateway = builder.connect()) { assertThatThrownBy(() -> gateway.getNetwork(null)) .isInstanceOf(IllegalArgumentException.class) .hasMessage("Channel name must be a non-empty string"); } } /** * 测试能否正常关闭网络连接 */ @Test public void testCloseGatewayClosesNetworks() { Gateway gateway = builder.connect(); Channel channel = gateway.getNetwork("assumed").getChannel(); gateway.close(); assertThat(channel.isShutdown()).isTrue(); } }
[ "a9h8b4a9h8b4" ]
a9h8b4a9h8b4
977b75105192ae9d292e653b2783807388e0d711
28f5932d01bfec24559a74c698150e7d52d39b00
/src/main/java/com/github/muxfe/contrib/kdniao/KdniaoException.java
4dd051431fffa62e003c76ff70f8ca57d8d1f70f
[ "MIT" ]
permissive
muxfe/kdniao-sdk
1aac03f0fad02c0fa00e395761ba4b52514c1a14
fe6067c1cebd85ae0a0f8db067635de150472d39
refs/heads/develop
2022-11-26T09:27:11.589225
2019-04-30T20:55:11
2019-04-30T20:55:11
180,269,405
0
1
MIT
2022-11-16T11:45:24
2019-04-09T02:30:52
Java
UTF-8
Java
false
false
247
java
package com.github.muxfe.contrib.kdniao; public class KdniaoException extends RuntimeException { KdniaoException(String message) { super(message); } KdniaoException(String message, Throwable cause) { super(message, cause); } }
24421499917e08fd2937c9196e63428f17a72636
85afabea6e1c0c1173aa548ddf875e761eb8ceb4
/Base.java
0ed3bb962c5b5982d81044e1cde628bd3e1afc81
[]
no_license
RohanGaniga/JMF_Mapping
71d574dba236f187982d27a0b56e31f116f6d36c
5a9c5cc60164d3169e778eae63049e7dc17a3154
refs/heads/master
2020-06-14T13:34:52.512294
2019-07-19T12:48:19
2019-07-19T12:48:19
195,017,359
1
0
null
null
null
null
UTF-8
Java
false
false
41,581
java
/* * Base.java Created on Nov 4, 2005. * * Copyright 2004 Informatica Corporation. All rights reserved. * INFORMATICA PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package com.informatica.powercenter.sdk.mapfwk.samples; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.List; import java.util.Properties; import com.informatica.powercenter.sdk.mapfwk.connection.ConnectionInfo; import com.informatica.powercenter.sdk.mapfwk.connection.ConnectionPropsConstants; import com.informatica.powercenter.sdk.mapfwk.connection.SourceTargetType; import com.informatica.powercenter.sdk.mapfwk.core.Field; import com.informatica.powercenter.sdk.mapfwk.core.FieldKeyType; import com.informatica.powercenter.sdk.mapfwk.core.FieldType; import com.informatica.powercenter.sdk.mapfwk.core.Folder; import com.informatica.powercenter.sdk.mapfwk.core.INameFilter; import com.informatica.powercenter.sdk.mapfwk.core.MapFwkOutputContext; import com.informatica.powercenter.sdk.mapfwk.core.Mapping; import com.informatica.powercenter.sdk.mapfwk.core.NativeDataTypes; import com.informatica.powercenter.sdk.mapfwk.core.SASHelper; import com.informatica.powercenter.sdk.mapfwk.core.Session; import com.informatica.powercenter.sdk.mapfwk.core.Source; import com.informatica.powercenter.sdk.mapfwk.core.StringConstants; import com.informatica.powercenter.sdk.mapfwk.core.Target; import com.informatica.powercenter.sdk.mapfwk.core.Workflow; import com.informatica.powercenter.sdk.mapfwk.exception.MapFwkReaderException; import com.informatica.powercenter.sdk.mapfwk.exception.RepoOperationException; import com.informatica.powercenter.sdk.mapfwk.repository.RepoPropsConstants; import com.informatica.powercenter.sdk.mapfwk.repository.Repository; /** * * */ public abstract class Base { // /////////////////////////////////////////////////////////////////////////////////// // Instance variables // /////////////////////////////////////////////////////////////////////////////////// protected Repository rep; protected Folder folder; protected Session session; protected Workflow workflow; protected String mapFileName; protected Mapping mapping; protected int runMode = 0; /** * Common execute method */ public void execute() throws Exception { init(); createMappings(); createSession(); createWorkflow(); generateOutput(); } /** * Initialize the method */ protected void init() { createRepository(); createFolder(); createSources(); createTargets(); } /** * Create a repository */ protected void createRepository() { rep = new Repository("PowerCenter", "PowerCenter", "This repository contains API test samples"); } /** * Creates a folder */ protected void createFolder() { folder = new Folder("JavaMappingSamples", "JavaMappingSamples", "This is a folder containing java mapping samples"); rep.addFolder(folder); } /** * Create sources */ protected abstract void createSources(); // override in base class to create // appropriate sources /** * Create targets */ protected abstract void createTargets(); // override in base class to create // appropriate targets /** * Creates a mapping It needs to be overriddden for the sample * * @return Mapping */ protected abstract void createMappings() throws Exception; // override in // base class /** * Create session */ protected abstract void createSession() throws Exception; /** * Create workflow */ protected abstract void createWorkflow() throws Exception; /** * Create source for Employee Source */ protected Source createEmployeeSource() { List<Field> fields = new ArrayList<Field>(); Field field1 = new Field("EmployeeID", "EmployeeID", "", NativeDataTypes.FlatFile.INT, "10", "0", FieldKeyType.PRIMARY_KEY, FieldType.SOURCE, true); fields.add(field1); Field field2 = new Field("LastName", "LastName", "", NativeDataTypes.FlatFile.STRING, "20", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field2); Field field3 = new Field("FirstName", "FirstName", "", NativeDataTypes.FlatFile.STRING, "10", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field3); Field field4 = new Field("Title", "Title", "", NativeDataTypes.FlatFile.STRING, "30", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field4); Field field5 = new Field("TitleOfCourtesy", "TitleOfCourtesy", "", NativeDataTypes.FlatFile.STRING, "25", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field5); Field field6 = new Field("BirthDate", "BirthDate", "", NativeDataTypes.FlatFile.DATETIME, "19", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field6); Field field7 = new Field("HireDate", "HireDate", "", NativeDataTypes.FlatFile.DATETIME, "19", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field7); Field field8 = new Field("Address", "Address", "", NativeDataTypes.FlatFile.STRING, "60", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field8); Field field9 = new Field("City", "City", "", NativeDataTypes.FlatFile.STRING, "15", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field9); Field field10 = new Field("Region", "Region", "", NativeDataTypes.FlatFile.STRING, "15", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field10); Field field11 = new Field("PostalCode", "PostalCode", "", NativeDataTypes.FlatFile.STRING, "10", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field11); Field field12 = new Field("Country", "Country", "", NativeDataTypes.FlatFile.STRING, "15", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field12); Field field13 = new Field("HomePhone", "HomePhone", "", NativeDataTypes.FlatFile.STRING, "24", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field13); Field field14 = new Field("Extension", "Extension", "", NativeDataTypes.FlatFile.STRING, "4", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field14); Field field15 = new Field("Notes", "Notes", "", NativeDataTypes.FlatFile.STRING, "350", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field15); Field field16 = new Field("ReportsTo", "ReportsTo", "", NativeDataTypes.FlatFile.INT, "10", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field16); ConnectionInfo info = getFlatFileConnectionInfo(); info.getConnProps().setProperty( ConnectionPropsConstants.SOURCE_FILENAME, "Employees.csv"); Source employeeSource = new Source("Employee", "Employee", "This is Employee Table", "Employee", info); employeeSource.setFields(fields); return employeeSource; } protected Source createNetezzaSource() { List<Field> fields = new ArrayList<Field>(); Field field1 = new Field("EmployeeID", "EmployeeID", "", NativeDataTypes.Netezza.CHAR, "10", "0", FieldKeyType.PRIMARY_KEY, FieldType.SOURCE, true); fields.add(field1); Field field2 = new Field("LastName", "LastName", "", NativeDataTypes.Netezza.CHAR, "20", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field2); Field field3 = new Field("FirstName", "FirstName", "", NativeDataTypes.Netezza.CHAR, "10", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field3); Field field4 = new Field("Title", "Title", "", NativeDataTypes.Netezza.CHAR, "30", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field4); ConnectionInfo info = getNetezzaConnectionInfo(); Source employeeSource = new Source("Netezza_Employee", "Netezza_Employee", "This is Employee Table", "Netezza_Employee", info); employeeSource.setFields(fields); return employeeSource; } /** * Create source for Company */ protected Source createMaraSource() { List<Field> fields = new ArrayList<Field>(); Field field1 = new Field("MANDT", "MANDT", "MANDT", NativeDataTypes.FlatFile.STRING, "10", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field1); Field field2 = new Field("MATNR", "MATNR", "MATNR", NativeDataTypes.FlatFile.STRING, "10", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field2); Field field3 = new Field("BUKRS", "BUKRS", "BUKRS", NativeDataTypes.FlatFile.STRING, "20", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field3); Field field4 = new Field("MAKTX", "MAKTX", "MAKTX", NativeDataTypes.FlatFile.STRING, "20", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field4); ConnectionInfo info = getFlatFileConnectionInfo();/* * info.getConnProps(). * setProperty * (ConnectionPropsConstants * .SOURCE_FILENAME, * "Employees.csv"); */ Source mara = new Source("MARA", "MARA", "MARA", "MARA", info); mara.setFields(fields); return mara; } /** * Create source for Employee Source */ protected Source createOrderDetailSource() { List<Field> fields = new ArrayList<Field>(); Field field1 = new Field("OrderID", "OrderID", "", NativeDataTypes.FlatFile.INT, "10", "0", FieldKeyType.FOREIGN_KEY, FieldType.SOURCE, false); fields.add(field1); Field field2 = new Field("ProductID", "ProductID", "", NativeDataTypes.FlatFile.INT, "10", "0", FieldKeyType.FOREIGN_KEY, FieldType.SOURCE, false); fields.add(field2); Field field3 = new Field("UnitPrice", "UnitPrice", "", NativeDataTypes.FlatFile.NUMBER, "28", "4", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field3); Field field4 = new Field("Quantity", "Quantity", "", NativeDataTypes.FlatFile.INT, "10", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field4); Field field5 = new Field("Discount", "Discount", "", NativeDataTypes.FlatFile.INT, "10", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field5); Field field6 = new Field("StringFld", "StringFld", "", NativeDataTypes.FlatFile.STRING, "5", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field6); Field field7 = new Field("String2Fld", "String2Fld", "", NativeDataTypes.FlatFile.STRING, "5", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field7); ConnectionInfo info = getFlatFileConnectionInfo(); info.getConnProps().setProperty( ConnectionPropsConstants.SOURCE_FILENAME, "Order_Details.csv"); Source ordDetailSource = new Source("OrderDetail", "OrderDetail", "This is Order Detail Table", "OrderDetail", info); ordDetailSource.setFields(fields); return ordDetailSource; } /** * Create source for Items table */ protected Source createItemsSource() { Source itemsSource; List<Field> fields = new ArrayList<Field>(); Field field1 = new Field("ItemId", "ItemId", "", NativeDataTypes.FlatFile.INT, "10", "0", FieldKeyType.PRIMARY_KEY, FieldType.SOURCE, true); fields.add(field1); Field field2 = new Field("Item_Name", "Item_Name", "", NativeDataTypes.FlatFile.STRING, "72", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field2); Field field3 = new Field("Item_Desc", "Item_Desc", "", NativeDataTypes.FlatFile.STRING, "72", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field3); Field field4 = new Field("Price", "Price", "", NativeDataTypes.FlatFile.NUMBER, "10", "2", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field4); Field field5 = new Field("Wholesale_cost", "Wholesale_cost", "", NativeDataTypes.FlatFile.NUMBER, "10", "2", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field5); Field field6 = new Field("Manufacturer_id", "Manufacturer_id", "", NativeDataTypes.FlatFile.INT, "10", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field6); ConnectionInfo info = getFlatFileConnectionInfo(); info.getConnProps().setProperty( ConnectionPropsConstants.SOURCE_FILENAME, "items.csv"); itemsSource = new Source("Items", "Items", "This is Items table", "Items", info); itemsSource.setFields(fields); return itemsSource; } /** * Create source for Products table */ protected Source createProductsSource() { Source productSource; List<Field> fields = new ArrayList<Field>(); Field foriegnfield = new Field("ItemId", "ItemId", "", NativeDataTypes.FlatFile.INT, "10", "0", FieldKeyType.FOREIGN_KEY, FieldType.SOURCE, false); foriegnfield.setReferenceConstraint("Items", "ItemId"); fields.add(foriegnfield); Field field1 = new Field("Item_No", "Item_No", "", NativeDataTypes.FlatFile.INT, "10", "0", FieldKeyType.PRIMARY_KEY, FieldType.SOURCE, true); fields.add(field1); Field field2 = new Field("Item_Name", "Item_Name", "", NativeDataTypes.FlatFile.STRING, "72", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field2); Field field3 = new Field("Item_Desc", "Item_Desc", "", NativeDataTypes.FlatFile.STRING, "72", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field3); Field field4 = new Field("Cust_Price", "Cust_Price", "", NativeDataTypes.FlatFile.NUMBER, "10", "2", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field4); Field field5 = new Field("Product_Category", "Product_Category", "", NativeDataTypes.FlatFile.STRING, "30", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field5); ConnectionInfo info = getFlatFileConnectionInfo(); info.getConnProps().setProperty( ConnectionPropsConstants.SOURCE_FILENAME, "products.csv"); productSource = new Source("Products", "Products", "This is products table", "Products", info); productSource.setFields(fields); return productSource; } /** * This method creates the source for manufacturers table * * @return Source object */ protected Source createManufacturersSource() { Source manufacturerSource; List<Field> fields = new ArrayList<Field>(); Field field1 = new Field("Manufacturer_Id", "Manufacturer_Id", "", NativeDataTypes.FlatFile.INT, "10", "0", FieldKeyType.PRIMARY_KEY, FieldType.SOURCE, true); fields.add(field1); Field field2 = new Field("Manufacturer_Name", "Manufacturer_Name", "", NativeDataTypes.FlatFile.STRING, "72", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field2); ConnectionInfo info = getFlatFileConnectionInfo(); info.getConnProps().setProperty( ConnectionPropsConstants.SOURCE_FILENAME, "Manufacturer.csv"); manufacturerSource = new Source("Manufacturers", "Manufacturers", "This is Manufacturers table", "Manufacturers", info); manufacturerSource.setFields(fields); return manufacturerSource; } protected Source createLkpEmployeeIdSource() { Source manufacturerSource; List<Field> fields = new ArrayList<Field>(); Field field1 = new Field("JOB_ID", "JOB_ID", "", NativeDataTypes.FlatFile.INT, "10", "0", FieldKeyType.PRIMARY_KEY, FieldType.SOURCE, true); fields.add(field1); Field field2 = new Field("JOB_Name", "JOB_Name", "", NativeDataTypes.FlatFile.STRING, "72", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field2); ConnectionInfo info = getFlatFileConnectionInfo(); info.getConnProps().setProperty( ConnectionPropsConstants.SOURCE_FILENAME, "LkpEmployeeId.csv"); manufacturerSource = new Source("Manufacturers", "Manufacturers", "This is Manufacturers table", "Manufacturers", info); manufacturerSource.setFields(fields); return manufacturerSource; } /** * Create Orders Source * * @return */ protected Source createOrdersSource() { Source ordersSource; List<Field> fields = new ArrayList<Field>(); Field field1 = new Field("OrderID", "OrderID", "", NativeDataTypes.FlatFile.INT, "10", "0", FieldKeyType.PRIMARY_KEY, FieldType.SOURCE, true); fields.add(field1); Field field2 = new Field("CustomerID", "Customer", "", NativeDataTypes.FlatFile.STRING, "5", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field2); Field field3 = new Field("EmployeeID", "EmployeeID", "", NativeDataTypes.FlatFile.INT, "10", "0", FieldKeyType.FOREIGN_KEY, FieldType.SOURCE, false); fields.add(field3); Field field5 = new Field("OrderDate", "OrderDate", "", NativeDataTypes.FlatFile.DATETIME, "19", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field5); Field field6 = new Field("RequiredDate", "RequiredDate", "", NativeDataTypes.FlatFile.DATETIME, "19", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field6); Field field7 = new Field("ShippedDate", "ShippedDate", "", NativeDataTypes.FlatFile.DATETIME, "19", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field7); Field field8 = new Field("ShipVia", "ShipVia", "", NativeDataTypes.FlatFile.INT, "10", "0", FieldKeyType.FOREIGN_KEY, FieldType.SOURCE, false); fields.add(field8); Field field9 = new Field("Freight", "Freight", "", NativeDataTypes.FlatFile.NUMBER, "28", "4", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field9); Field field10 = new Field("ShipName", "ShipName", "", NativeDataTypes.FlatFile.STRING, "40", "", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field10); Field field11 = new Field("ShipAddress", "ShipAddress", "", NativeDataTypes.FlatFile.STRING, "60", "", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field11); Field field12 = new Field("ShipCity", "ShipCity", "", NativeDataTypes.FlatFile.STRING, "15", "", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field12); Field field13 = new Field("ShipRegion", "ShipRegion", "", NativeDataTypes.FlatFile.STRING, "15", "", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field13); Field field14 = new Field("ShipPostalCode", "ShipPostalCode", "", NativeDataTypes.FlatFile.STRING, "10", "", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field14); Field field15 = new Field("ShipCountry", "ShipCountry", "", NativeDataTypes.FlatFile.STRING, "15", "", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field15); ConnectionInfo info = getFlatFileConnectionInfo(); info.getConnProps().setProperty( ConnectionPropsConstants.SOURCE_FILENAME, "Orders.csv"); ordersSource = new Source("Orders", "Orders", "This is Orders table", "Orders", info); ordersSource.setFields(fields); return ordersSource; } /** * Method to create Job Info relational source for Oracle database * * @param dbName * database name */ protected Source createOracleJobSource(String dbName) { Source jobSource = null; List<Field> fields = new ArrayList<Field>(); Field jobIDField = new Field("JOB_ID", "JOB_ID", "", NativeDataTypes.SqlServer.INT, "10", "0", FieldKeyType.PRIMARY_KEY, FieldType.SOURCE, true); fields.add(jobIDField); Field jobTitleField = new Field("JOB_TITLE", "JOB_TITLE", "", NativeDataTypes.SqlServer.VARCHAR, "35", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(jobTitleField); Field minSalField = new Field("MIN_SALARY", "MIN_SALARY", "", NativeDataTypes.SqlServer.INT, "6", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(minSalField); Field maxSalField = new Field("MAX_SALARY", "MAX_SALARY", "", NativeDataTypes.SqlServer.INT, "6", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(maxSalField); Field field2 = new Field("LastName", "LastName", "", NativeDataTypes.SqlServer.VARCHAR, "20", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field2); Field field3 = new Field("FirstName", "FirstName", "", NativeDataTypes.SqlServer.VARCHAR, "10", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(field3); /*Field firstnameField = new Field("firstName", "firstName", "", NativeDataTypes.SqlServer.INT, "6", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(firstnameField); Field lastnameField = new Field("lastname", "lastname", "", NativeDataTypes.SqlServer.INT, "6", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(lastnameField);*/ /*Field secondnameField = new Field("firstname", "firstname", "", NativeDataTypes.SqlServer.INT, "6", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(secondnameField);*/ ConnectionInfo info = getRelationalConnInfo(SourceTargetType.Microsoft_SQL_Server, dbName); jobSource = new Source("JOBS", "JOBS", "This is JOBS table", "JOBS", info); jobSource.setFields(fields); return jobSource; } protected Source createSASSource(String dbName) { ConnectionInfo info = getRelationalConnInfo(SourceTargetType.SAS, dbName); info.getConnProps().setProperty( ConnectionPropsConstants.CONNECTIONNAME, "SAS"); Source sasSrc = new Source("DATATYPES_IN", "DATATYPES_IN", "DATATYPES_IN", "DATATYPES_IN", info); List<Field> fields = new ArrayList<Field>(); Field ind = SASHelper.configureField(new Field("ind", "ind", "ind", NativeDataTypes.SAS.NUMBER, "5", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false), "5."); fields.add(ind); Field fldShortText = SASHelper.configureField(new Field("fldShortText", "fldShortText", "fldShortText", NativeDataTypes.SAS.STRING, "25", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false), "$25."); fields.add(fldShortText); Field fldLongText = SASHelper.configureField(new Field("fldLongText", "fldLongText", "fldLongText", NativeDataTypes.SAS.STRING, "90", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false), "$90."); fields.add(fldLongText); Field fldNumeric7_2 = SASHelper.configureField(new Field( "fldNumeric7_2", "fldNumeric7_2", "fldNumeric7_2", NativeDataTypes.SAS.NUMBER, "6", "2", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false), "7.2"); fields.add(fldNumeric7_2); Field fldNumeric15 = SASHelper.configureField(new Field("fldNumeric15", "fldNumeric15", "fldNumeric15", NativeDataTypes.SAS.NUMBER, "15", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false), "15."); fields.add(fldNumeric15); Field fldDate = SASHelper.configureField(new Field("fldDate", "fldDate", "fldDate", NativeDataTypes.SAS.DATE, "6", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false), "DATE5."); fields.add(fldDate); Field fldDateTime = SASHelper.configureField(new Field("fldDateTime", "fldDateTime", "fldDateTime", NativeDataTypes.SAS.DATETIME, "12", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false), "DATETIME24."); fields.add(fldDateTime); Field fldTime = SASHelper.configureField(new Field("fldTime", "fldTime", "fldTime", NativeDataTypes.SAS.TIME, "6", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false), "TIME."); fields.add(fldTime); Field fldYYYMMDD = SASHelper.configureField(new Field("fldYYYMMDD", "fldYYYMMDD", "fldYYYMMDD", NativeDataTypes.SAS.DATE, "6", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false), "YYMMDD."); fields.add(fldYYYMMDD); sasSrc.setFields(fields); SASHelper.configureSASSource(sasSrc, "TDATASET", "", "", ""); return sasSrc; } protected Target createSASTarget(String dbName, String name) { ConnectionInfo info = getRelationalConnInfo(SourceTargetType.SAS, dbName); Target sasTgt = new Target(name, name, name, name, info); List<Field> fields = new ArrayList<Field>(); Field ind = SASHelper.configureField(new Field("ind", "ind", "ind", NativeDataTypes.SAS.NUMBER, "5", "0", FieldKeyType.NOT_A_KEY, FieldType.TARGET, false), "5."); fields.add(ind); Field fldShortText = SASHelper.configureField(new Field("fldShortText", "fldShortText", "fldShortText", NativeDataTypes.SAS.STRING, "25", "0", FieldKeyType.NOT_A_KEY, FieldType.TARGET, false), "$25."); fields.add(fldShortText); Field fldLongText = SASHelper.configureField(new Field("fldLongText", "fldLongText", "fldLongText", NativeDataTypes.SAS.STRING, "90", "0", FieldKeyType.NOT_A_KEY, FieldType.TARGET, false), "$90."); fields.add(fldLongText); Field fldNumeric7_2 = SASHelper.configureField(new Field( "fldNumeric7_2", "fldNumeric7_2", "fldNumeric7_2", NativeDataTypes.SAS.NUMBER, "6", "2", FieldKeyType.NOT_A_KEY, FieldType.TARGET, false), "7.2"); fields.add(fldNumeric7_2); Field fldNumeric15 = SASHelper.configureField(new Field("fldNumeric15", "fldNumeric15", "fldNumeric15", NativeDataTypes.SAS.NUMBER, "15", "0", FieldKeyType.NOT_A_KEY, FieldType.TARGET, false), "15."); fields.add(fldNumeric15); Field fldDate = SASHelper.configureField(new Field("fldDate", "fldDate", "fldDate", NativeDataTypes.SAS.DATE, "6", "0", FieldKeyType.NOT_A_KEY, FieldType.TARGET, false), "DATE5."); fields.add(fldDate); Field fldDateTime = SASHelper.configureField(new Field("fldDateTime", "fldDateTime", "fldDateTime", NativeDataTypes.SAS.DATETIME, "12", "0", FieldKeyType.NOT_A_KEY, FieldType.TARGET, false), "DATETIME24."); fields.add(fldDateTime); Field fldTime = SASHelper.configureField(new Field("fldTime", "fldTime", "fldTime", NativeDataTypes.SAS.TIME, "6", "0", FieldKeyType.NOT_A_KEY, FieldType.TARGET, false), "TIME."); fields.add(fldTime); Field fldYYYMMDD = SASHelper.configureField(new Field("fldYYYMMDD", "fldYYYMMDD", "fldYYYMMDD", NativeDataTypes.SAS.DATE, "6", "0", FieldKeyType.NOT_A_KEY, FieldType.TARGET, false), "YYMMDD."); fields.add(fldYYYMMDD); sasTgt.setFields(fields); SASHelper .configureSASTarget( sasTgt, "TDATASET", "", "", "ShortTextIndex^2false^2^2fldShortText^3^1NumericIndex^2false^2^2fldNumeric15^3^1", "NumericIndex"); return sasTgt; } /** * Method to create ekko sap source * * @param dbName * dbd name */ protected Source createSAPekkoSource(String dbName) { Source ekkoSource = null; List<Field> fields = new ArrayList<Field>(); Field mandtField = new Field("MANDT", "Client", "Client", NativeDataTypes.SAP.CLNT, "3", "0", FieldKeyType.PRIMARY_KEY, FieldType.SOURCE, true); fields.add(mandtField); Field eblnField = new Field("EBELN", "Purchasing document number", "Purchasing document number", NativeDataTypes.SAP.CHAR, "10", "0", FieldKeyType.PRIMARY_FOREIGN_KEY, FieldType.SOURCE, true); fields.add(eblnField); Field bukrsField = new Field("BUKRS", "Company Code", "Company Code", NativeDataTypes.SAP.CHAR, "4", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, true); fields.add(bukrsField); Field pincrField = new Field("PINCR", "Item number interval", "Item number interval", NativeDataTypes.SAP.NUMC, "5", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(pincrField); ConnectionInfo info = getRelationalConnInfo(SourceTargetType.SAP_R3, dbName); info.getConnProps().setProperty( ConnectionPropsConstants.SOURCE_TABLE_NAME, "sourcetable"); info.getConnProps().setProperty( ConnectionPropsConstants.ORDER_BY_PORTS, "1"); info.getConnProps().setProperty(ConnectionPropsConstants.SELECT_OPTION, "Select Single"); info.getConnProps().setProperty( ConnectionPropsConstants.CONNECTIONNAME, "SAP_R3"); ekkoSource = new Source("EKKO", "Purchasing Document Header11", "Purchasing Document Header1", "EKKO", info); ekkoSource.setDatabaseSubtype(StringConstants.SAP_TRANSPARENT_TABLE); ekkoSource.setFields(fields); return ekkoSource; } // DBD name as argument protected Source createSimpleSAPSource() { Source sapSrc = null; try { sapSrc = folder.fetchSourcesFromRepository(new INameFilter() { @Override public boolean accept(String name) { // TODO Auto-generated method stub return name.equals("A004"); } }).get(0); } catch (RepoOperationException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (MapFwkReaderException e) { // TODO Auto-generated catch block e.printStackTrace(); } return sapSrc; } /** * Method to create ekko sap source * * @param dbName * dbd name */ protected Source createSAPekpoSource(String dbName) { Source ekkoSource = null; List<Field> fields = new ArrayList<Field>(); Field mandtField = new Field("MANDT", "Client", "Client", NativeDataTypes.SAP.CLNT, "3", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, true); fields.add(mandtField); Field eblnField = new Field("EBELN", "Purchasing document number", "Purchasing document number", NativeDataTypes.SAP.CHAR, "10", "0", FieldKeyType.PRIMARY_KEY, FieldType.SOURCE, true); fields.add(eblnField); Field bukrsField = new Field("BUKRS", "Company Code", "Company Code", NativeDataTypes.SAP.CHAR, "4", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, true); fields.add(bukrsField); Field ktmngField = new Field("KTMNG", "Target quantity", "Target quantity", NativeDataTypes.SAP.QUAN, "13", "3", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(ktmngField); ConnectionInfo info = getRelationalConnInfo(SourceTargetType.SAP_R3, dbName); info.getConnProps().setProperty( ConnectionPropsConstants.CONNECTIONNAME, "SAP_R3"); ekkoSource = new Source("EKPO", "Purchasing Document Item1", "Purchasing Document Item1", "EKPO", info); ekkoSource.setDatabaseSubtype(StringConstants.SAP_TRANSPARENT_TABLE); ekkoSource.setFields(fields); return ekkoSource; } /** * Method to create Job Info relational source for Teradata database * * @param dbName * database name */ protected Source createTeradataJobSource(String dbName) { Source jobSource = null; List<Field> fields = new ArrayList<Field>(); Field jobIDField = new Field("JOB_ID", "JOB_ID", "", NativeDataTypes.Teradata.VARCHAR, "10", "0", FieldKeyType.PRIMARY_KEY, FieldType.SOURCE, true); fields.add(jobIDField); Field jobTitleField = new Field("JOB_TITLE", "JOB_TITLE", "", NativeDataTypes.Teradata.VARCHAR, "35", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(jobTitleField); Field minSalField = new Field("MIN_SALARY", "MIN_SALARY", "", NativeDataTypes.Teradata.DECIMAL, "6", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(minSalField); Field maxSalField = new Field("MAX_SALARY", "MAX_SALARY", "", NativeDataTypes.Teradata.DECIMAL, "6", "0", FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); fields.add(maxSalField); ConnectionInfo info = getRelationalConnInfo(SourceTargetType.Teradata, dbName); jobSource = new Source("JOBS", "JOBS", "This is JOBS table", "JOBS", info); jobSource.setFields(fields); return jobSource; } public Source createTabledataJobSource(String dbName) { Source jobSource = null; List<Field> fields = new ArrayList<Field>(); Field inid = new Field("SCALAR_INPUT_Integration_Id", "JOB_ID", "", NativeDataTypes.Teradata.VARCHAR, "10", "0", FieldKeyType.PRIMARY_KEY, FieldType.SOURCE, true); fields.add(inid); ConnectionInfo info = getRelationalConnInfo(SourceTargetType.Teradata, dbName); jobSource = new Source("Table", "Table", "This is TableType table", "Table", info); jobSource.setFields(fields); return jobSource; } public Source createSAPCompanyCodeSource(String dbName) { Source jobSource = null; List<Field> fields = new ArrayList<Field>(); // Field plvar = new Field("SCALAR_INPUT_PLVAR", "JOB_ID", "", // NativeDataTypes.Oracle.VARCHAR, "10", "0", // FieldKeyType.PRIMARY_KEY, FieldType.SOURCE, true); // fields.add(plvar); // Field otype = new Field("SCALAR_INPUT_OTYPE", "JOB_TITLE", "", // NativeDataTypes.Oracle.LONG, "35", "0", // FieldKeyType.NOT_A_KEY, FieldType.SOURCE, false); // fields.add(otype); // // Field objId = new Field("SCALAR_INPUT_OBJID", "MIN_SALARY", "", // NativeDataTypes.Oracle.CHAR, "6", "0", FieldKeyType.NOT_A_KEY, // FieldType.SOURCE, false); // fields.add(objId); // // Field begDate = new Field("SCALAR_INPUT_BEGIN_DATE", "MAX_SALARY", "", // NativeDataTypes.Oracle.DATE, "6", "0", FieldKeyType.NOT_A_KEY, // FieldType.SOURCE, false); // fields.add(begDate); // Field endDate = new Field("SCALAR_INPUT_END_DATE", "JOB_ID", "", // NativeDataTypes.Oracle.DATE, "10", "0", // FieldKeyType.PRIMARY_KEY, FieldType.SOURCE, true); // fields.add(endDate); Field inid = new Field("SCALAR_INPUT_Integration_Id", "JOB_ID", "", NativeDataTypes.Oracle.VARCHAR, "10", "0", FieldKeyType.PRIMARY_KEY, FieldType.SOURCE, true); fields.add(inid); ConnectionInfo info = getRelationalConnInfo(SourceTargetType.Oracle, dbName); jobSource = new Source("COMPANYCODE", "COMPANYCODE", "This is COMPANYCODE table", "COMPANYCODE", info); jobSource.setFields(fields); return jobSource; } protected ConnectionInfo getRelationalConnInfo(SourceTargetType dbType, String dbName) { ConnectionInfo connInfo = null; connInfo = new ConnectionInfo(dbType); connInfo.getConnProps().setProperty(ConnectionPropsConstants.DBNAME, dbName); return connInfo; } /** * Method to create relational target */ protected Target createRelationalTarget(SourceTargetType DBType, String name) { Target target = new Target(name, name, name, name, new ConnectionInfo( DBType)); return target; } /** * This method creates the target for the mapping * * @return */ public Target createFlatFileTarget(String name) { Target tgt = new Target(name, name, "", name, new ConnectionInfo( SourceTargetType.Flat_File)); tgt.getConnInfo() .getConnProps() .setProperty(ConnectionPropsConstants.FLATFILE_CODEPAGE, "MS1252"); tgt.getConnInfo() .getConnProps() .setProperty(ConnectionPropsConstants.OUTPUT_FILENAME, name + ".out"); return tgt; } /** * This method creates the target for relational database * * @param name * @param relationalType * @return */ public Target createRelationalTarget(String name, SourceTargetType relationalType) { Target tgt = new Target(name, name, "", name, new ConnectionInfo( relationalType)); return tgt; } /** * This method generates the output xml * * @throws Exception * exception */ public void generateOutput() throws Exception { MapFwkOutputContext outputContext = new MapFwkOutputContext( MapFwkOutputContext.OUTPUT_FORMAT_XML, MapFwkOutputContext.OUTPUT_TARGET_FILE, mapFileName); try { intializeLocalProps(); } catch (IOException ioExcp) { System.err.println(ioExcp.getMessage()); System.err.println("Error reading pcconfig.properties file."); System.err .println("pcconfig.properties file is present in \\javamappingsdk\\samples directory"); System.exit(0); } boolean doImport = false; if (runMode == 1) doImport = true; rep.save(outputContext, doImport); System.out.println("Mapping generated in " + mapFileName); } protected void setMapFileName(Mapping mapping) { StringBuffer buff = new StringBuffer(); buff.append(System.getProperty("user.dir")); buff.append(java.io.File.separatorChar); buff.append(mapping.getName()); buff.append(".xml"); mapFileName = buff.toString(); } protected void addFieldsToSource(Source src, List<Field> fields) { int size = fields.size(); for (int i = 0; i < size; i++) { src.addField((Field) fields.get(i)); } } protected ConnectionInfo getFlatFileConnectionInfo() { ConnectionInfo infoProps = new ConnectionInfo( SourceTargetType.Flat_File); infoProps.getConnProps().setProperty( ConnectionPropsConstants.FLATFILE_SKIPROWS, "1"); infoProps.getConnProps().setProperty( ConnectionPropsConstants.FLATFILE_DELIMITERS, ";"); infoProps.getConnProps().setProperty( ConnectionPropsConstants.DATETIME_FORMAT, "A 21 yyyy/mm/dd hh24:mi:ss"); infoProps.getConnProps().setProperty( ConnectionPropsConstants.FLATFILE_QUOTE_CHARACTER, "DOUBLE"); return infoProps; } protected ConnectionInfo getNetezzaConnectionInfo() { ConnectionInfo infoProps = new ConnectionInfo(SourceTargetType.Netezza); return infoProps; } protected ConnectionInfo getRelationalConnectionInfo(SourceTargetType dbType) { ConnectionInfo infoProps = new ConnectionInfo(dbType); infoProps.getConnProps().setProperty( ConnectionPropsConstants.CONNECTIONNAME, "PS4339"); return infoProps; } // get an FTP connection protected ConnectionInfo getFTPConnectionInfo() { ConnectionInfo infoProps = new ConnectionInfo(SourceTargetType.FTP); infoProps.setConnectionName("ftp_con"); return infoProps; } /** * Method to get relational connection info object */ protected ConnectionInfo getRelationalConnectionInfo( SourceTargetType dbType, String dbName) { ConnectionInfo connInfo = new ConnectionInfo(dbType); connInfo.getConnProps().setProperty(ConnectionPropsConstants.DBNAME, dbName); return connInfo; } protected void intializeLocalProps() throws IOException { Properties properties = new Properties(); String filename = "pcconfig.properties"; InputStream propStream = getClass().getClassLoader() .getResourceAsStream(filename); if (propStream != null) { properties.load(propStream); rep.getRepoConnectionInfo() .setPcClientInstallPath( properties .getProperty(RepoPropsConstants.PC_CLIENT_INSTALL_PATH)); rep.getRepoConnectionInfo() .setPcServerInstallPath( properties .getProperty(RepoPropsConstants.PC_SERVER_INSTALL_PATH)); rep.getRepoConnectionInfo() .setTargetFolderName( properties .getProperty(RepoPropsConstants.TARGET_FOLDER_NAME)); rep.getRepoConnectionInfo() .setTargetRepoName( properties .getProperty(RepoPropsConstants.TARGET_REPO_NAME)); rep.getRepoConnectionInfo() .setRepoServerHost( properties .getProperty(RepoPropsConstants.REPO_SERVER_HOST)); rep.getRepoConnectionInfo().setAdminPassword( properties.getProperty(RepoPropsConstants.ADMIN_PASSWORD)); rep.getRepoConnectionInfo().setAdminUsername( properties.getProperty(RepoPropsConstants.ADMIN_USERNAME)); rep.getRepoConnectionInfo() .setRepoServerPort( properties .getProperty(RepoPropsConstants.REPO_SERVER_PORT)); rep.getRepoConnectionInfo().setServerPort( properties.getProperty(RepoPropsConstants.SERVER_PORT)); rep.getRepoConnectionInfo().setDatabaseType( properties.getProperty(RepoPropsConstants.DATABASETYPE)); rep.getRepoConnectionInfo().setSecurityDomain( properties.getProperty(RepoPropsConstants.SECURITY_DOMAIN)); rep.getRepoConnectionInfo().setKerberosMode( Boolean.parseBoolean(properties.getProperty(RepoPropsConstants.KERBEROS_ENABLED))); if (properties.getProperty(RepoPropsConstants.PMREP_CACHE_FOLDER) != null) rep.getRepoConnectionInfo() .setPmrepCacheFolder( properties .getProperty(RepoPropsConstants.PMREP_CACHE_FOLDER)); } else { throw new IOException( "pcconfig.properties file not found.Add Directory containing pcconfig.properties to ClassPath"); } } public boolean validateRunMode(String value) { int val = Integer.parseInt(value); if (val > 1 || val < 0) { printUsage(); return false; } else { runMode = val; return true; } } public void printUsage() { String errorMsg = "***************** USAGE *************************\n"; errorMsg += "\n"; errorMsg += "Valid arguments are:\n"; errorMsg += "0 => Generate powermart xml file\n"; errorMsg += "1 => Import powermart xml file into PowerCenter Repository\n"; errorMsg += "\n"; errorMsg += "********************************************************\n"; System.out.println(errorMsg); } }
9d392a06edbe776fd9c8098dd0a82a68a516b178
1af7473505a6be4360bd8049fce80573ee95b67e
/src/com/git/TestGitDemo2.java
c82358ee04b115294a1e66091c1d46d07ae5ebc1
[]
no_license
panxinxiu/testgit
2629d2a982cb50a382344399189e3dc73da00ce2
ddbdc4aa1f0cb8302d243cfd1898a905a53e0ff4
refs/heads/master
2023-05-01T18:36:13.053180
2021-05-16T01:52:52
2021-05-16T01:52:52
367,763,851
0
0
null
null
null
null
UTF-8
Java
false
false
190
java
package com.git; public class TestGitDemo2 { public static void main(String[] args) { System.out.println("这是TestGitDemo2"); System.out.println("修改了"); } }
2e8e16022360dcbbae09888d091abcba929ff298
8cfba8bdb08e5d71ac2ab9ab82d78ceb32dfe574
/vlls-back/src/main/java/com/vlls/web/MailController.java
97189dd4ba6b6f1307b08c86ec02ac05dd5609c9
[ "Apache-2.0" ]
permissive
hiepha/vls
0a8d259da17cf332850cef5b56d5c0d70a67781f
6adb808d2e489d4da1e70942991507b23d261b2b
refs/heads/master
2020-12-25T21:44:30.393562
2015-08-28T15:20:49
2015-08-28T15:20:50
34,941,523
0
0
null
null
null
null
UTF-8
Java
false
false
1,008
java
//package com.vlls.web; // //import com.vlls.exception.UnauthenticatedException; //import com.vlls.service.MailService; //import org.springframework.beans.factory.annotation.Autowired; //import org.springframework.core.env.PropertyResolver; //import org.springframework.stereotype.Controller; //import org.springframework.web.bind.annotation.RequestMapping; //import org.springframework.web.servlet.ModelAndView; // //import javax.annotation.Resource; //import javax.mail.MessagingException; //import java.io.IOException; // ///** // * Created by Dell on 1/9/2015. // */ //@Controller //public class MailController { // // @Autowired // private MailService mailService; // // @Resource(name = "vllsPropertyResolver") // protected PropertyResolver vllsProperties; // // @RequestMapping(value = "/sendMail") // public ModelAndView sendMail() throws IOException, MessagingException, UnauthenticatedException { // mailService.sendUserReviseItemList(); // return null; // } //}
fdfe268580583530e2909bc6520f300f29c30cc6
028524dee876858dbc1b136488c5561dbcdd8b97
/src/main/java/com/sonveer/cab/sharing/controller/Controller.java
d88da0947528bc17931bfb2b64ca81e208304481
[]
no_license
sonveer2012/cab-booking
3abf7df62fb1ff62964c64fea3fa2855ff22e258
7175dc7ecbd7406ec7fad5a2e958de39aea0d4c3
refs/heads/main
2023-07-15T22:14:34.809296
2021-08-18T17:32:59
2021-08-18T17:32:59
397,605,953
0
0
null
null
null
null
UTF-8
Java
false
false
5,820
java
package com.sonveer.cab.sharing.controller; import com.sonveer.cab.sharing.entity.request.OfferedRide; import com.sonveer.cab.sharing.entity.request.RequestRide; import com.sonveer.cab.sharing.entity.request.RequestVehicleObject; import com.sonveer.cab.sharing.entity.request.User; import com.sonveer.cab.sharing.entity.request.UserStats; import com.sonveer.cab.sharing.entity.response.ResponseMessage; import com.sonveer.cab.sharing.entity.response.SelectResponse; import com.sonveer.cab.sharing.entity.response.SelectedVehicleInfo; import com.sonveer.cab.sharing.errors.BadRequest; import com.sonveer.cab.sharing.errors.AlreadyInActiveBookingException; import com.sonveer.cab.sharing.errors.ResourceAlreadyExistException; import com.sonveer.cab.sharing.errors.ResourceNotFoundException; import com.sonveer.cab.sharing.services.ResourceService; import com.sonveer.cab.sharing.services.RideService; import com.sonveer.cab.sharing.services.StatService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import java.util.List; import java.util.Map; import javax.validation.Valid; import javax.websocket.server.PathParam; @RestController @RequestMapping("/api/v1") public class Controller { @Autowired private StatService statService; @Autowired private ResourceService resourceService; @Autowired private RideService rideService; @PutMapping("/add-user") public ResponseEntity<ResponseMessage> addUser(@Valid @RequestBody User user) { ResponseMessage responseMessage; int statusCode; String message; try { resourceService.addUser(user); message = "User has been added"; statusCode = 201; } catch (ResourceAlreadyExistException resourceAlreadyExistException) { message = resourceAlreadyExistException.getMessage(); statusCode = 405; } return ResponseEntity.status(statusCode).body(new ResponseMessage(message)); } @PutMapping("/add-vehicle") public ResponseEntity<ResponseMessage> addVehicle(@Valid @RequestBody RequestVehicleObject vehicle) { ResponseMessage responseMessage; int statusCode; String message; try { resourceService.addVehicle(vehicle); statusCode = 201; message = "Vehicle has been added"; } catch (ResourceAlreadyExistException resourceAlreadyExistException) { statusCode = 405; message = resourceAlreadyExistException.getMessage(); } return ResponseEntity.status(statusCode).body(new ResponseMessage(message)); } @PostMapping("/offer-ride") public ResponseEntity<ResponseMessage> offerRide(@Valid @RequestBody OfferedRide OfferedRide) { String message; int statusCode; try { rideService.offerRide(OfferedRide); message = "Status has been updated to offered"; statusCode = 201; } catch (AlreadyInActiveBookingException e) { message = "Vehicle is already in booking/offered status"; statusCode = 405; } catch (ResourceNotFoundException e) { message = "Vehicle is not registered"; statusCode = 404; } return ResponseEntity.status(statusCode).body(new ResponseMessage(message)); } @PostMapping("/select-ride") public ResponseEntity<SelectResponse> selectRide(@Valid @RequestBody RequestRide requestRide) { String message; SelectResponse selectResponse; List<SelectedVehicleInfo> selectedVehicleInfoList = null; int statusCode; try { selectedVehicleInfoList = rideService.selectRide(requestRide); if (selectedVehicleInfoList == null || selectedVehicleInfoList.isEmpty()) { message = "OOPS! No vehicle avaible for the locations"; statusCode = 200; } else { message = "Bingo :)First Vehicle has been booked for your request"; statusCode = 200; } } catch (BadRequest badRequest) { message = "Invalid request necessary field not present"; statusCode = 400; } catch (AlreadyInActiveBookingException e) { message = e.getMessage(); statusCode = 400; } selectResponse = new SelectResponse(message, selectedVehicleInfoList); return ResponseEntity.status(statusCode).body(selectResponse); } @DeleteMapping("/end-ride/{userName}") public ResponseEntity<ResponseMessage> endRide(@PathVariable String userName) { String message; int statusCode; try { rideService.endRide(userName); message = "have ended the ride"; statusCode = 202; } catch (ResourceNotFoundException e) { message = "No booking assigned to user"; statusCode = 405; } return ResponseEntity.status(statusCode).body(new ResponseMessage(message)); } @GetMapping("/ride-stats") public ResponseEntity<Map<String, UserStats>> getRideStats() { return ResponseEntity.ok(statService.getUserStatsMap()); } }
ee5745a526c2d4470f0d52b666ca81e9f6271497
fc4b18a86da1115a21d02c3b23f5e0bb31af4833
/SecureStudentListUser/StudentListUser/src/main/java/fi/haagahelia/course/web/UserDetailServiceImpl.java
e10c58d1fa94b94262d300145a88e28684b443c9
[]
no_license
ArttuKesanto/thymeleaf_practice
b80df08ef450a6ab84b59c7431f8224c1dd692db
e1b4e61411ae45e15b32f47cb878fc17821965bd
refs/heads/master
2020-12-26T13:35:41.935933
2020-04-06T01:41:33
2020-04-06T01:41:33
237,525,850
1
0
null
null
null
null
UTF-8
Java
false
false
1,270
java
package fi.haagahelia.course.web; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.core.authority.AuthorityUtils; import org.springframework.security.core.userdetails.UserDetails; import org.springframework.security.core.userdetails.UserDetailsService; import org.springframework.security.core.userdetails.UsernameNotFoundException; import org.springframework.stereotype.Service; import fi.haagahelia.course.domain.User; import fi.haagahelia.course.domain.UserRepository; /** * This class is used by spring security to authenticate and authorize user **/ @Service public class UserDetailServiceImpl implements UserDetailsService { private final UserRepository repository; @Autowired public UserDetailServiceImpl(UserRepository userRepository) { this.repository = userRepository; } @Override public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException { User curruser = repository.findByUsername(username); UserDetails user = new org.springframework.security.core.userdetails.User(username, curruser.getPasswordHash(), AuthorityUtils.createAuthorityList(curruser.getRole())); return user; } }
347521620ddf6f0dd96d43fe6c8b4a4e4e31dbbc
6baf1fe00541560788e78de5244ae17a7a2b375a
/hollywood/com.oculus.browser-base/sources/defpackage/Kw1.java
07a17bd957417da09986c34dc3cc3114777fbb5a
[]
no_license
phwd/quest-tracker
286e605644fc05f00f4904e51f73d77444a78003
3d46fbb467ba11bee5827f7cae7dfeabeb1fd2ba
refs/heads/main
2023-03-29T20:33:10.959529
2021-04-10T22:14:11
2021-04-10T22:14:11
357,185,040
4
2
null
2021-04-12T12:28:09
2021-04-12T12:28:08
null
UTF-8
Java
false
false
3,584
java
package defpackage; import android.content.Intent; import android.text.TextUtils; import java.util.List; import java.util.Map; import org.chromium.chrome.browser.ShortcutHelper; /* renamed from: Kw1 reason: default package */ /* compiled from: chromium-OculusBrowser.apk-stable-281887347 */ public abstract class Kw1 { /* JADX WARNING: Removed duplicated region for block: B:104:0x01db A[SYNTHETIC, Splitter:B:104:0x01db] */ /* JADX WARNING: Removed duplicated region for block: B:112:0x0206 */ /* JADX WARNING: Removed duplicated region for block: B:138:0x026f A[SYNTHETIC, Splitter:B:138:0x026f] */ /* JADX WARNING: Removed duplicated region for block: B:158:0x02bd */ /* JADX WARNING: Removed duplicated region for block: B:164:0x02d8 */ /* JADX WARNING: Removed duplicated region for block: B:172:0x031b */ /* JADX WARNING: Removed duplicated region for block: B:177:0x032a */ /* JADX WARNING: Removed duplicated region for block: B:188:0x0360 */ /* JADX WARNING: Removed duplicated region for block: B:189:0x0363 */ /* JADX WARNING: Removed duplicated region for block: B:192:0x0379 */ /* JADX WARNING: Removed duplicated region for block: B:193:0x0380 */ /* JADX WARNING: Removed duplicated region for block: B:228:0x0305 A[SYNTHETIC] */ /* JADX WARNING: Removed duplicated region for block: B:34:0x0097 */ /* JADX WARNING: Removed duplicated region for block: B:62:0x0109 */ /* JADX WARNING: Removed duplicated region for block: B:63:0x0115 */ /* JADX WARNING: Removed duplicated region for block: B:66:0x013e */ /* JADX WARNING: Removed duplicated region for block: B:67:0x0144 */ /* JADX WARNING: Removed duplicated region for block: B:77:0x0181 */ /* JADX WARNING: Removed duplicated region for block: B:84:0x0198 */ /* JADX WARNING: Removed duplicated region for block: B:98:0x01c1 */ /* Code decompiled incorrectly, please refer to instructions dump. */ public static defpackage.AbstractC3767mk a(android.content.Intent r51, java.lang.String r52, java.lang.String r53, int r54, boolean r55, boolean r56, defpackage.C5938zT0 r57, java.lang.String r58) { /* // Method dump skipped, instructions count: 1106 */ throw new UnsupportedOperationException("Method not decompiled: defpackage.Kw1.a(android.content.Intent, java.lang.String, java.lang.String, int, boolean, boolean, zT0, java.lang.String):mk"); } public static AbstractC3767mk b(Intent intent, String str, String str2, Zx1 zx1, Zx1 zx12, String str3, String str4, int i, int i2, int i3, long j, long j2, int i4, boolean z, boolean z2, String str5, int i5, String str6, String str7, int i6, Map map, C1758ax1 ax1, boolean z3, boolean z4, C5938zT0 zt0, List list, int i7) { Integer num = null; if (str7 == null || str5 == null) { AbstractC1220Ua0.a("WebApkInfo", "Incomplete data provided: " + str7 + ", " + str5, new Object[0]); return null; } String str8 = TextUtils.isEmpty(str) ? str7 : str; String d = TextUtils.isEmpty(str2) ? ShortcutHelper.d(str7) : str2; String a2 = AbstractC2103cy1.a(str5); if (AbstractC2103cy1.b(j2)) { num = Integer.valueOf((int) j2); } Yx1 yx1 = new Yx1(a2, str8, d, zx1, str3, str4, i, i2, i3, num, i4, false, z, z3); Ew1 ew1 = new Ew1(str5, zx12, z2, i5, str6, str7, i6, map, ax1, z4, list, i7); boolean b = AbstractC2103cy1.b(j); return new C1932by1(intent, b ? (int) j : -1, b, zt0, yx1, ew1); } }
56f1e8eb6b347d8d36092fb3378bf7d089c8325c
5120f6a7701a29f8e2eb61f384b436514087fd42
/org/apache/catalina/core/AprStatus.java
36b9c3005b6a092a581fe3721413b11eb1a97776
[]
no_license
joellobo/tomcat-embed-core-10.0.6
4dbb1c4ed9b88921e7248ee2ee78542f9a80c7d3
7b95a7a0b0f719d7bb65b252b1153b43d6c3d198
refs/heads/main
2023-05-02T16:23:20.804573
2021-05-21T12:47:21
2021-05-21T12:47:21
369,532,705
1
1
null
null
null
null
UTF-8
Java
false
false
2,039
java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.catalina.core; /** * Holds APR status without the need to load other classes. */ public class AprStatus { private static volatile boolean aprInitialized = false; private static volatile boolean aprAvailable = false; private static volatile boolean useOpenSSL = true; private static volatile boolean instanceCreated = false; public static boolean isAprInitialized() { return aprInitialized; } public static boolean isAprAvailable() { return aprAvailable; } public static boolean getUseOpenSSL() { return useOpenSSL; } public static boolean isInstanceCreated() { return instanceCreated; } public static void setAprInitialized(boolean aprInitialized) { AprStatus.aprInitialized = aprInitialized; } public static void setAprAvailable(boolean aprAvailable) { AprStatus.aprAvailable = aprAvailable; } public static void setUseOpenSSL(boolean useOpenSSL) { AprStatus.useOpenSSL = useOpenSSL; } public static void setInstanceCreated(boolean instanceCreated) { AprStatus.instanceCreated = instanceCreated; } }
e4b58e096f02f51a8ebc4e9c00c89397541bf4cd
db33daeeac18e038cf0820e01ffba9d675ab036f
/src/main/java/anacom/shared/exceptions/phone/invalidState/InvalidStateMakeVideo.java
dd9a1ef944aa714d1f373071f672be9eed6f1a0f
[]
no_license
alex-quiterio/quoruns-protocol
46a57e3683b34ff0f06d6b796d2b4cb35555710f
f8047bdc3150c059b6ff0934247402f1fa2aa87b
refs/heads/master
2020-03-28T18:57:52.645005
2013-02-13T23:13:32
2013-02-13T23:13:32
null
0
0
null
null
null
null
UTF-8
Java
false
false
499
java
package anacom.shared.exceptions.phone.invalidState; public class InvalidStateMakeVideo extends InvalidState { private static final long serialVersionUID = 1L; public InvalidStateMakeVideo() {} /** * Constructor * @param number the number of the Phone that made the video call * @param state a String representation of the state the Phone was in * when he tried to make the call */ public InvalidStateMakeVideo(String number, String state) { super(number, state); } }
b3eb3a356871477a5ed50e4c7c440e5b110434af
e4882100ad88085452b23891912f2b34c0a3c250
/ginaconn/src/at/chipkarte/client/base/soap/exceptions/CardExceptionContent.java
0dacf315db3548ec3d50519a85e4ac1c250817a7
[]
no_license
MarkovicPredrag2/ecard-selbstanmeldung
465ea7eac0092b0b7e6f947e3ecc1412529f80c6
71faba712dcb1bf5834a0e3d2c5564e4c29b67f7
refs/heads/master
2021-09-16T21:55:12.238931
2018-06-25T12:47:07
2018-06-25T12:47:07
106,206,524
2
1
null
2018-01-10T17:35:44
2017-10-08T20:11:41
Java
UTF-8
Java
false
false
3,062
java
/** * CardExceptionContent.java * * This file was auto-generated from WSDL * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter. */ package at.chipkarte.client.base.soap.exceptions; public class CardExceptionContent extends at.chipkarte.client.base.soap.exceptions.BaseExceptionContent implements java.io.Serializable { public CardExceptionContent() { } public CardExceptionContent( java.lang.String code, java.lang.Integer errorCode, java.lang.String message1) { super( code, errorCode, message1); } private java.lang.Object __equalsCalc = null; public synchronized boolean equals(java.lang.Object obj) { if (!(obj instanceof CardExceptionContent)) return false; CardExceptionContent other = (CardExceptionContent) obj; if (obj == null) return false; if (this == obj) return true; if (__equalsCalc != null) { return (__equalsCalc == obj); } __equalsCalc = obj; boolean _equals; _equals = super.equals(obj); __equalsCalc = null; return _equals; } private boolean __hashCodeCalc = false; public synchronized int hashCode() { if (__hashCodeCalc) { return 0; } __hashCodeCalc = true; int _hashCode = super.hashCode(); __hashCodeCalc = false; return _hashCode; } // Type metadata private static org.apache.axis.description.TypeDesc typeDesc = new org.apache.axis.description.TypeDesc(CardExceptionContent.class, true); static { typeDesc.setXmlType(new javax.xml.namespace.QName("http://exceptions.soap.base.client.chipkarte.at", "cardExceptionContent")); } /** * Return type metadata object */ public static org.apache.axis.description.TypeDesc getTypeDesc() { return typeDesc; } /** * Get Custom Serializer */ public static org.apache.axis.encoding.Serializer getSerializer( java.lang.String mechType, java.lang.Class _javaType, javax.xml.namespace.QName _xmlType) { return new org.apache.axis.encoding.ser.BeanSerializer( _javaType, _xmlType, typeDesc); } /** * Get Custom Deserializer */ public static org.apache.axis.encoding.Deserializer getDeserializer( java.lang.String mechType, java.lang.Class _javaType, javax.xml.namespace.QName _xmlType) { return new org.apache.axis.encoding.ser.BeanDeserializer( _javaType, _xmlType, typeDesc); } /** * Writes the exception data to the faultDetails */ public void writeDetails(javax.xml.namespace.QName qname, org.apache.axis.encoding.SerializationContext context) throws java.io.IOException { context.serialize(qname, null, this); } }
592908cb37025fd48b9ff9a561fb8bbecc4a26e7
10294e36832e897be5205024d429dcee7914d092
/impala/impala-core/src/org/impalaframework/config/LocationModificationStateHolder.java
231414fe338c36456b7b70c4144620b2d328d7d4
[]
no_license
realtimedespatch/impala
8c9241b038e3c0b57eabc0dbaadfbc48647fed08
85c05dbffa47efec6d95ee8565245497d95ffb2e
refs/heads/master
2022-05-16T08:29:22.430871
2022-03-21T16:35:56
2022-03-21T16:35:56
48,985,384
2
2
null
2016-01-04T08:54:47
2016-01-04T08:54:46
null
UTF-8
Java
false
false
3,193
java
/* * Copyright 2007-2010 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.impalaframework.config; import java.io.File; import java.io.IOException; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.springframework.core.io.Resource; import org.springframework.util.Assert; /** * Class with the responsibility for tracking whether a set of resources have been modified * @author Phil Zoio */ public class LocationModificationStateHolder { private Log log = LogFactory.getLog(LocationModificationStateHolder.class); private Resource[] locations; private long lastModified = 0L; private boolean returnOnFirstCheck = false; public boolean isModifiedSinceLastCheck() { Assert.notNull(locations, "locations cannot be null"); boolean load = false; long newLastModified = 0L; for (Resource resource : locations) { try { File file = resource.getFile(); long fileLastModified = file.lastModified(); newLastModified = Math.max(newLastModified, fileLastModified); if (log.isDebugEnabled()) log.debug("Last modified for resource " + file + ": " + fileLastModified); } catch (IOException e) { System.out.println("Unable to get last modified for resource " + resource); } } long oldLastModified = this.lastModified; long diff = newLastModified - oldLastModified; if (diff > 0) { if (oldLastModified == 0L) { load = returnOnFirstCheck; } else { load = true; } if (log.isDebugEnabled()) log.debug("File has been updated more recently - reloading. Old: " + oldLastModified + ", new: " + newLastModified); } this.lastModified = newLastModified; return load; } public void setLocation(Resource resourceLocation) { setLocations(new Resource[] { resourceLocation }); } public void setLocations(Resource[] resourceLocations) { this.locations = resourceLocations; } public void setLastModified(long lastModified) { this.lastModified = lastModified; } public void setReturnOnFirstCheck(boolean returnOnFirstCheck) { this.returnOnFirstCheck = returnOnFirstCheck; } public Resource[] getLocations() { return locations; } public long getLastModified() { return lastModified; } }
a9d0d4e602f376e60dd340c916514e70d04788df
3e524d00cd3af6f1d8dc4cbc24c2363d000b3b00
/src/Cap3/SearchingArrays.java
4080b9742fad46d0a5c1c4109feb0fdfd04839ea
[]
no_license
cavasdandora/oca
808a2d8b5d8df94bc9b2650310fca5d33893f71d
650f3a2bd042f670063eb15cf726f1312ead2a56
refs/heads/master
2020-03-29T02:12:06.282598
2018-12-04T12:55:43
2018-12-04T12:55:43
149,424,812
0
0
null
null
null
null
UTF-8
Java
false
false
752
java
package Cap3; import java.util.Arrays; public class SearchingArrays { public static void main(String[] args) { //------------------ if not found negate and substract 1 / int[] numbers = {2, 4, 6, 8}; // System.out.println(Arrays.binarySearch(numbers, 2)); // 0 // System.out.println(Arrays.binarySearch(numbers, 4)); // 1 // System.out.println(Arrays.binarySearch(numbers, 1)); // -1 // System.out.println(Arrays.binarySearch(numbers, 3)); // -2 // System.out.println(Arrays.binarySearch(numbers, 9)); // -5 // // int numbers2 = new int[] {3,2,1}; // System.out.println(Arrays.binarySearch(numbers2, 2)); // System.out.println(Arrays.binarySearch(numbers2, 3)); } }
b527caa713e0bf5cc5c733bdcc210a767c0466a5
41c5cd5ed190396285401ac43c6bf098cb3b9e2c
/src/gra.java
474001ca033fa40129e2b65daf2d0a21aeee3760
[]
no_license
Wilkkor/AGH-Badania_operacyjne3
46b64a6d9d45de0fa2684fba2a0f14c7965ce18c
f5b9a241c9236687f64ef9c8ef698825befaf245
refs/heads/master
2020-03-18T07:11:15.924561
2018-05-27T21:36:49
2018-05-27T21:36:49
134,437,946
0
0
null
null
null
null
UTF-8
Java
false
false
14,286
java
import java.util.ArrayList; import java.util.List; import java.util.Scanner; import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.BlockingQueue; public class gra{ static int wymiar=30; static BlockingQueue<Punkt_z_wartoscia> results = new ArrayBlockingQueue<>(wymiar *wymiar ); private int plansza[]=new int[wymiar*wymiar]; private int glebokosc_minimax=2; static char moj_znak='x'; static char znak_przeciwnika='o'; static class MinMax extends Thread{ int [] plansza_teraz; int glebokosc; boolean czy_moj_ruch; int x,y; MinMax(int [] kopia_planszy,int glebokosc_minimax,boolean czy_moj_ruch,int x,int y){ plansza_teraz=kopia_planszy; glebokosc=glebokosc_minimax; this.czy_moj_ruch=czy_moj_ruch; this.x=x; this.y=y; } public void run(){ try { Punkt_z_wartoscia punkt=new Punkt_z_wartoscia(minimax(plansza_teraz,glebokosc,czy_moj_ruch),x,y); results.put(punkt); } catch (InterruptedException e) { e.printStackTrace(); } } int minimax(int [] plansza_teraz,int glebokosc,boolean czy_moj_ruch){ if(glebokosc>0){ int maxlubmin=czy_moj_ruch?-2147483648:2147483647,wartosc; int []plansza_kopia; boolean r; for (int i=0;i<wymiar;i++){ for (int j=0;j<wymiar;j++){ r=false; r = sprawdz_otoczenie(plansza_teraz,r, i, j); if(r){ plansza_kopia=plansza_teraz.clone(); plansza_kopia[i*wymiar+j]=czy_moj_ruch?moj_znak:znak_przeciwnika; wartosc=minimax(plansza_kopia,glebokosc-1,!czy_moj_ruch);// start wątków if(czy_moj_ruch&&wartosc>maxlubmin){ maxlubmin=wartosc; } if (!czy_moj_ruch&&wartosc<maxlubmin){ maxlubmin=wartosc; } } } } return maxlubmin; } else{ return ocen_planszę(plansza_teraz,czy_moj_ruch); } } } private void wyswietl(){ System.out.printf(" "); for (int i=0;i<wymiar;i++){ System.out.printf("%2d|",i); } System.out.println(); for(int i=0;i<wymiar;i++){ System.out.printf("%2d",i); for (int j=0;j<wymiar;j++){ System.out.printf(" %c|",plansza[i*wymiar+j]); } System.out.println(); } } private int decyzja() throws InterruptedException { boolean r; List <MinMax> threads=new ArrayList<MinMax>(); //Punkt punkt=new Punkt(); int [] kopia_planszy; //int max=-2147483648; Punkt_z_wartoscia punkt_z_wartoscia,max_z_wartoscia=new Punkt_z_wartoscia(-2147483648,-1,-1); for (int i=0;i<wymiar;i++){ for (int j=0;j<wymiar;j++){ //r=false; r = sprawdz_otoczenie(plansza,false, i, j); if(r){ kopia_planszy=plansza.clone(); kopia_planszy[i*wymiar+j]=moj_znak;////////////////////////////////nie tak, mie na tej samej strukturze, tu wątki ??? oraz tylko po liście znanych elementów threads.add(new MinMax(kopia_planszy,glebokosc_minimax,false,i,j)); // wartosc=minimax(kopia_planszy,glebokosc_minimax,false); // if(wartosc>max){ // max=wartosc; // punkt.x=i; // punkt.y=j; // System.out.printf("nadalem punktowi %d %d \n",i,j); // } } } } for(int j=0;j<threads.size();j++){ threads.get(j).start(); } for(int j=0;j<threads.size();j++){ punkt_z_wartoscia=results.take(); if(max_z_wartoscia.wartosc<punkt_z_wartoscia.wartosc){ max_z_wartoscia=punkt_z_wartoscia; } } System.out.printf("Postawilem na %d %d \n",max_z_wartoscia.x,max_z_wartoscia.y); plansza[max_z_wartoscia.x*wymiar+max_z_wartoscia.y]=moj_znak; return max_z_wartoscia.wartosc; } private static int ocen_planszę(int [] plansza_teraz,boolean czy_moj_ruch) { int miara=0; int il_moich=0,il_przeciwnika=0; boolean czy_bylo_puste=false; int jii=0,i_0=0,j_0=0; // xxx max xx 2 oooo min ooo -2 oo -1 for (int przejscie=0;przejscie<6;przejscie++){ switch (przejscie){ case 0:i_0=0;j_0=0;break; case 1:i_0=0;j_0=0;break; case 2:i_0=0;j_0=0;break; case 3:i_0=0;j_0=0;break; case 4:i_0=0;j_0=0;break; case 5:i_0=wymiar-1;j_0=0;break; } boolean r=true; while (i_0<wymiar&&j_0<wymiar&&i_0>=0&&j_0>=0){ int i=i_0; int j=j_0; while(i<wymiar&&j<wymiar&&i>=0&&j>=0){ // if(il_przeciwnika==5){ // return -2147483647; // } // else if (il_moich==5){ // miara+=60; // } if(plansza_teraz[i*wymiar+j]==' '&&!czy_bylo_puste&&(il_moich>1||il_przeciwnika>1)) { if(il_przeciwnika==5){ return -2147483647; } else if (il_moich==5){ miara+=60; } } else if(plansza_teraz[i*wymiar+j]==' '&&czy_bylo_puste&&(il_moich>1||il_przeciwnika>1)){ if(il_przeciwnika==5){ return -2147483647; } else if (il_moich==5){ miara+=60; } if(il_moich>0){ if(czy_moj_ruch){ if(il_moich==2){ miara+=2; } else if(il_moich==3){ miara+=4; } else if (il_moich==4){ miara+=60; } } else { if(il_moich==2){ miara+=1; } else if(il_moich==3){ miara+=5; } else if (il_moich==4){ miara+=40; } } } else { if(czy_moj_ruch){ if(il_przeciwnika==2){ miara-=2; } else if(il_przeciwnika==3){ miara-=30; } else if (il_przeciwnika==4){ return -21474836; } } else { if(il_przeciwnika==2){ miara-=2; } else if(il_przeciwnika==3){ miara-=20; } else if(il_przeciwnika==4){ return -21474836; } } } il_moich=0; il_przeciwnika=0; czy_bylo_puste=true; } else if(plansza_teraz[i*wymiar+j]==moj_znak&&il_przeciwnika>0){ if(il_przeciwnika==5){ return -2147483647; } czy_bylo_puste=false; il_przeciwnika=0; il_moich++; } else if(plansza_teraz[i*wymiar+j]==znak_przeciwnika&&il_moich>0){ if (il_moich==5){ miara+=60; } czy_bylo_puste=false; il_moich=0; il_przeciwnika++; } else if(plansza_teraz[i*wymiar+j]==' '){ czy_bylo_puste=true; il_moich=0; il_przeciwnika=0; } else if(plansza_teraz[i*wymiar+j]==znak_przeciwnika)il_przeciwnika++; else if(plansza_teraz[i*wymiar+j]==moj_znak)il_moich++; switch (przejscie){ case 0:i++;break; case 1:j++;break; case 2:i++;j++;break; case 3:i++;j++;break; case 4:i--;j++;break; case 5:i--;j++;break; } } switch (przejscie){ case 0:j_0++;break; case 1:i_0++;break; case 2:j_0++;break; case 3:i_0++;break; case 4:i_0++;break; case 5:j_0++;break; } il_moich=0; il_przeciwnika=0; czy_bylo_puste=false; } } return miara; } private static boolean sprawdz_otoczenie(int [] plansza_teraz,boolean r, int i, int j) {// to nie bedzie chyba potrzebne if(plansza_teraz[i*wymiar+j]==' '){ for (int k=-1;k<2;k++){ for (int l=-1;l<2;l++){ if(i+k>=0&&j+l>=0&&i+k<wymiar&&j+l<wymiar&&plansza_teraz[(i+k)*wymiar+j+l]!=' '){ r=true; break; } } if(r){ break; } } } return r; } public static void main(String[] args) throws InterruptedException { int x,y; Scanner in=new Scanner(System.in); gra kolkoikrzyzyk=new gra(); for(int i=0;i<gra.wymiar;i++){ for (int j=0;j<gra.wymiar;j++){ kolkoikrzyzyk.plansza[i*gra.wymiar+j]=' '; } } while(true){ kolkoikrzyzyk.wyswietl(); do { System.out.println("podaj wolne pole na które chcesz postawić o "); x = in.nextInt(); y = in.nextInt(); }while (kolkoikrzyzyk.plansza[x*gra.wymiar+y]!=' '); kolkoikrzyzyk.plansza[x*gra.wymiar+y]=gra.znak_przeciwnika; if(gra.ocen_planszę(kolkoikrzyzyk.plansza,true)==-2147483647) { System.out.println("wygrales"); return; } kolkoikrzyzyk.wyswietl(); //kolkoikrzyzyk.wyswietl(); if(kolkoikrzyzyk.decyzja()==-2147483647){ kolkoikrzyzyk.wyswietl(); System.out.println("Ech, wygrales, musiałem coś przeoczyć, ale następnym razem cię ogram !!!"); return; } int il_moich=0; int jii=0,i_0=0,j_0=0; if(sprawdz_czy_nie_wygralem(kolkoikrzyzyk)){ kolkoikrzyzyk.wyswietl(); System.out.println("wygralem uchachacha"); return; } } } private static boolean sprawdz_czy_nie_wygralem(gra kolkoikrzyzyk) { int i_0,j_0,il_moich=0; for (int przejscie=0;przejscie<6;przejscie++){ switch (przejscie){ case 0:i_0=0;j_0=0;break; case 1:i_0=0;j_0=0;break; case 2:i_0=0;j_0=0;break; case 3:i_0=0;j_0=0;break; case 4:i_0=0;j_0=0;break; case 5:i_0=wymiar-1;j_0=0;break; default:i_0=0;j_0=0; } boolean r=true; while (i_0<wymiar&&j_0<wymiar&&i_0>=0&&j_0>=0){ int i=i_0; int j=j_0; while(i<wymiar&&j<wymiar&&i>=0&&j>=0){ if(kolkoikrzyzyk.plansza[i*wymiar+j]==' '&&il_moich>1){ if(il_moich==5) return true; il_moich=0; } else if(kolkoikrzyzyk.plansza[i*wymiar+j]==znak_przeciwnika){if(il_moich==5){return true;}il_moich=0;} else if(kolkoikrzyzyk.plansza[i*wymiar+j]==moj_znak)il_moich++; switch (przejscie){ case 0:i++;break; case 1:j++;break; case 2:i++;j++;break; case 3:i++;j++;break; case 4:i--;j++;break; case 5:i--;j++;break; } } switch (przejscie){ case 0:j_0++;break; case 1:i_0++;break; case 2:j_0++;break; case 3:i_0++;break; case 4:i_0++;break; case 5:j_0++;break; } il_moich=0; } } return false; } }
da167e996eb5c66e405ec7ea5df576be42e4d0a0
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/21/21_6e10ce3441f2b64afa72b1d730984c00a9fdc60c/TableModel/21_6e10ce3441f2b64afa72b1d730984c00a9fdc60c_TableModel_t.java
d347ee027d4ccd33b7b2462041f89e64f23f4689
[]
no_license
zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516692
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
2023-06-22T07:55:57
2020-04-28T11:07:49
null
UTF-8
Java
false
false
1,265
java
package scenegraph; import java.io.File; import java.io.IOException; import javax.media.opengl.GL; import javax.media.opengl.GLAutoDrawable; import javax.media.opengl.GLException; import com.sun.opengl.cg.CgGL; import com.sun.opengl.util.texture.Texture; import com.sun.opengl.util.texture.TextureIO; public class TableModel extends SceneGraphNode { private GlassModel glass = null; private EiffelModel eiffel = null; private Texture tex = null; public TableModel(GLAutoDrawable drawable, float scale) { super(drawable, "models/table", scale); glass = new GlassModel(drawable, scale); // glass.setTranslation(0.8f, 0.832f, 0); this.addChild(glass); eiffel = new EiffelModel(drawable, scale); this.addChild(eiffel); this.init(drawable); this.setVertexShaderEnabled(false); this.setFragShaderEnabled(false); } @Override public void init(GLAutoDrawable drawable) {} @Override public void bindParameters() { // TODO Auto-generated method stub } @Override public void animate(GLAutoDrawable drawable) { // TODO Auto-generated method stub } @Override public void draw(GLAutoDrawable drawable) { drawable.getGL().glCallList(this.getObjectList()); } }
89c4eac12a88420509a7bb1b528fe43ce046020d
85338bb20f9b49fc8f29b867992f7723ceac9676
/Demov5/src/main/java/com/openkm/frontend/client/widget/filebrowser/menu/CategoriesMenu.java
bfcc327b311a0509f3902a222db1f7ca221362b9
[]
no_license
vissu67/Knowledgevault
e2a2c6fd87afee535a6a0396da10e0a23525c6f4
4e452ac3b0eebea139eca7d3762ca8862a0cf977
refs/heads/master
2020-05-27T08:42:00.121059
2012-05-22T09:16:14
2012-05-22T09:16:14
null
0
0
null
null
null
null
UTF-8
Java
false
false
12,876
java
/** * OpenKM, Open Document Management System (http://www.openkm.com) * Copyright (c) 2006-2011 Paco Avila & Josep Llort * * No bytes were intentionally harmed during the development of this application. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ package com.openkm.frontend.client.widget.filebrowser.menu; import java.util.ArrayList; import java.util.Arrays; import com.google.gwt.user.client.Command; import com.google.gwt.user.client.ui.FileUpload; import com.google.gwt.user.client.ui.MenuBar; import com.google.gwt.user.client.ui.MenuItem; import com.openkm.frontend.client.Main; import com.openkm.frontend.client.bean.FileToUpload; import com.openkm.frontend.client.bean.GWTAvailableOption; import com.openkm.frontend.client.bean.GWTDocument; import com.openkm.frontend.client.bean.GWTFolder; import com.openkm.frontend.client.bean.GWTMail; import com.openkm.frontend.client.bean.GWTPermission; import com.openkm.frontend.client.contants.ui.UIFileUploadConstants; import com.openkm.frontend.client.util.CommonUI; import com.openkm.frontend.client.util.Util; import com.openkm.frontend.client.widget.MenuBase; /** * CategoryMenu menu * * @author jllort * */ public class CategoriesMenu extends MenuBase { private boolean checkoutOption = false; private boolean checkinOption = false; private boolean deleteOption = false; private boolean renameOption = false; private boolean cancelCheckoutOption = false; private boolean downloadOption = false; private boolean lockOption = false; private boolean unlockOption = false; private boolean addPropertyGroupOption = false; private boolean goOption = false; private MenuBar dirMenu; private MenuItem checkout; private MenuItem checkin; private MenuItem cancelCheckout; private MenuItem delete; private MenuItem rename; private MenuItem download; private MenuItem lock; private MenuItem unlock; private MenuItem go; /** * Category menu */ public CategoriesMenu() { // The item selected must be called on style.css : .okm-MenuBar .gwt-MenuItem-selected // First initialize language values dirMenu = new MenuBar(true); download = new MenuItem(Util.menuHTML("img/icon/actions/download.gif", Main.i18n("filebrowser.menu.download")), true, downloadFile); download.addStyleName("okm-MenuItem-strike"); dirMenu.addItem(download); checkout = new MenuItem(Util.menuHTML("img/icon/actions/checkout.gif", Main.i18n("filebrowser.menu.checkout")), true, checkoutFile); checkout.addStyleName("okm-MenuItem-strike"); dirMenu.addItem(checkout); checkin = new MenuItem(Util.menuHTML("img/icon/actions/checkin.gif", Main.i18n("filebrowser.menu.checkin")), true, checkinFile); checkin.addStyleName("okm-MenuItem-strike"); dirMenu.addItem(checkin); cancelCheckout = new MenuItem(Util.menuHTML("img/icon/actions/cancel_checkout.gif", Main.i18n("filebrowser.menu.checkout.cancel")), true, cancelCheckinFile); cancelCheckout.addStyleName("okm-MenuItem-strike"); dirMenu.addItem(cancelCheckout); lock = new MenuItem(Util.menuHTML("img/icon/actions/lock.gif", Main.i18n("filebrowser.menu.lock")), true, lockFile); lock.addStyleName("okm-MenuItem-strike"); dirMenu.addItem(lock); unlock = new MenuItem(Util.menuHTML("img/icon/actions/unlock.gif", Main.i18n("filebrowser.menu.unlock")), true, unlockFile); unlock.addStyleName("okm-MenuItem-strike"); dirMenu.addItem(unlock); delete = new MenuItem(Util.menuHTML("img/icon/actions/delete.gif", Main.i18n("filebrowser.menu.delete")), true, deleteFile); delete.addStyleName("okm-MenuItem-strike"); dirMenu.addItem(delete); rename = new MenuItem(Util.menuHTML("img/icon/actions/rename.gif", Main.i18n("filebrowser.menu.rename")), true, renameFile); rename.addStyleName("okm-MenuItem-strike"); dirMenu.addItem(rename); go = new MenuItem(Util.menuHTML("img/icon/actions/goto_folder.gif", Main.i18n("search.result.menu.go.folder")), true, goDirectory); go.addStyleName("okm-MenuItem-strike"); dirMenu.addItem(go); dirMenu.setStyleName("okm-MenuBar"); initWidget(dirMenu); } // Command menu to download file Command downloadFile = new Command() { public void execute() { if (downloadOption) { Main.get().mainPanel.desktop.browser.fileBrowser.table.downloadDocument(false); hide(); } } }; // Command menu to checkout file Command checkoutFile = new Command() { public void execute() { if (checkoutOption) { Main.get().mainPanel.desktop.browser.fileBrowser.checkout(); hide(); } } }; // Command menu to checkin file Command checkinFile = new Command() { public void execute() { if (checkinOption) { FileToUpload fileToUpload = new FileToUpload(); fileToUpload.setFileUpload(new FileUpload()); fileToUpload.setPath(Main.get().mainPanel.desktop.browser.fileBrowser.getPath()); fileToUpload.setAction(UIFileUploadConstants.ACTION_UPDATE); fileToUpload.setEnableAddButton(false); fileToUpload.setEnableImport(false); Main.get().fileUpload.enqueueFileToUpload(new ArrayList<FileToUpload>(Arrays.asList(fileToUpload))); hide(); } } }; // Command menu to cancel checkin file Command cancelCheckinFile = new Command() { public void execute() { if (cancelCheckoutOption) { Main.get().mainPanel.desktop.browser.fileBrowser.cancelCheckout(); hide(); } } }; // Command menu to lock file Command lockFile = new Command() { public void execute() { if (lockOption) { Main.get().mainPanel.desktop.browser.fileBrowser.lock(); hide(); } } }; // Command menu to unlock file Command unlockFile = new Command() { public void execute() { if (unlockOption) { Main.get().mainPanel.desktop.browser.fileBrowser.unlock(); hide(); } } }; // Command menu to lock file Command deleteFile = new Command() { public void execute() { if (deleteOption) { Main.get().mainPanel.desktop.browser.fileBrowser.confirmDelete(); hide(); } } }; // Command menu to rename file Command renameFile = new Command() { public void execute() { if (renameOption) { Main.get().mainPanel.desktop.browser.fileBrowser.rename(); hide(); } } }; // Command menu to rename file Command addPropertyGroup = new Command() { public void execute() { if (addPropertyGroupOption) { Main.get().propertyGroupPopup.show(); hide(); } } }; // Command menu to go directory file Command goDirectory = new Command() { public void execute() { if (goOption) { String docPath = ""; String path = ""; if (Main.get().mainPanel.desktop.browser.fileBrowser.isDocumentSelected()) { docPath = Main.get().mainPanel.desktop.browser.fileBrowser.getDocument().getPath(); path = docPath.substring(0,docPath.lastIndexOf("/")); } CommonUI.openAllFolderPath(path, docPath); hide(); } } }; /** * Refresh language values */ public void langRefresh() { checkout.setHTML(Util.menuHTML("img/icon/actions/checkout.gif", Main.i18n("filebrowser.menu.checkout"))); checkin.setHTML(Util.menuHTML("img/icon/actions/checkin.gif", Main.i18n("filebrowser.menu.checkin"))); delete.setHTML(Util.menuHTML("img/icon/actions/delete.gif", Main.i18n("filebrowser.menu.delete"))); rename.setHTML(Util.menuHTML("img/icon/actions/rename.gif", Main.i18n("filebrowser.menu.rename"))); cancelCheckout.setHTML(Util.menuHTML("img/icon/actions/cancel_checkout.gif", Main.i18n("filebrowser.menu.checkout.cancel"))); lock.setHTML(Util.menuHTML("img/icon/actions/lock.gif", Main.i18n("filebrowser.menu.lock"))); unlock.setHTML(Util.menuHTML("img/icon/actions/unlock.gif", Main.i18n("filebrowser.menu.unlock"))); download.setHTML(Util.menuHTML("img/icon/actions/download.gif", Main.i18n("filebrowser.menu.download"))); go.setHTML(Util.menuHTML("img/icon/actions/goto_folder.gif", Main.i18n("search.result.menu.go.folder"))); } /** * Checks permissions associated to folder and menu options enabled actions * * @param folder The folder */ public void checkMenuOptionPermissions(GWTFolder folder, GWTFolder folderParent) { } /** * Checks permissions associated to document and menu options enabled actions * * @param doc The document */ public void checkMenuOptionPermissions(GWTDocument doc, GWTFolder folder) { String user = Main.get().workspaceUserProperties.getUser(); downloadOption = true; checkinOption = false; cancelCheckoutOption = false; unlockOption = false; goOption = true; if ( (doc.getPermissions() & GWTPermission.WRITE) == GWTPermission.WRITE) { lockOption = true; checkoutOption = true; if ( (folder.getPermissions() & GWTPermission.WRITE) == GWTPermission.WRITE) { renameOption = true; deleteOption = true; addPropertyGroupOption = true; } else { renameOption = false; deleteOption = false; addPropertyGroupOption = false; } } else { lockOption = false; deleteOption = false; renameOption = false; checkoutOption = false; addPropertyGroupOption = false; } if (doc.isCheckedOut()){ lockOption = false; unlockOption = false; checkoutOption = false; if (doc.getLockInfo().getOwner().equals(user)) { checkinOption = true; cancelCheckoutOption = true; addPropertyGroupOption = true; } else { checkinOption = false; cancelCheckoutOption = false; addPropertyGroupOption = false; } deleteOption = false; renameOption = false; } else if (doc.isLocked()){ lockOption = false; if (doc.getLockInfo().getOwner().equals(user)) { unlockOption = true; } else { unlockOption = false; } checkoutOption = false; checkinOption = false; cancelCheckoutOption = false; deleteOption = false; renameOption = false; addPropertyGroupOption = false; } else { unlockOption = false; checkinOption = false; cancelCheckoutOption = false; } } /** * Checks permissions associated to mail and menu options enabled actions * * @param mail The mail */ public void checkMenuOptionPermissions(GWTMail mail, GWTFolder folder) { } /** * Disables all menu options */ public void disableAllMenuOption() { downloadOption = false; deleteOption = false; renameOption = false; checkoutOption = false; checkinOption = false; cancelCheckoutOption = false; lockOption = false; unlockOption = false; addPropertyGroupOption = false; goOption = false; } /** * Evaluates menu options */ public void evaluateMenuOptions(){ if (downloadOption){enable(download);} else {disable(download);} if (deleteOption){enable(delete);} else {disable(delete);} if (renameOption){enable(rename);} else {disable(rename);} if (checkoutOption){enable(checkout);} else {disable(checkout);} if (checkinOption){enable(checkin);} else {disable(checkin);} if (cancelCheckoutOption){enable(cancelCheckout);} else {disable(cancelCheckout);} if (lockOption){enable(lock);} else {disable(lock);} if (unlockOption){enable(unlock);} else {disable(unlock);} if (goOption){enable(go);} else {disable(go);} } @Override public void setAvailableOption(GWTAvailableOption option) { download.setVisible(option.isDownloadOption()); delete.setVisible(option.isDeleteOption()); rename.setVisible(option.isRenameOption()); checkout.setVisible(option.isCheckoutOption()); checkin.setVisible(option.isCheckinOption()); cancelCheckout.setVisible(option.cancelCheckoutOption); lock.setVisible(option.isLockOption()); unlock.setVisible(option.isUnLockOption()); go.setVisible(option.isGotoFolderOption()); } /** * Hide popup menu */ public void hide() { Main.get().mainPanel.desktop.browser.fileBrowser.thesaurusMenuPopup.hide(); } /* (non-Javadoc) * @see com.openkm.frontend.client.widget.MenuBase#enableAllMenuOptions() */ public void enableAllMenuOptions(){ } /* (non-Javadoc) * @see com.openkm.frontend.client.widget.MenuBase#enableRootMenuOptions() */ public void enableRootMenuOptions(){ } }
68b6188e051d5ae0a7ee939ef65e38adcb99023a
0299f20e8777aa69fd33b64bf2658d693aebbaa7
/src/main/java/com/ds/algos/coding/patterns/slidingwindow/LongestSubstringKDistinct.java
80d2fdf0c1f1f1afdb9f1340d16a43befe320db4
[]
no_license
sandeepn623/ds_algos
395a8d8b254d931812cf21f5f75b7bcab9931c6b
3bb9fe978d005fc53f4fdbd0f79b08adb51adb4b
refs/heads/master
2023-01-29T15:55:19.842481
2020-12-09T07:41:42
2020-12-09T07:42:19
297,739,030
0
0
null
null
null
null
UTF-8
Java
false
false
2,907
java
package com.ds.algos.coding.patterns.slidingwindow; import java.util.HashMap; import java.util.Map; /** * * Given a string, find the length of the longest substring in it with no more than K distinct characters. * Example String="araaci", K=2 * Result - 4 * */ public class LongestSubstringKDistinct { /** * Time complexity O(N) * Space Complextiy O(K) */ public int findLengthSmallestWindow(String str, int k) { //didn't consider the edge case //No need to convet to char array //char[] originalChars = str.toCharArray(); //int N = originalChars.length; int N = str.length(); int longestSubstringCount = Integer.MIN_VALUE, windowStart=0; Map<Character, Integer> charFrequencyMap = new HashMap<>(); long start = System.currentTimeMillis(); for(int windowEnd=0; windowEnd < N; windowEnd++) { //Time Complexity O(N) char rightChar = str.charAt(windowEnd); charFrequencyMap.put(rightChar, charFrequencyMap.getOrDefault(rightChar, 0) + 1); while(charFrequencyMap.size() > k) { char leftChar = str.charAt(windowStart); charFrequencyMap.put(leftChar, charFrequencyMap.get(leftChar) - 1); if(charFrequencyMap.get(leftChar) == 0) { charFrequencyMap.remove(leftChar); } windowStart++; } longestSubstringCount = Math.max(longestSubstringCount, windowEnd-windowStart+1); } long end = System.currentTimeMillis(); System.out.println(end-start); return longestSubstringCount; } public int findMaxLength(String str, int k) { if (str == null || str.length() == 0 || str.length() < k) throw new IllegalArgumentException(); int windowStart = 0, maxLength = 0; Map<Character, Integer> charFrequencyMap = new HashMap<>(); // in the following loop we'll try to extend the range [windowStart, windowEnd] for (int windowEnd = 0; windowEnd < str.length(); windowEnd++) { char rightChar = str.charAt(windowEnd); charFrequencyMap.put(rightChar, charFrequencyMap.getOrDefault(rightChar, 0) + 1); // shrink the sliding window, until we are left with 'k' distinct characters in the frequency map while (charFrequencyMap.size() > k) { char leftChar = str.charAt(windowStart); charFrequencyMap.put(leftChar, charFrequencyMap.get(leftChar) - 1); if (charFrequencyMap.get(leftChar) == 0) { charFrequencyMap.remove(leftChar); } windowStart++; // shrink the window } maxLength = Math.max(maxLength, windowEnd - windowStart + 1); // remember the maximum length so far } return maxLength; } }
a0750ce6bf0987e0c771bf5631bd3c85af3b848f
043bd24f8849f49b983f8260fd60d92da24dd6a5
/chapter_001/src/test/java/ru/job4j/condition/package-info.java
7e61c373a6e43c4724f4a55b3911ae4d435d3fa1
[ "Apache-2.0" ]
permissive
filonich-vlad/job4j
a695a0f02135d44d88a5e0e298a92c50d2bd4022
1884ea5db25cbbe3e27e7da37a2fdf6955156b8b
refs/heads/master
2021-06-27T15:34:51.503395
2019-08-01T16:24:11
2019-08-01T16:24:11
160,426,326
0
0
Apache-2.0
2020-10-13T11:17:40
2018-12-04T22:22:14
Java
UTF-8
Java
false
false
87
java
/** * @author Filonich Vladislav * @since 27.12.2018 */ package ru.job4j.condition;
90f84ec245e51b9dbceabc57186c8c7b04386c12
8b95040a8066232957cdbf812f488e34076b82ed
/atf-wiremock/src/main/java/ru/bsc/test/at/mock/application/MockApplication.java
154d4f469846a2b60992975848db62ea95709037
[ "Apache-2.0" ]
permissive
iustinov/AuTe-Framework
35ea3069a3238111e2b5a8884d766281a57c44b3
4870f92893510316a72f3b69376b454df75f0ee9
refs/heads/master
2020-03-28T23:00:39.229731
2018-09-06T05:14:30
2018-09-06T07:02:33
149,270,837
0
0
Apache-2.0
2018-09-18T10:33:56
2018-09-18T10:33:55
null
UTF-8
Java
false
false
6,102
java
/* * Copyright 2018 BSC Msc, LLC * * This file is part of the AuTe Framework project * * 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 ru.bsc.test.at.mock.application; import com.fasterxml.classmate.TypeResolver; import com.github.tomakehurst.wiremock.common.Notifier; import com.github.tomakehurst.wiremock.common.Slf4jNotifier; import com.github.tomakehurst.wiremock.core.WireMockApp; import com.github.tomakehurst.wiremock.http.AdminRequestHandler; import com.github.tomakehurst.wiremock.http.StubRequestHandler; import com.github.tomakehurst.wiremock.servlet.NotImplementedContainer; import com.github.tomakehurst.wiremock.servlet.WireMockHandlerDispatchingServlet; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.web.servlet.FilterRegistrationBean; import org.springframework.boot.web.servlet.ServletRegistrationBean; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.context.request.async.DeferredResult; import ru.bsc.test.at.mock.filter.CorsFilter; import ru.bsc.test.at.mock.wiremock.webcontextlistener.configuration.CustomWarConfiguration; import springfox.documentation.builders.PathSelectors; import springfox.documentation.builders.RequestHandlerSelectors; import springfox.documentation.builders.ResponseMessageBuilder; import springfox.documentation.schema.WildcardType; import springfox.documentation.spi.DocumentationType; import springfox.documentation.spring.web.plugins.Docket; import springfox.documentation.swagger2.annotations.EnableSwagger2; import javax.servlet.Servlet; import javax.servlet.ServletContext; import java.time.LocalDate; import static com.google.common.collect.Lists.newArrayList; import static springfox.documentation.schema.AlternateTypeRules.newRule; @Controller @EnableAutoConfiguration @SpringBootApplication @EnableSwagger2 @ComponentScan("ru.bsc.test.at.mock") @Slf4j public class MockApplication { private static final String APP_CONTEXT_KEY = "WireMockApp"; private final TypeResolver typeResolver; private final ServletContext context; @Autowired public MockApplication(TypeResolver typeResolver, ServletContext context) { this.typeResolver = typeResolver; this.context = context; } public static void main(String[] args) { SpringApplication.run(new Class[]{MockApplication.class, SpringWebConfig.class}, args); } @Bean public FilterRegistrationBean corsFilter() { FilterRegistrationBean filter = new FilterRegistrationBean(new CorsFilter()); filter.addUrlPatterns("/*"); return filter; } @Bean public WireMockApp wireMockApp() { WireMockApp wireMockApp = new WireMockApp(new CustomWarConfiguration(context, "."), new NotImplementedContainer()); context.setAttribute(APP_CONTEXT_KEY, wireMockApp); context.setAttribute(StubRequestHandler.class.getName(), wireMockApp.buildStubRequestHandler()); context.setAttribute(AdminRequestHandler.class.getName(), wireMockApp.buildAdminRequestHandler()); context.setAttribute(Notifier.KEY, new Slf4jNotifier(false)); return wireMockApp; } @Bean public ServletRegistrationBean wiremockAdminHandlerBean() { ServletRegistrationBean bean = new ServletRegistrationBean(new WireMockHandlerDispatchingServlet(),"/__admin/*"); bean.addInitParameter("RequestHandlerClass", AdminRequestHandler.class.getName()); bean.setLoadOnStartup(1); bean.setName("wiremockAdmin"); return bean; } @Bean public ServletRegistrationBean wiremockMockHandlerBean() { Servlet servlet = new WireMockHandlerDispatchingServlet(); ServletRegistrationBean bean = new ServletRegistrationBean(servlet, "/bsc-wire-mock/*"); bean.addInitParameter("RequestHandlerClass", StubRequestHandler.class.getName()); bean.addInitParameter(WireMockHandlerDispatchingServlet.MAPPED_UNDER_KEY, "/bsc-wire-mock/"); bean.setLoadOnStartup(1); bean.setName("wiremockStub"); return bean; } @Bean public Docket wiremockApi() { return new Docket(DocumentationType.SWAGGER_2) .select() .apis(RequestHandlerSelectors.any()) .paths(PathSelectors.regex(".*__admin.*")) .build() .pathMapping("/") .directModelSubstitute(LocalDate.class, String.class) .alternateTypeRules( newRule(typeResolver.resolve(DeferredResult.class, typeResolver.resolve(ResponseEntity.class, WildcardType.class)), typeResolver.resolve(WildcardType.class))) .useDefaultResponseMessages(false) .globalResponseMessage(RequestMethod.GET, newArrayList(new ResponseMessageBuilder() .code(500) .message("Http error 500") .build())) .enableUrlTemplating(true); } }
031995b50c07563f76a2a299c6da695c03d9e043
a741d82fb5ee0203161455353587ffcc902ef351
/aylson-admin/src/main/java/com/aylson/dc/partner/controller/CouponApplyController.java
9ef0283254e826bb261d2474c820e6181fb3afd6
[]
no_license
xiaofeifei321/aylson-parent
b48121272d5e92a1acc4b671ab7af63aa6c06b0b
3749a0f1ef45851b4aa513b324ef23a04e4421d3
refs/heads/master
2022-12-23T20:15:51.598455
2019-08-29T11:30:13
2019-08-29T11:30:13
204,696,341
0
0
null
null
null
null
UTF-8
Java
false
false
3,002
java
package com.aylson.dc.partner.controller; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; import com.aylson.core.frame.base.Page; import com.aylson.core.frame.controller.BaseController; import com.aylson.core.frame.domain.Result; import com.aylson.core.frame.domain.ResultCode; import com.aylson.dc.partner.search.CouponApplySearch; import com.aylson.dc.partner.service.CouponApplyService; import com.aylson.dc.partner.vo.CouponApplyVo; /** * 优惠券配置管理 * @author wwx * @since 2017-01 * @version v1.0 * */ @Controller @RequestMapping("/partner/couponApply") public class CouponApplyController extends BaseController { @Autowired private CouponApplyService couponApplyService; //优惠券配置服务 /** * 获取列表(分页) * @param couponApplySearch * @return */ @ResponseBody @RequestMapping(value = "/getPage", method = RequestMethod.GET) public Result getPage(CouponApplySearch couponApplySearch) { Result result = new Result(); Page<CouponApplyVo> page = this.couponApplyService.getPage(couponApplySearch); result.setOK(ResultCode.CODE_STATE_200, "操作成功", page); return result; } /** * 获取列表(不分页) * @param couponApplySearch * @return */ @ResponseBody @RequestMapping(value = "/getList", method = RequestMethod.GET) public Result getList(CouponApplySearch couponApplySearch) { Result result = new Result(); List<CouponApplyVo> list = this.couponApplyService.getList(couponApplySearch); result.setOK(ResultCode.CODE_STATE_200, "操作成功", list); return result; } /** * 获取列表(不分页) * @param couponApplySearch * @return */ @ResponseBody @RequestMapping(value = "/getById", method = RequestMethod.GET) public Result getById(Integer id) { Result result = new Result(); if(id == null){ result.setError(ResultCode.CODE_STATE_4006, "获取id失败,请稍后再试或者联系管理员!"); return result; } CouponApplyVo couponApplyVo = this.couponApplyService.getById(id); if(couponApplyVo == null){ result.setError(ResultCode.CODE_STATE_4006, "获取信息失败,请稍后再试或者联系管理员!"); }else{ result.setOK(ResultCode.CODE_STATE_200, "操作成功", couponApplyVo); } return result; } /** * 审核 * @param id * @param isPass * @return */ @RequestMapping(value = "/verify", method = RequestMethod.POST) @ResponseBody public Result verify(Integer id, Boolean isPass) { Result result = null; try { result = this.couponApplyService.verify(id, isPass); } catch (Exception e) { e.printStackTrace(); result.setError(ResultCode.CODE_STATE_500, e.getMessage()); } return result; } }
96ed7a80d88a09c6e96e1c28411b809d8b628fc3
49f3dc2e4c5f4df08c394c76398b82ae68312b6b
/06/app/src/main/java/com/example/sixthactivity/util/FileUtil.java
432ff29617589b51e0a37e151c677be0f5893992
[]
no_license
zhoushihao18990087/-
dde8f21bcf89db9866a885c0d0153b455dd2663d
995ac70023a4cf210b0058e58151ef30ee0fe62d
refs/heads/master
2023-02-04T07:54:01.744855
2020-12-18T11:49:06
2020-12-18T11:49:06
305,123,039
0
0
null
null
null
null
UTF-8
Java
false
false
4,766
java
package com.example.sixthactivity.util; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.FilenameFilter; import java.util.ArrayList; import java.util.Locale; public class FileUtil { // 把字符串保存到指定路径的文本文件 public static void saveText(String path, String txt) { try { // 根据指定文件路径构建文件输出流对象 FileOutputStream fos = new FileOutputStream(path); // 把字符串写入文件输出流 fos.write(txt.getBytes()); // 关闭文件输出流 fos.close(); } catch (Exception e) { e.printStackTrace(); } } // 从指定路径的文本文件中读取内容字符串 public static String openText(String path) { String readStr = ""; try { // 根据指定文件路径构建文件输入流对象 FileInputStream fis = new FileInputStream(path); byte[] b = new byte[fis.available()]; // 从文件输入流读取字节数组 fis.read(b); // 把字节数组转换为字符串 readStr = new String(b); // 关闭文件输入流 fis.close(); } catch (Exception e) { e.printStackTrace(); } // 返回文本文件中的文本字符串 return readStr; } // 把位图数据保存到指定路径的图片文件 public static void saveImage(String path, Bitmap bitmap) { try { // 根据指定文件路径构建缓存输出流对象 BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(path)); // 把位图数据压缩到缓存输出流中 bitmap.compress(Bitmap.CompressFormat.JPEG, 80, bos); // 完成缓存输出流的写入动作 bos.flush(); // 关闭缓存输出流 bos.close(); } catch (Exception e) { e.printStackTrace(); } } // 从指定路径的图片文件中读取位图数据 public static Bitmap openImage(String path) { Bitmap bitmap = null; try { // 根据指定文件路径构建缓存输入流对象 BufferedInputStream bis = new BufferedInputStream(new FileInputStream(path)); // 从缓存输入流中解码位图数据 bitmap = BitmapFactory.decodeStream(bis); bis.close(); // 关闭缓存输入流 } catch (Exception e) { e.printStackTrace(); } // 返回图片文件中的位图数据 return bitmap; } public static ArrayList<File> getFileList(String path, String[] extendArray) { ArrayList<File> displayedContent = new ArrayList<File>(); File[] files = null; File directory = new File(path); if (extendArray != null && extendArray.length > 0) { FilenameFilter fileFilter = getTypeFilter(extendArray); files = directory.listFiles(fileFilter); } else { files = directory.listFiles(); } if (files != null) { for (File f : files) { if (!f.isDirectory() && !f.isHidden()) { displayedContent.add(f); } } } return displayedContent; } public static FilenameFilter getTypeFilter(String[] extendArray) { final ArrayList<String> fileExtensions = new ArrayList<String>(); for (int i = 0; i < extendArray.length; i++) { fileExtensions.add(extendArray[i]); } FilenameFilter fileNameFilter = new FilenameFilter() { @Override public boolean accept(File directory, String fileName) { boolean matched = false; File f = new File(String.format("%s/%s", directory.getAbsolutePath(), fileName)); matched = f.isDirectory(); if (!matched) { for (String s : fileExtensions) { s = String.format(".{0,}\\%s$", s); s = s.toUpperCase(Locale.getDefault()); fileName = fileName.toUpperCase(Locale.getDefault()); matched = fileName.matches(s); if (matched) { break; } } } return matched; } }; return fileNameFilter; } }
bbcd0e725c240086b8d73c4aed4aa9cc6f699aa0
44da6761da6b60dbb99b7020aa4e788d7df0c865
/Android/day0328/Dog.java
4ad7e9f74f590a8f11c0bac8b086902c2862cb1b
[]
no_license
nainainainai1/web
6a7fe8cb4db71755b79770c7e0c1e2862b6c11a0
087f756102b819b861563524942cf024cbcda06e
refs/heads/master
2020-04-13T04:40:40.222277
2019-07-29T04:51:14
2019-07-29T04:51:14
162,968,053
1
0
null
2019-10-30T23:52:27
2018-12-24T08:22:17
HTML
UTF-8
Java
false
false
59
java
package day0328; public class Dog extends Anmial { }
b0aa12820d5e1b16b9f81710f84da5467c1f9970
2b2d7efc6ddd0bc6175c68c4d839e23da3278714
/src/main/java/com/mozss/basic/patterns/behavior/iteratior/whitebox_demo/CreateIterator.java
7bf87ae3042e14d036805696e6288ab636b23f54
[]
no_license
mozss/notes-java
440bac316bba57888cb1265ed87273b77f7dfc86
0f4e1e5b7e77fd9c72d7dc0925ba29c19fa17880
refs/heads/master
2023-01-07T10:37:00.001220
2020-11-08T14:55:56
2020-11-08T14:55:56
null
0
0
null
null
null
null
UTF-8
Java
false
false
978
java
package com.mozss.basic.patterns.behavior.iteratior.whitebox_demo; /** * @author mozss * @create 2019-10-28 13:43 */ public class CreateIterator implements Iterator { private final ConcreteAggregate agg; private int index = 0; private int size = 0; /* * 构造函数 * */ public CreateIterator(ConcreteAggregate agg) { this.agg = agg; size = agg.size(); index = 0; } /* * 移动到第一个元素 * */ @Override public void first() { index = 0; } /* * 移动到下一个元素 * */ @Override public void next() { if (index < size) { index++; } } /* * 是否为最后一个元素 * */ @Override public boolean isDone() { return (index >= size); } /* * 返回当前元素 * */ @Override public Object currentIterator() { return agg.getElement(index); } }
3a171c0b8d0d8a282ac9c40381c0f64952216cef
ea7de228633110fa660e057b695feacb0b899c2b
/src/main/java/com/healthoverflow/healthOverflow/web/currentUser.java
bbf8336b7e8b894e5b6440fd7aa5a4cc8f5ea2bc
[]
no_license
Health-Overflow/healthOverflow
dff5ebc78dac5018cc8047a32d65236bce875b32
1bc5e768d16f6cc3739f4f6bb7eeb56fd195b193
refs/heads/main
2023-06-27T16:55:25.040391
2021-08-05T07:48:39
2021-08-05T07:48:39
390,737,699
1
1
null
2021-08-04T15:33:18
2021-07-29T13:44:24
HTML
UTF-8
Java
false
false
1,172
java
package com.healthoverflow.healthOverflow.web; import com.healthoverflow.healthOverflow.domain.ApplicationUser; import com.healthoverflow.healthOverflow.infrastructure.ApplicationUserRepo; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.core.context.SecurityContextHolder; import org.springframework.security.core.userdetails.UserDetails; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.RestController; @RestController public class currentUser { @Autowired private ApplicationUserRepo applicationUserRepo; @GetMapping("/senduser") @ResponseBody public String getCurrentUser(){ UserDetails userDetails = (UserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal(); ApplicationUser currentUser = applicationUserRepo.findApplicationUserByUsername(userDetails.getUsername()); return "{" +"\"fullName\"" + ":\""+currentUser.getFullName() +"\"," + "\"userImage\"" + ":\"" + currentUser.getImage() +"\"}"; } }
d9a913c0825abc7ae1e614a7b5c445a2a399f39e
7a2cd374f93c0e206f0acf74b181fdf6b38924df
/src/ja1/JA1.java
cfe41104900a31cc35531e1348a5814998d574e4
[]
no_license
zouxiaohui/IntAlk1
eed54604bba70c8bcf2cfbff8846576124ccdc08
b84be302cd89107648cdaaabc6747d3cdf1953e1
refs/heads/master
2021-06-30T03:13:05.525386
2017-09-14T09:14:08
2017-09-14T09:14:08
103,511,924
0
0
null
null
null
null
UTF-8
Java
false
false
1,087
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package ja1; /** * * @author a1brly */ public class JA1 { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here double hom =5; ia.TemperatureUnit honnan = ia.TemperatureUnit.DEGREE_CELSIUS; ia.TemperatureUnit hova = ia.TemperatureUnit.DEGREE_FAHRENHEIT; double eredmeny =convertTemp(hom,honnan,hova); System.out.println( "A " + hom + " C=" +eredmeny+ " F"); } private static double convertTemp(double temperature, ia.TemperatureUnit fromUnit, ia.TemperatureUnit toUnit) { ia.ConvertTemperature service = new ia.ConvertTemperature(); ia.ConvertTemperatureSoap port = service.getConvertTemperatureSoap(); return port.convertTemp(temperature, fromUnit, toUnit); } }
fbe5645843de68511028e82c6f60a3884b020e7e
14c7ff43334ce264d23eab91fd8b6208289f451c
/android/app/src/main/java/com/instagram_rn/MainApplication.java
85cf5f5a63847ea92731fa6d06430b4576439208
[]
no_license
tanriyo-code/tugas-kuliah-mobile
1e17ea479df0c1c1c1b23c00c826e2f3421433ba
862fef62c15a4227948dd17308cbd2dc0e82ddff
refs/heads/master
2023-02-22T01:12:46.654444
2021-01-29T09:15:28
2021-01-29T09:15:28
334,092,693
0
0
null
null
null
null
UTF-8
Java
false
false
2,607
java
package com.instagram_rn; import android.app.Application; import android.content.Context; import com.facebook.react.PackageList; import com.facebook.react.ReactApplication; import com.facebook.react.ReactInstanceManager; import com.facebook.react.ReactNativeHost; import com.facebook.react.ReactPackage; import com.facebook.soloader.SoLoader; import java.lang.reflect.InvocationTargetException; import java.util.List; public class MainApplication extends Application implements ReactApplication { private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { @Override public boolean getUseDeveloperSupport() { return BuildConfig.DEBUG; } @Override protected List<ReactPackage> getPackages() { @SuppressWarnings("UnnecessaryLocalVariable") List<ReactPackage> packages = new PackageList(this).getPackages(); // Packages that cannot be autolinked yet can be added manually here, for example: // packages.add(new MyReactNativePackage()); return packages; } @Override protected String getJSMainModuleName() { return "index"; } }; @Override public ReactNativeHost getReactNativeHost() { return mReactNativeHost; } @Override public void onCreate() { super.onCreate(); SoLoader.init(this, /* native exopackage */ false); initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); } /** * Loads Flipper in React Native templates. Call this in the onCreate method with something like * initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); * * @param context * @param reactInstanceManager */ private static void initializeFlipper( Context context, ReactInstanceManager reactInstanceManager) { if (BuildConfig.DEBUG) { try { /* We use reflection here to pick up the class that initializes Flipper, since Flipper library is not available in release mode */ Class<?> aClass = Class.forName("com.instagram_rn.ReactNativeFlipper"); aClass .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class) .invoke(null, context, reactInstanceManager); } catch (ClassNotFoundException e) { e.printStackTrace(); } catch (NoSuchMethodException e) { e.printStackTrace(); } catch (IllegalAccessException e) { e.printStackTrace(); } catch (InvocationTargetException e) { e.printStackTrace(); } } } }
ea4bb0312ee23cf8a77edf8c6cac090f63463f35
df621d54ab449363d1fb8edf9a7fa8a877138b66
/app/src/main/java/ru/mydomain/raspisanieusatu/fragment/HistoryFragment.java
2a48326533ce692e06a8082a99941cf56c5018ab
[]
no_license
MrAlltin/Raspisanie
fd4e6fa7dc95765130fa0746e6d974bab2ae0422
79a28cd0c0b686600ea75d4505c4562bea6b62d1
refs/heads/master
2021-01-17T19:00:51.035582
2016-07-13T22:28:04
2016-07-13T22:28:04
63,097,254
0
0
null
null
null
null
UTF-8
Java
false
false
2,843
java
package ru.mydomain.raspisanieusatu.fragment; import android.content.Context; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import java.util.ArrayList; import java.util.List; import ru.mydomain.raspisanieusatu.FilesOpen.Basic_Open; import ru.mydomain.raspisanieusatu.FilesOpen.Open_Files; import ru.mydomain.raspisanieusatu.MainActivity; import ru.mydomain.raspisanieusatu.R; import ru.mydomain.raspisanieusatu.adapter.RemindListAdapter; import ru.mydomain.raspisanieusatu.dto.RemindDTO; public class HistoryFragment extends AbstractTabFragment{ private static final int LAYOUT = R.layout.fragment_history; private int t; private String FileText; boolean wtf = true; public static HistoryFragment getInstanse(Context context){ Bundle args = new Bundle(); HistoryFragment fragment = new HistoryFragment(); fragment.setArguments(args); fragment.setContext(context); fragment.setTitle(context.getString(R.string.tab_item_history)); return fragment; } @Nullable @Override public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { view = inflater.inflate(LAYOUT,container,false); RecyclerView rv = (RecyclerView) view.findViewById(R.id.recycleView); rv.setLayoutManager(new LinearLayoutManager(context)); rv.setAdapter(new RemindListAdapter(creatMockRemindListData())); return view; } private List<RemindDTO> creatMockRemindListData() { String group; int GroupID; Open_Files opn = new Open_Files(); MainActivity ma = new MainActivity(); Basic_Open bo = new Basic_Open(); group = bo.getStringFromRawFile( getActivity() ); bo.setGroup( group ); GroupID = bo.getGroupID(); FileText = opn.getStringFromRawFile(getActivity(), GroupID); opn.setFileText(FileText); opn.openFile(GroupID); t = opn.getN(); System.out.println(t); opn.Name(FileText); List<RemindDTO> data = new ArrayList<>(); String[] names = opn.getFinalname(); String[] rooms = opn.getRooms(); String[] prepods = opn.getPrepods(); if(names.length==0){ System.out.println("names пуст!"); } for (int i =0;i<t;i++) { data.add( new RemindDTO( names[i].toString(), rooms[i].toString(), prepods[i].toString() ) ); } return data; } public void setContext(Context context) { this.context = context; } }
a2f3616886f1a26dba38b8e22e5159838050b582
305caa35adb658e004b887da6272d992eabc2322
/src/main/java/com/sergiomartinrubio/javaeewebsocketxmppclient/domain/MessageType.java
09fc0ece53853beebeb5498813b58f846f20c65e
[]
no_license
smartinrub/javaee-websocket-xmpp-client
087333592de4706d4690588e9ef324e0da725ba1
a5fde2346cc1f4fb0bed3deedfcf17a08bfdf0fc
refs/heads/master
2020-12-03T20:02:02.870734
2020-01-18T12:33:53
2020-01-18T12:33:53
231,466,729
0
0
null
null
null
null
UTF-8
Java
false
false
122
java
package com.sergiomartinrubio.javaeewebsocketxmppclient.domain; public enum MessageType { CHAT, JOIN, LEAVE, ERROR }
1867b3560c7674ea918069f6854ef96d26f87d94
a4a2fe3efe8672cd1437cc06d10e570febe00097
/app/src/androidTest/java/com/jackin/messengerdemo/ExampleInstrumentedTest.java
43c302d7cf5be59087a9cbe0a628f58d8a0cf704
[]
no_license
LiuJQ/MessengerDemo
67437dba51c894c5522c78e74b0aca7e38b4da66
2f993d1e697ded851b6ce469cb06f133833f27ea
refs/heads/master
2020-03-10T00:21:25.532655
2018-04-19T08:27:02
2018-04-19T08:27:02
129,079,999
0
0
null
2018-04-19T07:16:36
2018-04-11T10:59:18
Java
UTF-8
Java
false
false
732
java
package com.jackin.messengerdemo; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on an Android device. * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ @RunWith(AndroidJUnit4.class) public class ExampleInstrumentedTest { @Test public void useAppContext() { // Context of the app under test. Context appContext = InstrumentationRegistry.getTargetContext(); assertEquals("com.jackin.messengerdemo", appContext.getPackageName()); } }
1a8ade731007e2a70607887744b0cf30ea900acf
9dbea1d4adceac10c4dbc46fc095ab496f6148f3
/app/src/main/java/namlxuit/socialnetworkgamers/UI/RegisterAccount/Interactor/RegisterOps.java
6f36ac57b43546a651c5d4a7904d0381b95eaa6f
[]
no_license
namlxuit056/SocialNetworkGamers
a78fdc9e78e29473bfd33ee089b667151725b1e0
bbc340c59c83e427d5936812704ccff5778de444
refs/heads/master
2020-04-10T23:41:44.505938
2016-09-12T13:25:37
2016-09-12T13:25:37
68,010,161
0
0
null
null
null
null
UTF-8
Java
false
false
342
java
package namlxuit.socialnetworkgamers.UI.RegisterAccount.Interactor; import java.util.Map; import java.util.Objects; /** * Created by namlxuit on 25/08/2016. */ public interface RegisterOps { public void receiveRegisterRequest(String email, String password); public Map<String,Objects> createUser(String email,String password); }
a4a5ed157849b795a03acb525ad58dfbd679ca02
4233f03e208311212ca4c7003b37b72b4c3bcce4
/src/test/java/guru/springframework/services/UnitOfMeasureServiceImplTest.java
db5f5e2e2c4cbb5c4ba01a41a2249855e7488e6f
[]
no_license
dpetan/spring5-recipe-app
a774f75db87b7da8fe1848f92da23a36f0d14b91
0b2094f2a69c9237a806f56cf13b9c1e216a7ed9
refs/heads/master
2020-06-19T23:28:38.178826
2019-08-17T15:10:20
2019-08-17T15:10:20
196,912,327
0
0
null
2019-07-15T02:48:27
2019-07-15T02:48:27
null
UTF-8
Java
false
false
1,670
java
package guru.springframework.services; import static org.junit.Assert.assertEquals; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import java.util.HashSet; import java.util.Set; import guru.springframework.commands.UnitOfMeasureCommand; import guru.springframework.converters.UnitOfMeasureToUnitOfMeasureCommand; import guru.springframework.domain.UnitOfMeasure; import guru.springframework.repositories.UnitOfMeasureRepository; import org.junit.Before; import org.junit.Test; import org.mockito.Mock; import org.mockito.MockitoAnnotations; public class UnitOfMeasureServiceImplTest { @Mock UnitOfMeasureRepository unitOfMeasureRepository; UnitOfMeasureToUnitOfMeasureCommand unitOfMeasureToUnitOfMeasureCommand = new UnitOfMeasureToUnitOfMeasureCommand(); UnitOfMeasureService service; @Before public void setUp() throws Exception { MockitoAnnotations.initMocks(this); service = new UnitOfMeasureServiceImpl(unitOfMeasureRepository, unitOfMeasureToUnitOfMeasureCommand); } @Test public void listAllUoms() { //given Set<UnitOfMeasure> unitOfMeasures = new HashSet<>(); UnitOfMeasure uom1 = new UnitOfMeasure(); uom1.setId(1L); unitOfMeasures.add(uom1); UnitOfMeasure uom2 = new UnitOfMeasure(); uom2.setId(2L); unitOfMeasures.add(uom2); when(unitOfMeasureRepository.findAll()).thenReturn(unitOfMeasures); //when Set<UnitOfMeasureCommand> uoms = service.listAllUoms(); //then assertEquals(2, uoms.size()); verify(unitOfMeasureRepository).findAll(); } }
7d04dda933d68fff6ff7fa1c217a39deb3df3d7f
f8014702e57347bbc3762d443b29de4c5ce36479
/tuikit/src/main/java/com/tencent/qcloud/tim/uikit/utils/SharedPreferenceUtils.java
201852fa944380697638022d90ca9ef301809bff
[]
no_license
hyc956944953/IM_4.4.627-2019.06.27
bfa72bf906287f475d0e23d38901a5b15b4222be
e60aa043f6e144c397cf270ff7e259b075ddacf3
refs/heads/master
2020-06-13T05:10:28.655880
2019-06-30T17:40:01
2019-06-30T17:40:01
194,543,092
3
0
null
null
null
null
UTF-8
Java
false
false
6,024
java
package com.tencent.qcloud.tim.uikit.utils; import android.content.SharedPreferences; import com.google.gson.Gson; import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonParser; import java.util.LinkedList; public class SharedPreferenceUtils { /** * 保存数据到SharedPreferences * * @param key 键 * @param value 需要保存的数据 * @return 保存结果 */ public static boolean putData(SharedPreferences sp, String key, Object value) { boolean result; SharedPreferences.Editor editor = sp.edit(); String type = value.getClass().getSimpleName(); try { switch (type) { case "Boolean": editor.putBoolean(key, (Boolean) value); break; case "Long": editor.putLong(key, (Long) value); break; case "Float": editor.putFloat(key, (Float) value); break; case "String": editor.putString(key, (String) value); break; case "Integer": editor.putInt(key, (Integer) value); break; default: Gson gson = new Gson(); String json = gson.toJson(value); editor.putString(key, json); break; } result = true; } catch (Exception e) { result = false; e.printStackTrace(); } editor.apply(); return result; } /** * 获取SharedPreferences中保存的数据 * * @param key 键 * @param defaultValue 获取失败默认值 * @return 从SharedPreferences读取的数据 */ public static Object getData(SharedPreferences sp, String key, Object defaultValue) { Object result; String type = defaultValue.getClass().getSimpleName(); try { switch (type) { case "Boolean": result = sp.getBoolean(key, (Boolean) defaultValue); break; case "Long": result = sp.getLong(key, (Long) defaultValue); break; case "Float": result = sp.getFloat(key, (Float) defaultValue); break; case "String": result = sp.getString(key, (String) defaultValue); break; case "Integer": result = sp.getInt(key, (Integer) defaultValue); break; default: Gson gson = new Gson(); String json = sp.getString(key, ""); if (!json.equals("") && json.length() > 0) { result = gson.fromJson(json, defaultValue.getClass()); } else { result = defaultValue; } break; } } catch (Exception e) { result = null; e.printStackTrace(); } return result; } /** * 用于保存集合 * * @param key key * @param list 集合数据 * @return 保存结果 */ public static <T> boolean putListData(SharedPreferences sp, String key, LinkedList<T> list) { boolean result; SharedPreferences.Editor editor = sp.edit(); JsonArray array = new JsonArray(); if (list.size() <= 0) { editor.putString(key, array.toString()); editor.apply(); return false; } String type = list.get(0).getClass().getSimpleName(); try { switch (type) { case "Boolean": for (int i = 0; i < list.size(); i++) { array.add((Boolean) list.get(i)); } break; case "Long": for (int i = 0; i < list.size(); i++) { array.add((Long) list.get(i)); } break; case "Float": for (int i = 0; i < list.size(); i++) { array.add((Float) list.get(i)); } break; case "String": for (int i = 0; i < list.size(); i++) { array.add((String) list.get(i)); } break; case "Integer": for (int i = 0; i < list.size(); i++) { array.add((Integer) list.get(i)); } break; default: Gson gson = new Gson(); for (int i = 0; i < list.size(); i++) { JsonElement obj = gson.toJsonTree(list.get(i)); array.add(obj); } break; } editor.putString(key, array.toString()); result = true; } catch (Exception e) { result = false; e.printStackTrace(); } editor.apply(); return result; } /** * 获取保存的List * * @param key key * @return 对应的Lis集合 */ public static <T> LinkedList<T> getListData(SharedPreferences sp, String key, Class<T> cls) { LinkedList<T> list = new LinkedList<>(); String json = sp.getString(key, ""); if (!json.equals("") && json.length() > 0) { Gson gson = new Gson(); JsonArray array = new JsonParser().parse(json).getAsJsonArray(); for (JsonElement elem : array) { list.add(gson.fromJson(elem, cls)); } } return list; } }
6a9d1e93ccb6b7f6f4aedc8e6583716136f81cc3
47763d2dfc7884e53fa80abddfbeb7e60bfcd6dd
/app/src/main/java/br/com/rdev/hmtimeturner/dao/PatternDAO.java
b5f181957047b9672f363e05ab30e7319b695bf3
[]
no_license
rsl50/HM_TimeTurner
46852c206d07b47f6b1e60b8f8713bcb5e81a39d
e1479bbb5e3808501abcb11f4c14e73d4fcad223
refs/heads/master
2022-12-28T19:41:38.380518
2020-10-12T20:52:51
2020-10-12T20:52:51
267,747,250
0
0
null
null
null
null
UTF-8
Java
false
false
868
java
package br.com.rdev.hmtimeturner.dao; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.List; import br.com.rdev.hmtimeturner.model.Pattern; public class PatternDAO { private final static ArrayList<Pattern> results = new ArrayList<>(); public List<Pattern> todos() { return (List<Pattern>) results.clone(); } public void insere(Pattern... patterns) { PatternDAO.results.addAll(Arrays.asList(patterns)); } public void altera(int posicao, Pattern result) { results.set(posicao, result); } public void remove(int posicao) { results.remove(posicao); } public void troca(int posicaoInicio, int posicaoFim) { Collections.swap(results, posicaoInicio, posicaoFim); } public void removeTodos() { results.clear(); } }
683c9a01f28dc1f9fdf564fe2bd3686ef08f1a2c
da5b6897f82d222e05fa5fb07103dc0a14b05bbb
/src/data/Tarjan/48657_Tarjan_1575104153599/src.backup/test/java/net/mooctest/DenseWeightedGraphTest.java
38c985cbca6a95ee45516c79dd192ada8e33ef7c
[]
no_license
DingDuan/SimAnalysisWS
a227de5ad0aa4d05515aa07f90855100f0713504
36428ea585922a1d6739de5f525e2d582a590be2
refs/heads/master
2022-11-23T12:42:14.076709
2020-04-30T10:57:49
2020-04-30T10:57:49
218,675,392
0
0
null
2022-11-16T10:22:29
2019-10-31T03:17:13
Java
UTF-8
Java
false
false
4,524
java
package net.mooctest; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; import java.util.ArrayList; import java.util.Collection; import java.util.EnumSet; import java.util.Locale; import org.junit.Test; public class DenseWeightedGraphTest { public void test() { double[][] doubleArray0 = new double[7][6]; DenseWeightedGraph<Integer> denseWeightedGraph0 = DenseWeightedGraph.from(doubleArray0); Integer integer0 = new Integer(0); Collection<Weighted<Edge<Integer>>> collection0 = denseWeightedGraph0.getIncomingEdges(integer0); assertNotNull(collection0); } @Test public void test01() { double[][] doubleArray0 = new double[9][1]; DenseWeightedGraph<Integer> denseWeightedGraph0 = DenseWeightedGraph.from(doubleArray0); Integer integer0 = new Integer(0); Integer integer1 = new Integer(0); double double0 = denseWeightedGraph0.getWeightOf(integer0, integer1); assertEquals(0.0, double0, 0.01); } @Test public void test02() { double[][] doubleArray0 = new double[9][1]; double[] doubleArray1 = new double[7]; doubleArray1[1] = 0.5; doubleArray0[1] = doubleArray1; DenseWeightedGraph<Integer> denseWeightedGraph0 = DenseWeightedGraph.from(doubleArray0); Integer integer0 = new Integer(1); double double0 = denseWeightedGraph0.getWeightOf(integer0, integer0); assertEquals(0.5, double0, 0.01); } @Test public void test03() { ArrayList<Edge<Object>> arrayList0 = new ArrayList<Edge<Object>>(); double[][] doubleArray0 = new double[2][5]; double[] doubleArray1 = new double[5]; Edge<Object> edge0 = new Edge<Object>(doubleArray1, arrayList0); arrayList0.add(edge0); arrayList0.add(edge0); // Undeclared exception! try { DenseWeightedGraph.from((Iterable<Edge<Object>>) arrayList0, doubleArray0); fail("Expecting exception: StackOverflowError"); } catch(StackOverflowError e) { } } @Test public void test04() { double[][] doubleArray0 = new double[5][9]; // Undeclared exception! try { DenseWeightedGraph.from((Iterable<Weighted<Locale.Category>>) null, doubleArray0); fail("Expecting exception: NullPointerException"); } catch(NullPointerException e) { } } @Test public void test05() { Locale.Category locale_Category0 = Locale.Category.DISPLAY; EnumSet<Locale.Category> enumSet0 = EnumSet.of(locale_Category0); double[][] doubleArray0 = new double[1][5]; DenseWeightedGraph<Locale.Category> denseWeightedGraph0 = DenseWeightedGraph.from((Iterable<Locale.Category>) enumSet0, doubleArray0); double double0 = denseWeightedGraph0.getWeightOf(locale_Category0, (Locale.Category) null); assertEquals(Double.NEGATIVE_INFINITY, double0, 0.01); } @Test public void test06() { Locale.Category locale_Category0 = Locale.Category.DISPLAY; EnumSet<Locale.Category> enumSet0 = EnumSet.of(locale_Category0); double[][] doubleArray0 = new double[1][5]; DenseWeightedGraph<Locale.Category> denseWeightedGraph0 = DenseWeightedGraph.from((Iterable<Locale.Category>) enumSet0, doubleArray0); Locale.Category locale_Category1 = Locale.Category.FORMAT; double double0 = denseWeightedGraph0.getWeightOf(locale_Category1, locale_Category0); assertEquals(Double.NEGATIVE_INFINITY, double0, 0.01); } @Test public void test07() { Locale.Category locale_Category0 = Locale.Category.DISPLAY; EnumSet<Locale.Category> enumSet0 = EnumSet.of(locale_Category0); double[][] doubleArray0 = new double[1][5]; DenseWeightedGraph<Locale.Category> denseWeightedGraph0 = DenseWeightedGraph.from((Iterable<Locale.Category>) enumSet0, doubleArray0); Collection<Locale.Category> collection0 = denseWeightedGraph0.getNodes(); assertTrue(collection0.contains(locale_Category0)); } @Test public void test08() { double[][] doubleArray0 = new double[1][5]; DenseWeightedGraph<Integer> denseWeightedGraph0 = DenseWeightedGraph.from(doubleArray0); Integer integer0 = new Integer(1); Collection<Weighted<Edge<Integer>>> collection0 = denseWeightedGraph0.getIncomingEdges(integer0); assertNotNull(collection0); } }