blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 410 | content_id stringlengths 40 40 | detected_licenses listlengths 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 listlengths 1 1 | author_id stringlengths 0 313 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
b171bcb34f042e908ff876e495b8f91786f189b2 | 27a5621052c3626f8046c7bd9694bd41c36cc88c | /src/main/java/ru/javaops/topjava2/repository/DishRepository.java | 2f59ab1230a016983410cbf2a047145301849bde | [] | no_license | Avgur33/voting-system | b20649381eef88ff2505ab1c92870fd7d5ccecf1 | fc3e8c98bc35002d5d56d8272342f6bf44dd1378 | refs/heads/master | 2023-07-18T11:54:53.685841 | 2021-09-06T12:48:17 | 2021-09-06T12:48:17 | 403,603,734 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 695 | java | package ru.javaops.topjava2.repository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import org.springframework.transaction.annotation.Transactional;
import ru.javaops.topjava2.model.Dish;
import java.util.List;
import java.util.Optional;
@Transactional(readOnly = true)
public interface DishRepository extends BaseRepository<Dish> {
@Query("SELECT m FROM Dish m WHERE m.restaurant.id =:restaurantId")
List<Dish> getDishesByRestaurantId(@Param("restaurantId") Integer restaurantId);
@Query("SELECT m FROM Dish m JOIN FETCH m.restaurant WHERE m.id =:id ")
Optional<Dish> findByIdWithRestaurant(Integer id);
}
| [
"avgur33@gmail.com"
] | avgur33@gmail.com |
332bcfb5ddfb7dac90c0888d290dbc3829940ec7 | 8c10442dcb0990e05bc1b8980c740ec8cf10a76e | /src/main/java/com/gildedrose/rest/ShopInitializer.java | 798bd411d7f1b1f558c1e3ab542d1dfebe0efeef | [
"MIT"
] | permissive | mdomasevicius/GildedRose-Refactoring-Kata | 79f89ce4b64b1246a27268afe2e4921fac663b2d | 51823930705d49cfb13aa0d05a618884aff97667 | refs/heads/master | 2020-03-18T04:37:32.015717 | 2018-06-07T18:46:07 | 2018-06-07T18:46:07 | 134,297,077 | 0 | 0 | MIT | 2018-06-02T12:57:28 | 2018-05-21T16:41:54 | Java | UTF-8 | Java | false | false | 2,377 | java | package com.gildedrose.rest;
import com.gildedrose.GildedRose;
import com.gildedrose.Item;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;
import java.util.Arrays;
import java.util.List;
import java.util.stream.LongStream;
import static java.util.stream.Collectors.toList;
@Component
@Configuration
class ShopInitializer implements InitializingBean {
private final ItemRepo repo;
private final Long daysPassed;
ShopInitializer(
ItemRepo repo,
@Value("${gilded-rose.days-passed:10}") Long daysPassed
) {
this.repo = repo;
this.daysPassed = daysPassed;
}
@Override
public void afterPropertiesSet() {
gildedRoseWithTxSupport().runShopFor(this.daysPassed);
}
interface GildedRoseWithTxSupport {
void runShopFor(Long days);
}
@Bean
GildedRoseWithTxSupport gildedRoseWithTxSupport() {
return new GildedRoseWithTxSupport() {
@Transactional
@Override
public void runShopFor(Long days) {
GildedRose gildedRose = new GildedRose(new Item[]{
new Item("+5 Dexterity Vest", 10, 20),
new Item("Aged Brie", 2, 0),
new Item("Elixir of the Mongoose", 5, 7),
new Item("Sulfuras, Hand of Ragnaros", 0, 80),
new Item("Sulfuras, Hand of Ragnaros", -1, 80),
new Item("Backstage passes to a TAFKAL80ETC concert", 15, 20),
new Item("Backstage passes to a TAFKAL80ETC concert", 10, 49),
new Item("Backstage passes to a TAFKAL80ETC concert", 5, 49),
new Item("Conjured Mana Cake", 3, 6),
new Item("Conjured Bread", 8, 16)
});
LongStream.rangeClosed(1, days).forEach(ignored -> gildedRose.updateQuality());
List<ItemEntity> collect = Arrays.stream(gildedRose.getItems()).map(ItemEntity::toItemEntity).collect(toList());
repo.saveAll(collect);
}
};
}
}
| [
"mdomasevicius@gmail.com"
] | mdomasevicius@gmail.com |
85f8c38434ffae12b3cde1ad6f39e6d7b7b121e6 | 9f30fbae8035c2fc1cb681855db1bc32964ffbd4 | /Java/YangRuoXi_01/task6/src/main/java/com/jnshu/task6/mapper/UserMapper.java | 5641d0104f939af38b1c3ecbc9a005842e7425e8 | [] | no_license | IT-xzy/Task | f2d309cbea962bec628df7be967ac335fd358b15 | 4f72d55b8c9247064b7c15db172fd68415492c48 | refs/heads/master | 2022-12-23T04:53:59.410971 | 2019-06-20T21:14:15 | 2019-06-20T21:14:15 | 126,955,174 | 18 | 395 | null | 2022-12-16T12:17:21 | 2018-03-27T08:34:32 | null | UTF-8 | Java | false | false | 413 | java | package com.jnshu.task6.mapper;
import com.jnshu.task6.beans.User;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface UserMapper {
int addUser(User user);
List<User> selectAllUser();
User selectUserById(Integer id);
int updateUserById(Integer id, User user);
int delectUserById(Integer id);
List<User> selectUserBySalaryDESC();
}
| [
"1090481058@qq.com"
] | 1090481058@qq.com |
8de9313609e1c644cebf2082dd5805d803bd2fea | cb59cc733e437bac7183dd0a6223b2ccaf0c6229 | /app/src/main/java/com/android/instapost/HomeActivity.java | c76959003e712243b10a576624a40e3154985bcb | [] | no_license | TriDangContact/InstaPost | 63b58e4f3972f4ffa43b4aa284a2ee6a7f5a6467 | cd3fda54e3cd18f917bcb7f7a6409611ecdda62e | refs/heads/master | 2020-05-16T06:29:48.649241 | 2019-04-22T20:50:59 | 2019-04-22T20:50:59 | 180,680,566 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 19,541 | java | package com.android.instapost;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.support.annotation.NonNull;
import android.support.design.widget.NavigationView;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBarDrawerToggle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
import com.google.android.gms.tasks.OnFailureListener;
import com.google.android.gms.tasks.OnSuccessListener;
import com.google.firebase.auth.FirebaseAuth;
import com.google.firebase.auth.FirebaseUser;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.Query;
import com.google.firebase.database.ValueEventListener;
import com.google.firebase.storage.FileDownloadTask;
import com.google.firebase.storage.FirebaseStorage;
import com.google.firebase.storage.StorageReference;
import java.io.File;
import java.util.List;
public class HomeActivity extends AppCompatActivity implements NavigationView.OnNavigationItemSelectedListener, UserListFragment.OnUserListFragmentInteractionListener, PostListFragment.OnPostListFragmentInteractionListener, HashtagListFragment.OnHashtagListFragmentInteractionListener {
private static final String HOME_TAG = "HomeActivity";
private static final int REQUEST_CREATE_POST = 0;
private static final String EXTRA_NAME = "com.android.instapost.name";
private static final String EXTRA_USERNAME = "com.android.instapost.username";
private static final String USER_DB_PATH = "user";
private static final String TAG_DB_PATH = "tag";
private static final String POST_DB_PATH = "post";
private static final String USERNAME_DB_ORDER_BY = "mUsername";
private static final String ID_DB_ORDER_BY = "mId";
private static final String TAG_DB_ORDER_BY = "mHashtag";
private static final String FRAGMENT_1 = "FRAGMENT 1";
private static final String FRAGMENT_2 = "Fragment 2";
private static final String FRAGMENT_3 = "Fragment 3";
private static final String DOWNLOAD_DIR = Environment.getExternalStoragePublicDirectory
(Environment.DIRECTORY_DOWNLOADS).getPath();
private FirebaseDatabase mDatabase;
private FirebaseStorage mStorage;
private DrawerLayout mDrawerLayout;
private Toolbar mToolbar;
private NavigationView mNavigationView;
private ActionBarDrawerToggle mDrawerToggle;
private TextView mHeaderView;
private ImageView mHeaderImage;
private String mName, mUserName, mEmail;
private int mColumnCount = 1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home);
mDatabase = FirebaseDatabase.getInstance();
mStorage = FirebaseStorage.getInstance();
mToolbar = (Toolbar) findViewById(R.id.action_bar);
setSupportActionBar(mToolbar);
mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
this, mDrawerLayout, mToolbar, R.string.navigation_drawer_open,
R.string.navigation_drawer_close);
mDrawerLayout.addDrawerListener(toggle);
toggle.syncState();
mNavigationView = (NavigationView) findViewById(R.id.nav_view);
mNavigationView.setNavigationItemSelectedListener(this);
getUserInfo();
View headerView = mNavigationView.getHeaderView(0);
mHeaderView = (TextView) headerView.findViewById(R.id.header_text);
mHeaderImage = (ImageView) headerView.findViewById(R.id.header_imageView);
// TODO: call method to retrieve data from db before adding any fragments
retrieveUserList();
}
@Override
public void onBackPressed() {
if (mDrawerLayout.isDrawerOpen(GravityCompat.START)) {
mDrawerLayout.closeDrawer(GravityCompat.START);
} else {
super.onBackPressed();
setTitle(getString(R.string.app_name));
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.toolbar_menu, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.action_create_post:
createPost();
return true;
case R.id.action_logout:
logout();
return true;
default:
// If we got here, the user's action was not recognized.
// Invoke the superclass to handle it.
return super.onOptionsItemSelected(item);
}
}
@Override
public boolean onNavigationItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.nav_first_fragment:
Toast.makeText(HomeActivity.this, R.string.drawer_item_1,
Toast.LENGTH_SHORT).show();
mDrawerLayout.closeDrawer(GravityCompat.START);
retrieveUserList();
return true;
case R.id.nav_second_fragment:
Toast.makeText(HomeActivity.this, R.string.drawer_item_2,
Toast.LENGTH_SHORT).show();
mDrawerLayout.closeDrawer(GravityCompat.START);
retrieveTagList();
return true;
}
return true;
}
@Override
public void onUserListFragmentInteraction(User item) {
getSupportActionBar().setTitle(item.mUsername);
retrievePostList(item.mUsername, USERNAME_DB_ORDER_BY);
}
@Override
public void onHashtagListFragmentInteraction(String item) {
getSupportActionBar().setTitle(item);
retrievePostList(item, TAG_DB_ORDER_BY);
}
@Override
public void onPostListFragmentInteraction(Post item, int selected) {
switch (selected) {
case 1:
downloadFile(item.mImagePath);
break;
case 2:
deletePost(item.mId);
deletePhoto(item.mImagePath);
deleteTag(item.mHashtag);
displayPostFragment();
break;
default:
break;
}
}
// get the current authorized user's information and store them
private void getUserInfo() {
FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
if (user != null) {
// Name, email address, and profile photo Url
mEmail = user.getEmail();
// Get the Username, based on the uid
String uid = user.getUid();
DatabaseReference userTable = mDatabase.getReference();
Query query =
userTable.child(USER_DB_PATH).orderByChild(ID_DB_ORDER_BY).equalTo(uid);
query.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot snapshot) {
for (DataSnapshot postSnapshot : snapshot.getChildren()) {
User user = postSnapshot.getValue(User.class);
mUserName = user.mUsername;
mName = user.mName;
}
// we can set the header once we've retrieved the username
setHeader(mUserName);
}
@Override
public void onCancelled(DatabaseError error) {
Log.d(HOME_TAG, error.getMessage());
}
});
}
}
private void setHeader(String str){
String header =
getString(R.string.nav_header_greetings_start) + str + getString(R.string.nav_header_greetings_end);
mHeaderView.setText(header);
}
private void setTitle(String title) {
getSupportActionBar().setTitle(title);
}
private void logout() {
FirebaseAuth.getInstance().signOut();
startActivity(new Intent(HomeActivity.this, LoginActivity.class));
finish();
}
private void createPost() {
Intent intent = new Intent(HomeActivity.this, CreatePostActivity.class);
intent.putExtra(EXTRA_USERNAME, mUserName);
startActivityForResult(intent, REQUEST_CREATE_POST);
}
// After user is done interacting with CreatePostActivity, we just display the list of users
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == REQUEST_CREATE_POST) {
if (resultCode == RESULT_OK) {
displayPostFragment();
}
else if (requestCode == RESULT_CANCELED) {
// don't need to do anything
}
}
}
/*
-------------------------------------------------------------------------------------------
START OF: RETRIEVING THE APPROPRIATE LIST DEPENDING ON WHAT USER CLICKED, THEN DISPLAY THEM
-------------------------------------------------------------------------------------------
*/
// this gets called when the user selects to view all users
// get all the users from user table in firebase, and add them to the recyclerview list
private void retrieveUserList() {
// TODO: implement query to retrieve all users from db
DatabaseReference userTable = mDatabase.getReference(USER_DB_PATH);
userTable.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot snapshot) {
ContentLists list = ContentLists.get(getApplicationContext());
List<User> userList = list.getUsers();
userList.clear();
for (DataSnapshot postSnapshot : snapshot.getChildren()) {
User user = postSnapshot.getValue(User.class);
if (!userList.contains(user)) {
userList.add(user);
}
}
displayUserFragment();
}
@Override
public void onCancelled(DatabaseError error) {
Log.d(HOME_TAG, error.getMessage());
}
});
}
// this gets called when the user selects to view all hashtags
// get all the hashtags from tag table in firebase, and add them to the recylerview list
private void retrieveTagList() {
// TODO: implement query to retrieve all hashtags from db
DatabaseReference hashtagTable = mDatabase.getReference(TAG_DB_PATH);
hashtagTable.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot snapshot) {
ContentLists list = ContentLists.get(getApplicationContext());
List<String> hashtagList = list.getHashtags();
hashtagList.clear();
for (DataSnapshot postSnapshot : snapshot.getChildren()) {
for (DataSnapshot snap : postSnapshot.getChildren()) {
String hashtag = snap.getValue(String.class);
if (!hashtagList.contains(hashtag)) {
hashtagList.add(hashtag);
}
}
}
displayTagFragment();
}
@Override
public void onCancelled(DatabaseError error) {
Log.d(HOME_TAG, error.getMessage());
}
});
}
// this gets called when the user selects to view all posts
// get all the posts from firebase, depending on username or tag, and add them to list
private void retrievePostList(String match, String childPath) {
DatabaseReference postTable = mDatabase.getReference();
Query query =
postTable.child(POST_DB_PATH).orderByChild(childPath).equalTo(match);
query.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot snapshot) {
ContentLists list = ContentLists.get(getApplicationContext());
List<Post> postList = list.getPosts();
postList.clear();
for (DataSnapshot postSnapshot : snapshot.getChildren()) {
Post post = postSnapshot.getValue(Post.class);
if (!postList.contains(post)) {
postList.add(post);
}
}
displayPostFragment();
}
@Override
public void onCancelled(DatabaseError error) {
Log.d(HOME_TAG, error.getMessage());
}
});
}
// after we have the list of users, we display them
private void displayUserFragment() {
FragmentManager manager = getSupportFragmentManager();
Fragment fragment = UserListFragment.newInstance(mColumnCount);
manager.beginTransaction()
.replace(R.id.fragment_container, fragment, FRAGMENT_1)
.commitAllowingStateLoss();
mNavigationView.setCheckedItem(R.id.nav_first_fragment);
setTitle(getString(R.string.app_name));
// attempt to keep track of fragment on backstack to properly setCheckedItem for Nav
// currently not working
// manager.addOnBackStackChangedListener(new FragmentManager.OnBackStackChangedListener() {
// @Override
// public void onBackStackChanged() {
// UserListFragment fragment =
// (UserListFragment) getSupportFragmentManager().findFragmentByTag(FRAGMENT_1);
// if (fragment != null && fragment.isVisible()) {
// mNavigationView.setCheckedItem(R.id.nav_first_fragment);
// }
// }
// });
}
// after we have the list of hashtags, we display them
private void displayTagFragment() {
FragmentManager manager = getSupportFragmentManager();
Fragment fragment = HashtagListFragment.newInstance(mColumnCount);
manager.beginTransaction()
.replace(R.id.fragment_container, fragment, FRAGMENT_2)
.addToBackStack(null)
.commitAllowingStateLoss();
setTitle(getString(R.string.all_tags));
// attempt to keep track of fragment on backstack to properly setCheckedItem for Nav
// currently not working
// manager.addOnBackStackChangedListener(new FragmentManager.OnBackStackChangedListener() {
// @Override
// public void onBackStackChanged() {
// HashtagListFragment fragment =
// (HashtagListFragment) getSupportFragmentManager().findFragmentByTag(FRAGMENT_2);
// if (fragment != null && fragment.isVisible() ) {
// mNavigationView.setCheckedItem(R.id.nav_second_fragment);
// }
// }
// });
}
// after we have the list of posts, we display them
private void displayPostFragment() {
FragmentManager manager = getSupportFragmentManager();
Fragment fragment = PostListFragment.newInstance(mColumnCount);
manager.beginTransaction()
.replace(R.id.fragment_container, fragment, FRAGMENT_3)
.addToBackStack(null)
.commitAllowingStateLoss();
}
/*
-------------------------------------------------------------------------------------------
END OF: RETRIEVING THE APPROPRIATE LIST DEPENDING ON WHAT USER CLICKED, THEN DISPLAY THEM
-------------------------------------------------------------------------------------------
*/
private void deletePost(String uid) {
mDatabase.getReference(POST_DB_PATH).child(uid).removeValue();
}
private void deleteTag(String tag) {
final DatabaseReference hashtagTable = mDatabase.getReference();
Query query =
hashtagTable.child(TAG_DB_PATH).orderByChild(TAG_DB_ORDER_BY).equalTo(tag);
query.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot snapshot) {
for (DataSnapshot postSnapshot : snapshot.getChildren()) {
String key = postSnapshot.getKey();
hashtagTable.child(TAG_DB_PATH).child(key).removeValue();
}
displayPostFragment();
}
@Override
public void onCancelled(DatabaseError error) {
Log.d(HOME_TAG, error.getMessage());
}
});
}
private void deletePhoto(String filePath) {
mStorage.getReference().child(filePath).delete().addOnSuccessListener(new OnSuccessListener<Void>() {
@Override
public void onSuccess(Void aVoid) {
displayPostFragment();
}
}).addOnFailureListener(new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
Toast.makeText(HomeActivity.this,
getString(R.string.delete_photo_unsuccessful),
Toast.LENGTH_SHORT).show();
}
});
}
private void downloadFile(final String fileName){
StorageReference storageRef = mStorage.getReference();
StorageReference downloadRef = storageRef.child(fileName);
final String path = DOWNLOAD_DIR+"/"+fileName;
final File fileNameOnDevice = new File(path);
downloadRef.getFile(fileNameOnDevice).addOnSuccessListener(
new OnSuccessListener<FileDownloadTask.TaskSnapshot>() {
@Override
public void onSuccess(FileDownloadTask.TaskSnapshot taskSnapshot) {
Toast.makeText(HomeActivity.this,
getString(R.string.download_successful),
Toast.LENGTH_SHORT).show();
galleryAddPic(path);
}
}).addOnFailureListener(new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception exception) {
Toast.makeText(HomeActivity.this,
getString(R.string.download_unsuccessful),
Toast.LENGTH_SHORT).show();
}
});
}
// add the photo to the device's default gallery app
private void galleryAddPic(String imageUrl) {
Intent mediaScanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
File file = new File(imageUrl);
Uri contentUri = Uri.fromFile(file);
mediaScanIntent.setData(contentUri);
this.sendBroadcast(mediaScanIntent);
}
}
| [
"TriDangContact@gmail.com"
] | TriDangContact@gmail.com |
dcbcb3e270c719736ce853653d67bf2e6e5e9c4c | 027e6dcd0c3309d68ec495fcd7f8514babc195f9 | /src/interview/WenJianLiu.java | 5296ad782e0c9a70c43fb985d801ce2c6b0ee39c | [] | no_license | iflytang/JavaProject | 2799d85f419c752c6a24479bafee6e13d0ddc0a6 | 9de89c8d00b14a6d971a2daf895b0edc8f5fbddb | refs/heads/master | 2023-08-21T18:10:32.192073 | 2021-09-22T07:49:05 | 2021-09-22T07:49:05 | 104,569,054 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,134 | java | package src.interview;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class WenJianLiu {
public static void main (String [] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String s = br.readLine();
String a = br.readLine();
long res = solution(s, a);
System.out.println(res);
}
public static long solution (String s, String a) {
int n = s.length();
int m = a.length();
for (int i = 0; i < m; i++) {
if (!s.contains(a.charAt(i) + "")) {
return -1;
}
}
int i = 0;
int j = 0;
long res = 0;
while (j < m) {
if (s.charAt(i) != a.charAt(j)) {
res++;
} else {
if (j == m - 1) {
return res;
}
j++;
}
if (i != n - 1) {
i++;
} else {
i = 0;
}
}
return res;
}
}
| [
"iflytang@qq.com"
] | iflytang@qq.com |
da317db6bef2e1eadc97bc2e2e4f74572a52d176 | 97cc9131183f56e9e41d20d42d478b299c6a5884 | /CoreLibrary/src/main/java/com/moppomobi/corelibrary/utils/SafeSharedPreferences.java | 185a2e7616488d59bd6418a03bd0345c05058525 | [] | no_license | mliumeng/LMNews | b45c57f6be5027a8364fb9eb319c8281fcc81bb2 | 1e8164989106f82416c3e1c972e38eacdb65f805 | refs/heads/master | 2021-06-18T08:47:16.419321 | 2017-07-03T14:55:07 | 2017-07-03T14:55:07 | 94,515,809 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,630 | java | package com.moppomobi.corelibrary.utils;
import android.annotation.TargetApi;
import android.content.SharedPreferences;
import android.os.Build;
import com.moppomobi.corelibrary.BuildConfig;
import java.util.Collections;
import java.util.Map;
import java.util.Set;
/**
* <ul>
* <li>Guard against ClassCastException in getters of SharedPreferences, return default value if type mismatched.</li>
* <li>Prevent anonymous class from being used in {@link #registerOnSharedPreferenceChangeListener(OnSharedPreferenceChangeListener)
* registerOnSharedPreferenceChangeListener()}</li>
* <li>Prevent the map return by getAll() and string set return by getStringSet() from modification.</li>
* </ul>
*
* @author Oasis
*/
public class SafeSharedPreferences implements SharedPreferences {
public static SharedPreferences wrap(final SharedPreferences prefs) {
if (prefs instanceof SafeSharedPreferences) return prefs;
return new SafeSharedPreferences(prefs);
}
private SafeSharedPreferences(final SharedPreferences aDelegate) {
mDelegate = aDelegate;
}
@Override public void registerOnSharedPreferenceChangeListener(final OnSharedPreferenceChangeListener listener) {
if (BuildConfig.DEBUG && listener.getClass().isAnonymousClass())
throw new Error("Never use anonymous inner class for listener, since it is weakly-referenced by SharedPreferences instance.");
mDelegate.registerOnSharedPreferenceChangeListener(listener);
}
@Override public void unregisterOnSharedPreferenceChangeListener(final OnSharedPreferenceChangeListener listener) {
mDelegate.unregisterOnSharedPreferenceChangeListener(listener);
}
@Override public String getString(final String key, final String defValue) {
try {
return mDelegate.getString(key, defValue);
} catch (final ClassCastException e) {
return defValue;
}
}
@Override public int getInt(final String key, final int defValue) {
try {
return mDelegate.getInt(key, defValue);
} catch (final ClassCastException e) {
return defValue;
}
}
@Override public long getLong(final String key, final long defValue) {
try {
return mDelegate.getLong(key, defValue);
} catch (final ClassCastException e) {
return defValue;
}
}
@Override public float getFloat(final String key, final float defValue) {
try {
return mDelegate.getFloat(key, defValue);
} catch (final ClassCastException e) {
return defValue;
}
}
@Override public boolean getBoolean(final String key, final boolean defValue) {
try {
return mDelegate.getBoolean(key, defValue);
} catch (final ClassCastException e) {
return defValue;
}
}
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
@Override public Set<String> getStringSet(final String key, final Set<String> defValues) {
try {
return Collections.unmodifiableSet(mDelegate.getStringSet(key, defValues)); // Enforce the immutability
} catch (final ClassCastException e) {
return defValues;
}
}
@Override public Map<String, ?> getAll() {
return Collections.unmodifiableMap(mDelegate.getAll()); // Enforce the immutability
}
@Override public boolean contains(final String key) { return mDelegate.contains(key); }
@Override public Editor edit() { return mDelegate.edit(); }
private final SharedPreferences mDelegate;
}
| [
"liumengchn@gmail.com"
] | liumengchn@gmail.com |
f1ecfeee16a2e851c1cb0faf0bea1603da6a210b | 5a733c162626920735b7dcb70b67f813bc940179 | /.svn/pristine/79/798789d2545f3d4bd9fb584b65f6c86d486a399c.svn-base | 330c6051dc3da16b99cca465fa633c01e16a095f | [] | no_license | sandeepsinghky/ProjectA | 085cb86b06794e6626677cbfdd8296bab0320656 | ba1da62cb588d762807e7d98b95bed53990f9190 | refs/heads/master | 2020-04-02T15:29:34.029121 | 2018-10-24T21:12:26 | 2018-10-24T21:12:26 | 154,569,563 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,055 | package nc.dhhs.nccss.acts.ecoa.web.service;
/**
* @author Vijay Peddapalli
*
* capture user specific attributes like last login etc.
*/
public interface UsageService
{
public static int EXPIRED = 0;
public static int LOGGED_OUT = 1;
/**
* Saves usage instance when the user successfully logs into the
* application.
*
* @param usage
* usage to insert
* @return if save was successful
* @throws Exception
*/
//public boolean saveUsage(Usage usage) throws Exception;
/**
* Gets maximum usageId from the database, this is useful to insert new
* usageId.
*
* @return
* @throws Exception
*/
public long getMaxUsageId() throws Exception;
/**
* Used to update usage details during application log out.
*
* @param usage
* @throws Exception
*/
//public boolean updateUsage(Usage usage) throws Exception;
/**
* Retrieves usage instance for a given usageId.
*
* @param usgaeId
* @return
* @throws DAOException
*/
//public Usage getUsage(long usageId) throws Exception;
}
| [
"sandeepky@gmail.com"
] | sandeepky@gmail.com | |
ab0e6862f5325bd5ec1f4da1131b00b4ea165c18 | 9281a0e777d024b97b3760fc83bb2b7b97485973 | /Basics/src/com/mr/markerbasicexample/Marker.java | d72265127dbf1246da12f98efc7aefd16b626f41 | [] | no_license | soundaryakamasani/soundarya | 44b369ddf560f226097da67fc7823d02589dae34 | 6640815942b1a7dbae12e37fb95c99dd07a800ea | refs/heads/master | 2020-03-14T21:53:33.557575 | 2018-05-02T06:56:28 | 2018-05-02T06:56:28 | 131,808,302 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 204 | java | package com.mr.markerbasicexample;
public class Marker {
String color;
int price=50;
String brand="camlin";
void showDetails(){
System.out.println(color + " "+price+" "+brand);
}
}
| [
"mahesh@Kishore"
] | mahesh@Kishore |
2fe76ef741e33d6f6f6ed98b6de27c5d2b50de93 | 5160ed167fd99aefd795497981dabac7816bf947 | /garagem-jpa/src/main/java/com/dextraining/garagem/dominio/veiculo/Veiculo.java | 011b1d9f5ffaf4cd95a63607157784d8c539a176 | [] | no_license | Augusto-Goncalves-Github/CursoJava | 646f545b8119cff22993ca020496445bf2531b8d | c9035309c06f41eb96d0f5787caf87438dc01031 | refs/heads/master | 2021-01-17T17:14:39.305279 | 2016-11-05T19:33:38 | 2016-11-05T19:33:38 | 69,101,261 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,148 | java | package com.dextraining.garagem.dominio.veiculo;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
// TODO: Adicionar anotacoes do JPA na classe
@Entity
public class Veiculo {
// TODO: Adicionar chave primaria
// TODO: Adicionar anotacoes do JPA nos atributos
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
@Column
private String marca;
@Column
private String modelo;
@Column(unique = true)
private String placa;
@Column(precision = 4)
private int ano;
@Column(precision = 2)
private double preco;
public Veiculo() {
}
public Veiculo(String marca, String modelo, String placa, int ano, double preco) {
super();
this.marca = marca;
this.modelo = modelo;
this.placa = placa;
this.ano = ano;
this.preco = preco;
}
public String getMarca() {
return marca;
}
public void setMarca(String marca) {
this.marca = marca;
}
public String getModelo() {
return modelo;
}
public void setModelo(String modelo) {
this.modelo = modelo;
}
public String getPlaca() {
return placa;
}
public void setPlaca(String placa) {
this.placa = placa;
}
public int getAno() {
return ano;
}
public void setAno(int ano) {
this.ano = ano;
}
public double getPreco() {
return preco;
}
public void setPreco(double preco) {
this.preco = preco;
}
@Override
public String toString() {
return "Veiculo [marca=" + marca + ", modelo=" + modelo + ", placa=" + placa + ", ano=" + ano + ", preco="
+ preco + "]";
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((placa == null) ? 0 : placa.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Veiculo other = (Veiculo) obj;
if (placa == null) {
if (other.placa != null)
return false;
} else if (!placa.equals(other.placa))
return false;
return true;
}
}
| [
"augusto78.cps@gmail.com"
] | augusto78.cps@gmail.com |
2bbf39cfc954988666080da1d40a72cc0207e16b | b890bed733fb559ea89fd4960fad1b2d4a8e4f54 | /location/src/main/java/com/jtv/locationwork/entity/Turnout.java | ba07779ce8f749475a1e83d030826c68720a26f0 | [] | no_license | mianjuhou/LocationWork | 26fb8ab8ca08a8946bafe486e9fb904c521457df | 1341f1366861d911e27b973d59df26b7fbbf21d0 | refs/heads/master | 2020-12-31T01:22:41.800141 | 2016-04-12T09:47:02 | 2016-04-12T09:47:02 | 56,050,789 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 480 | java | package com.jtv.locationwork.entity;
import java.util.List;
public class Turnout {
private String assetattrid;
private List<?> offsetcfg;
public void setAssetattrid(String assetattrid) {
this.assetattrid = assetattrid;
}
public void setOffsetcfg(List<?> offsetcfg) {
this.offsetcfg = offsetcfg;
}
public String getAssetattrid() {
return assetattrid;
}
public List<?> getOffsetcfg() {
return offsetcfg;
}
} | [
"mianjuhou@163.com"
] | mianjuhou@163.com |
4dbfc456c942217ee03d55023d2f1fd416a678f9 | 9c6b06674811389bf6a10e22baef266e4559abe3 | /src/main/java/com/wefine/app/po/NotClassesSystem.java | 777f3acea7c48b5cd8cbdd5249d858da88b2302b | [
"MIT"
] | permissive | wefine/mybatis-attendance | c125004f5d7832fee9e91dc630b922ad3d01333c | 89e91b31a872f4ce99b7c13cd271ec71bc6cbd3c | refs/heads/master | 2021-01-20T05:34:30.141266 | 2017-04-29T23:31:17 | 2017-04-30T01:04:43 | 89,792,678 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,940 | java | package com.wefine.app.po;
public class NotClassesSystem {
private Integer notclassessystemid;
private Integer fulldatetime;
private Integer overtimeforover;
private Integer longworktime;
private Integer longworktimetozero;
private Integer systemid;
public NotClassesSystem(Integer notclassessystemid, Integer fulldatetime, Integer overtimeforover, Integer longworktime, Integer longworktimetozero, Integer systemid) {
this.notclassessystemid = notclassessystemid;
this.fulldatetime = fulldatetime;
this.overtimeforover = overtimeforover;
this.longworktime = longworktime;
this.longworktimetozero = longworktimetozero;
this.systemid = systemid;
}
public NotClassesSystem() {
super();
}
public Integer getSystemid() {
return systemid;
}
public void setSystemid(Integer systemid) {
this.systemid = systemid;
}
public Integer getNotclassessystemid() {
return notclassessystemid;
}
public void setNotclassessystemid(Integer notclassessystemid) {
this.notclassessystemid = notclassessystemid;
}
public Integer getFulldatetime() {
return fulldatetime;
}
public void setFulldatetime(Integer fulldatetime) {
this.fulldatetime = fulldatetime;
}
public Integer getOvertimeforover() {
return overtimeforover;
}
public void setOvertimeforover(Integer overtimeforover) {
this.overtimeforover = overtimeforover;
}
public Integer getLongworktime() {
return longworktime;
}
public void setLongworktime(Integer longworktime) {
this.longworktime = longworktime;
}
public Integer getLongworktimetozero() {
return longworktimetozero;
}
public void setLongworktimetozero(Integer longworktimetozero) {
this.longworktimetozero = longworktimetozero;
}
}
| [
"wang.xiaoren@zte.com.cn"
] | wang.xiaoren@zte.com.cn |
3f5c5f6ea07d4e8d184147273092e7faec0f9eb3 | ef64b8f86540e154e431ec7ce411c16ea02c5bd7 | /app/src/androidTest/java/com/gitdemo1/ExampleInstrumentedTest.java | 08f4cc8f5ea8693ea3562ceb575f401f3b2bd9fa | [] | no_license | dtlderek/Test | c18770e1d50a05ba09157560f45f387ffd7edad2 | 58100e4a6282ecb3be98dc7c42ef2413b250d04d | refs/heads/master | 2021-01-23T09:48:36.930321 | 2017-09-06T13:28:46 | 2017-09-06T13:28:46 | 102,603,421 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 728 | java | package com.gitdemo1;
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.gitdemo1", appContext.getPackageName());
}
}
| [
"derek@droptechnolab.com"
] | derek@droptechnolab.com |
f0dc6c2dd89465f4fe524ec70cf5fb51c41aabf7 | 7d3abacf30de336a170b2148b9e54aa0b9811e87 | /HelloF.java | a3e4ad5e055f297110b4ffcbd9d7464b0c491de8 | [] | no_license | urimeir/Basic-Java-Programs | b3349459567c576538323e18b46f13763c4f4da0 | 6c7262270697833ed9a955901241ac28d0958cb1 | refs/heads/master | 2020-04-02T09:55:09.016378 | 2018-10-23T11:31:10 | 2018-10-23T11:31:10 | 154,316,348 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 130 | java | public class HelloF {
public static void main (String[] args) {
System.out.println ("Hello My Friend: "+args[0]+"!");
}
} | [
"urimeir@gmail.com"
] | urimeir@gmail.com |
69b1e6a672cdaeb72d67c1bf68fa87c77e591d4b | c8cae4f7285f30c90cadbf46f436f43f4f615794 | /app/src/main/java/com/ndfitnessplus/Activity/CourseWiseAttendanceDetailsActivity.java | ba5d7b7826ecaf6f5e50877c1918a41a3812b38a | [] | no_license | supriya9792/NdFitness | aafd681e66fa0d6a9b636711042271814b60afd6 | 7d71743581a41c3d3cd39a254c337d66a46da19c | refs/heads/master | 2020-05-09T21:54:23.894838 | 2020-03-19T13:32:06 | 2020-03-19T13:32:06 | 181,449,190 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 18,585 | java | package com.ndfitnessplus.Activity;
import android.app.ProgressDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.net.Uri;
import android.os.AsyncTask;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.support.v7.widget.Toolbar;
import android.util.Log;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.ProgressBar;
import android.widget.TextView;
import android.widget.Toast;
import com.bumptech.glide.Glide;
import com.bumptech.glide.request.RequestOptions;
import com.mikhaellopez.circularimageview.CircularImageView;
import com.ndfitnessplus.Adapter.AttendanceDetailsAdapter;
import com.ndfitnessplus.Adapter.BalanceTrasactionAdapter;
import com.ndfitnessplus.Model.AttendanceDetailList;
import com.ndfitnessplus.Model.BalanceTrasactionList;
import com.ndfitnessplus.Model.CourseList;
import com.ndfitnessplus.R;
import com.ndfitnessplus.Utility.ServerClass;
import com.ndfitnessplus.Utility.ServiceUrls;
import com.ndfitnessplus.Utility.SharedPrefereneceUtil;
import com.ndfitnessplus.Utility.Utility;
import com.ndfitnessplus.Utility.ViewDialog;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
public class CourseWiseAttendanceDetailsActivity extends AppCompatActivity {
ViewDialog viewDialog;
String invoice_id;
String member_id;
String FinancialYear;
private RecyclerView recyclerView;
private LinearLayoutManager layoutManager;
ProgressBar progressBar;
View nodata;
AttendanceDetailsAdapter adapter;
ArrayList<AttendanceDetailList> subListArrayList = new ArrayList<AttendanceDetailList>();
AttendanceDetailList subList;
public final String TAG = CourseWiseAttendanceDetailsActivity.class.getName();
ImageButton backmonth, nextmonth;
private ProgressDialog pd;
TextView nameTV,regdateTV,packagenameTV,start_to_end_dateTV,rateTV,paidTV,balanceTV,contactTV,executiveNameTV,durationTv,invoice_idTV;
ImageView contactIV;
CircularImageView imageView;
CourseList filterArrayList;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE,
WindowManager.LayoutParams.FLAG_SECURE);
setContentView(R.layout.activity_course_wise_attendance_details);
initToolbar();
}
private void initToolbar() {
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setTitle(getResources().getString(R.string.attendance_details));
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
initComponent();
}
private void initComponent(){
contactTV = (TextView) findViewById(R.id.contactTV);
rateTV = (TextView) findViewById(R.id.rateTV);
nameTV = (TextView) findViewById(R.id.nameTV);
contactIV = (ImageView) findViewById(R.id.contactIV);
imageView=(CircularImageView) findViewById(R.id.input_image);
nodata=findViewById(R.id.nodata);
viewDialog = new ViewDialog(this);
regdateTV = (TextView) findViewById(R.id.reg_dateTV);
packagenameTV = (TextView) findViewById(R.id.package_nameTV);
start_to_end_dateTV = (TextView) findViewById(R.id.start_to_end_date_TV);
paidTV = (TextView) findViewById(R.id.paidTV);
executiveNameTV=(TextView)findViewById(R.id.excecutive_nameTV);
balanceTV = (TextView) findViewById(R.id.balanceTV);
durationTv = (TextView) findViewById(R.id.duration);
invoice_idTV = (TextView) findViewById(R.id.invoice_idTV);
progressBar=findViewById(R.id.progressBar);
recyclerView = (RecyclerView) findViewById(R.id.recycler_view);
layoutManager = new LinearLayoutManager(this);
recyclerView.setLayoutManager(layoutManager);
recyclerView.setHasFixedSize(true);
Intent intent = getIntent();
if(intent!=null){
invoice_id = intent.getStringExtra("invoice_id");
FinancialYear =intent.getStringExtra("financial_yr");
member_id = intent.getStringExtra("member_id");
coursedetailsclass();
attendanceclass();
}
}
private void coursedetailsclass() {
CourseWiseAttendanceDetailsActivity. CourseDetailsTrackclass ru = new CourseWiseAttendanceDetailsActivity. CourseDetailsTrackclass();
ru.execute("5");
}
class CourseDetailsTrackclass extends AsyncTask<String, Void, String> {
ServerClass ruc = new ServerClass();
@Override
protected void onPreExecute() {
super.onPreExecute();
Log.v(TAG, "onPreExecute");
}
@Override
protected void onPostExecute(String response) {
super.onPostExecute(response);
Log.v(TAG, String.format("onPostExecute :: response = %s", response));
CourseDetailsDetails(response);
}
@Override
protected String doInBackground(String... params) {
HashMap<String, String> CourseDetailsDetails = new HashMap<String, String>();
CourseDetailsDetails.put("comp_id", SharedPrefereneceUtil.getSelectedBranchId(CourseWiseAttendanceDetailsActivity.this));
CourseDetailsDetails.put("member_id",member_id );
CourseDetailsDetails.put("invoice_id",invoice_id );
CourseDetailsDetails.put("financial_yr",FinancialYear );
Log.v(TAG, String.format("doInBackground :: company id = %s", SharedPrefereneceUtil.getSelectedBranchId(CourseWiseAttendanceDetailsActivity.this)));
Log.v(TAG, String.format("doInBackground :: member_id id = %s", member_id));
String domainurl=SharedPrefereneceUtil.getDomainUrl(CourseWiseAttendanceDetailsActivity.this);
CourseDetailsDetails.put("action","show_course_details_by_member_id");
String loginResult = ruc.sendPostRequest(domainurl+ServiceUrls.LOGIN_URL, CourseDetailsDetails);
return loginResult;
}
}
private void CourseDetailsDetails(String jsonResponse) {
Log.v(TAG, String.format("JsonResponseOperation :: jsonResponse = %s", jsonResponse));
if (jsonResponse != null) {
try {
JSONObject object = new JSONObject(jsonResponse);
String success = object.getString(getResources().getString(R.string.success));
if (success.equalsIgnoreCase(getResources().getString(R.string.two))) {
progressBar.setVisibility(View.GONE);
if (object != null) {
JSONArray jsonArrayResult = object.getJSONArray("result");
ArrayList<BalanceTrasactionList> item = new ArrayList<BalanceTrasactionList>();
if (jsonArrayResult != null && jsonArrayResult.length() > 0) {
for (int i = 0; i < jsonArrayResult.length(); i++) {
subList = new AttendanceDetailList();
JSONObject jsonObj = jsonArrayResult.getJSONObject(i);
if (jsonObj != null) {
String name = jsonObj.getString("Name");
String RegistrationDate = jsonObj.getString("RegistrationDate");
String Contact = jsonObj.getString("Contact");
String Package_Name = jsonObj.getString("Package_Name");
String ExecutiveName = jsonObj.getString("ExecutiveName");
String Duration_Days = jsonObj.getString("Duration_Days");
String Session = jsonObj.getString("Session");
String Member_ID = jsonObj.getString("Member_ID");
String Image = jsonObj.getString("Image");
String Start_Date = jsonObj.getString("Start_Date");
String End_Date = jsonObj.getString("End_Date");
String Rate = jsonObj.getString("Rate");
String Final_paid = jsonObj.getString("Final_paid");
String Final_Balance = jsonObj.getString("Final_Balance");
String Invoice_ID = jsonObj.getString("Invoice_ID");
String Tax = jsonObj.getString("Tax");
String Member_Email_ID = jsonObj.getString("Member_Email_ID");
String Financial_Year = jsonObj.getString("Financial_Year");
String reg_date= Utility.formatDate(RegistrationDate);
String dur_sess="Duration:"+Duration_Days+","+"Session:"+Session;
contactTV.setText(Contact);
nameTV.setText(name);
String fpaid="₹ "+Final_paid;
String ttl="₹ "+Rate;
rateTV.setText(ttl);
regdateTV.setText(reg_date);
packagenameTV.setText(Package_Name);
durationTv.setText(dur_sess);
paidTV.setText(fpaid);
executiveNameTV.setText(ExecutiveName);
balanceTV.setText(Final_Balance);
invoice_id=Invoice_ID;
invoice_idTV.setText(invoice_id);
member_id=Member_ID;
String domainurl= SharedPrefereneceUtil.getDomainUrl(CourseWiseAttendanceDetailsActivity.this);
String url= domainurl+ServiceUrls.IMAGES_URL + Image;
RequestOptions requestOptions = new RequestOptions();
requestOptions.placeholder(R.drawable.nouser);
requestOptions.error(R.drawable.nouser);
Glide.with(this)
.setDefaultRequestOptions(requestOptions)
.load(url).into(imageView);
}
}
} else if (jsonArrayResult.length() == 0) {
System.out.println("No records found");
}
}
}
} catch (JSONException e) {
e.printStackTrace();
android.app.AlertDialog.Builder builder = new android.app.AlertDialog.Builder(CourseWiseAttendanceDetailsActivity.this);
builder.setMessage(R.string.server_exception);
builder.setPositiveButton(R.string.ok, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.dismiss();
}
});
android.app.AlertDialog dialog = builder.create();
dialog.setCancelable(false);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.show();
}
}
}
private void attendanceclass() {
CourseWiseAttendanceDetailsActivity.AttendanceTrackclass ru = new CourseWiseAttendanceDetailsActivity.AttendanceTrackclass();
ru.execute("5");
}
class AttendanceTrackclass extends AsyncTask<String, Void, String> {
ServerClass ruc = new ServerClass();
@Override
protected void onPreExecute() {
super.onPreExecute();
Log.v(TAG, "onPreExecute");
viewDialog.showDialog();
}
@Override
protected void onPostExecute(String response) {
super.onPostExecute(response);
Log.v(TAG, String.format("onPostExecute :: show_balance_trasaction_details = %s", response));
viewDialog.hideDialog();
AttendanceDetails(response);
}
@Override
protected String doInBackground(String... params) {
HashMap<String, String> AttendanceDetails = new HashMap<String, String>();
AttendanceDetails.put("comp_id", SharedPrefereneceUtil.getSelectedBranchId(CourseWiseAttendanceDetailsActivity.this));
AttendanceDetails.put("member_id",member_id );
AttendanceDetails.put("invoice_id",invoice_id );
AttendanceDetails.put("action","show_attendance");
String domainurl=SharedPrefereneceUtil.getDomainUrl(CourseWiseAttendanceDetailsActivity.this);
String loginResult = ruc.sendPostRequest(domainurl+ServiceUrls.LOGIN_URL, AttendanceDetails);
return loginResult;
}
}
private void AttendanceDetails(String jsonResponse) {
Log.v(TAG, String.format("JsonResponseOperation :: jsonResponse = %s", jsonResponse));
if (jsonResponse != null) {
try {
JSONObject object = new JSONObject(jsonResponse);
String success = object.getString(getResources().getString(R.string.success));
if (success.equalsIgnoreCase(getResources().getString(R.string.two))) {
progressBar.setVisibility(View.GONE);
if (object != null) {
JSONArray jsonArrayResult = object.getJSONArray("result");
ArrayList<AttendanceDetailList> item = new ArrayList<AttendanceDetailList>();
if (jsonArrayResult != null && jsonArrayResult.length() > 0) {
for (int i = 0; i < jsonArrayResult.length(); i++) {
subList = new AttendanceDetailList();
JSONObject jsonObj = jsonArrayResult.getJSONObject(i);
if (jsonObj != null) {
String Name = jsonObj.getString("Name");
String Contact = jsonObj.getString("Contact");
String PackageName = jsonObj.getString("PackageName");
String InDateTime = jsonObj.getString("InDateTime");
String AttendanceDate = jsonObj.getString("AttendanceDate");
String MemberID = jsonObj.getString("MemberID");
String Remaining_Session = jsonObj.getString("Remaining_Session");
String Start_Date = jsonObj.getString("Start_Date");
String End_Date = jsonObj.getString("End_Date");
String Attendance_Mode = jsonObj.getString("Attendance_Mode");
String[] timearr=InDateTime.split(" ");
SimpleDateFormat _24HourSDF = new SimpleDateFormat("HH:mm:ss");
SimpleDateFormat _12HourSDF = new SimpleDateFormat("hh:mm a");
Date _24HourDt = null;
try {
if(timearr[1]!=null)
_24HourDt = _24HourSDF.parse(timearr[1]);
} catch (ParseException e) {
e.printStackTrace();
}
System.out.println(_24HourDt);
System.out.println(_12HourSDF.format(_24HourDt));
String format12=_12HourSDF.format(_24HourDt);
subList.setTime(format12);
String adate=Utility.formatDate(AttendanceDate);
subList.setAttendanceDate(adate);
subList.setAttendanceMode(Attendance_Mode);
item.add(subList);
adapter = new AttendanceDetailsAdapter( item,CourseWiseAttendanceDetailsActivity.this);
recyclerView.setAdapter(adapter);
}
}
} else if (jsonArrayResult.length() == 0) {
System.out.println("No records found");
}
}
}else if (success.equalsIgnoreCase(getResources().getString(R.string.zero))){
nodata.setVisibility(View.VISIBLE);
}
} catch (JSONException e) {
e.printStackTrace();
android.app.AlertDialog.Builder builder = new android.app.AlertDialog.Builder(CourseWiseAttendanceDetailsActivity.this);
builder.setMessage(R.string.server_exception);
builder.setPositiveButton(R.string.ok, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.dismiss();
}
});
android.app.AlertDialog dialog = builder.create();
dialog.setCancelable(false);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.show();
}
}
}
@Override
public boolean onSupportNavigateUp(){
finish();
return true;
}
@Override
public void onBackPressed() {
finish();
}
}
| [
"supriyab9792@gmail.com"
] | supriyab9792@gmail.com |
8480a345d71fd5d728e1090f48c3f2e2b50e6929 | 999b0fb27c312528b53d16a99905069ef74cdc16 | /src/org/dadacoalition/yedit/template/YAMLContentType.java | bb7c395162734f90b9341d7643b3f6269448b203 | [] | no_license | helospark/kube-editor | db29c11fa3dfb2c9065c72cc774a7083ea61e17a | 3156db767649d137921ab576db7caf25a24ee453 | refs/heads/master | 2020-06-13T05:40:00.528364 | 2019-07-06T15:06:04 | 2019-07-06T15:06:04 | 194,557,015 | 1 | 1 | null | 2019-08-21T21:47:32 | 2019-06-30T20:13:47 | Java | UTF-8 | Java | false | false | 1,457 | java | /*******************************************************************************
* Copyright (c) 2015 Øystein Idema Torget 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
*
* Contributors:
* Øystein Idema Torget and others
*******************************************************************************/
package org.dadacoalition.yedit.template;
import org.eclipse.jface.text.templates.GlobalTemplateVariables;
import org.eclipse.jface.text.templates.TemplateContextType;
public class YAMLContentType extends TemplateContextType {
public static final String YAML_CONTENT_TYPE = "org.dadacoalition.yedit.template.yaml";
public YAMLContentType(){
addGlobalResolvers();
}
private void addGlobalResolvers() {
addResolver(new GlobalTemplateVariables.Cursor());
addResolver(new GlobalTemplateVariables.WordSelection());
addResolver(new GlobalTemplateVariables.LineSelection());
addResolver(new GlobalTemplateVariables.Dollar());
addResolver(new GlobalTemplateVariables.Date());
addResolver(new GlobalTemplateVariables.Year());
addResolver(new GlobalTemplateVariables.Time());
addResolver(new GlobalTemplateVariables.User());
}
}
| [
"helospark@gmail.com"
] | helospark@gmail.com |
30115a91678e227e911776ddcb9aa3d4e9fdaa74 | e6c9f28cdb6fcc99a4c84a1661d68fce463d4a1a | /app/src/test/java/com/example/gamegoroda/UITests/CommonMethods.java | 8e8a22a4f0678c76d9070039da24b798cf53e866 | [] | no_license | Telelichko/testing_mobile_application | d58c5f08de8a472c7f7dbff93dd2e37aff5e991c | 66f658710378317a6d4cc813e4d50343e62a5fd7 | refs/heads/master | 2022-12-31T16:01:14.720902 | 2020-10-25T16:44:29 | 2020-10-25T16:44:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,669 | java | package com.example.gamegoroda.UITests;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.List;
import java.util.concurrent.TimeUnit;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.remote.DesiredCapabilities;
import io.appium.java_client.AppiumDriver;
public class CommonMethods {
public static AppiumDriver driver;
public static void setUp(){
DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setCapability("deviceName","Nexus 5 (Google)");
capabilities.setCapability("avd", "Nexus_5_API_28");
capabilities.setCapability("platformName", "Android");
capabilities.setCapability("platformVersion", "9.0");
capabilities.setCapability("deviceName","emulator-5554");
capabilities.setCapability("appPackage", "com.example.gamegoroda");
capabilities.setCapability("appActivity", "com.example.gamegoroda.MenuActivity");
//Instantiate Appium Driver
try {
driver = new AppiumDriver(new URL("http://127.0.0.1:4723/wd/hub"), capabilities);
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
System.out.println(driver);
} catch (MalformedURLException e) {
System.out.println(driver);
System.out.println(e.getMessage());
}
}
public static boolean is_exist_element(By elementSelector) {
List<WebElement> elements = driver.findElements(elementSelector);
return elements.size() > 0;
}
public static WebElement wait_element(By elementSelector) throws InterruptedException {
int expectation_max = 10;
int expectation_one_iteration = 1;
for(int i = 0; i < expectation_max; i++){
if(is_exist_element(elementSelector)){
return driver.findElement(elementSelector);
}
Thread.sleep(expectation_one_iteration);
}
throw new InterruptedException("Element with XPath \""+ elementSelector +"\" doesn't appeared during "+
expectation_max * expectation_one_iteration +" millis.");
}
public static boolean getting_opposite_visible(By elementSelector, boolean visible) throws Exception {
int max_expectation = 10;
int expectation_one_iteration = 10;
for(int i = 0; i < max_expectation; i++){
boolean visible_next = is_exist_element(elementSelector);
if(visible_next != visible){
return true;
}
Thread.sleep(expectation_one_iteration);
}
return false;
}
public static void go_to_game_page() throws Exception {
WebElement button_start = wait_element(DomHelper.button_new_game);
button_start.click();
// boolean element_disappear = getting_opposite_visible(DomHelper.button_new_game, true);
// if(!element_disappear){
// throw new InterruptedException("Button \""+ button_start.getText() +"\" doesn't disappear.");
// }
}
public static void go_to_new_game_page(String new_game_name) throws Exception {
go_to_game_page();
By button_new_game_by = null;
if(new_game_name == Constants.cities){
button_new_game_by = DomHelper.button_cities;
}else if(new_game_name == Constants.countries){
button_new_game_by = DomHelper.button_countries;
}else if(new_game_name == Constants.names){
button_new_game_by = DomHelper.button_names;
}else{
throw new Exception("Selected non-existent game.");
}
WebElement button_new_game = wait_element(button_new_game_by);
button_new_game.click();
// boolean element_disappear = getting_opposite_visible(button_new_game_by, true);
// if(!element_disappear){
// throw new Exception("Button \""+ button_new_game.getText() +"\" doesn't disappear.");
// }
}
public static void go_to_win_loss_page(String new_game_name) throws Exception {
go_to_new_game_page(new_game_name);
WebElement button_surrender = wait_element(DomHelper.button_surrender);
button_surrender.click();
// boolean element_disappear = getting_opposite_visible(DomHelper.button_surrender, true);
// if(!element_disappear){
// throw new Exception("Button \""+ button_surrender.getText() +"\" doesn't disappear.");
// }
}
public static void End() {
driver.quit();
}
} | [
"telelichko@yandex.ru"
] | telelichko@yandex.ru |
1e0ad7db06261372a256834ed391ff6bf2c7d632 | b2c930e8a8915b18bd125a1cdc111c686bea22d7 | /app/src/main/java/adapters/MyViewPagerAdapter.java | de28982a46a5de313b19dd57f5094031c6543e9d | [] | no_license | libin-Android/ShareSDKLoginAndShare | e5039b25fa3b7072b9da75afe447e02adc954b11 | 6407fc810615e4f0dc2bd601b3149747a4a8000e | refs/heads/master | 2020-12-30T17:10:34.385215 | 2017-05-15T07:23:43 | 2017-05-15T07:23:43 | 91,058,095 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 870 | java | package adapters;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import java.util.List;
/**
* viewpager的adapter
*
* Created by 李膑 on 2016/7/14.
*/
public class MyViewPagerAdapter extends FragmentPagerAdapter {
List<Fragment> list;
private List<String> list_Title; //tab名的列表
public MyViewPagerAdapter(FragmentManager fm,List<Fragment> list,List<String> list_Title) {
super(fm);
this.list=list;
this.list_Title=list_Title;
}
@Override
public Fragment getItem(int position) {
return list.get(position);
}
@Override
public int getCount() {
return list.size();
}
@Override
public CharSequence getPageTitle(int position) {
return list_Title.get(position);
}
}
| [
"825783131@qq.com"
] | 825783131@qq.com |
e36c562aeb3cf1b65ed38e58fa000f9d114edd9b | e6f761925a03f51d637bb4285507d8d0e869c4da | /src/lv/autentica/models/GameRound.java | 105e15fe9237b30c215269c489ebb79ce2eab3a4 | [] | no_license | emsyzz/the-game | 5085d3dbede8eb7ace5937e5181fc955edb6d71e | 186f5592606718cb2f17b3221486bb6a452e3569 | refs/heads/master | 2020-02-26T14:13:31.092728 | 2016-09-18T20:48:27 | 2016-09-18T20:48:27 | 68,356,216 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 770 | java | package lv.autentica.models;
public class GameRound
{
private Team teamA;
private Team teamB;
private Integer teamAScore = 0;
private Integer teamBScore = 0;
public GameRound(Team teamA, Team teamB)
{
this.teamA = teamA;
this.teamB = teamB;
}
public Team getTeamA()
{
return teamA;
}
public Team getTeamB()
{
return teamB;
}
public Integer getTeamAScore()
{
return teamAScore;
}
public void setTeamAScore(Integer teamAScore)
{
this.teamAScore = teamAScore;
}
public Integer getTeamBScore()
{
return teamBScore;
}
public void setTeamBScore(Integer teamBScore)
{
this.teamBScore = teamBScore;
}
}
| [
"emsynet@gmail.com"
] | emsynet@gmail.com |
a5261b1a3d1858a33ffa64032e1a1a738840acae | e1603bbff4fd8b37c7576af840c828d1e097fc8b | /sendmoney.java | 2da98f4b8a8c40b7fa289a18dd9fe1642246feca | [] | no_license | nishntbnsl24/Bank | 4da3364833ab10758b5c1ecb7ce8b867d97ce3f4 | e14b2839255cc725b52cb1857726ddd68ea28776 | refs/heads/master | 2020-06-14T18:12:08.206789 | 2019-07-03T15:38:02 | 2019-07-03T15:38:02 | 195,082,840 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 11,047 | java |
import java.sql.*;
import java.sql.DriverManager;
import java.sql.Statement;
import javax.swing.JOptionPane;
import java.util.Date;
/*
* 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.
*/
/**
*
* @author Nishant
*/
public class sendmoney extends javax.swing.JFrame {
/**
* Creates new form sendmoney
*/
long senderaccountnumber;
double senderoldbalance,sendernewbalance;
public sendmoney() {
initComponents();
}
public sendmoney(ResultSet result)
{
try{senderaccountnumber=Long.parseLong(result.getString("account_number"));
senderoldbalance=Double.parseDouble(result.getString("balance"));}catch(Exception e){JOptionPane.showMessageDialog(this, e);}
initComponents();
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
jButton1 = new javax.swing.JButton();
jTextField1 = new javax.swing.JTextField();
jTextField2 = new javax.swing.JTextField();
jSeparator1 = new javax.swing.JSeparator();
jButton2 = new javax.swing.JButton();
setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
setLocation(new java.awt.Point(400, 50));
jLabel1.setText("Send Money");
jLabel2.setText("Account Number");
jLabel3.setText("Amount");
jButton1.setText("Send");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
jButton2.setText("Back");
jButton2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton2ActionPerformed(evt);
}
});
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addGap(59, 59, 59)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel3)
.addComponent(jLabel2))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 48, Short.MAX_VALUE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(jButton1)
.addComponent(jTextField1, javax.swing.GroupLayout.DEFAULT_SIZE, 100, Short.MAX_VALUE)
.addComponent(jTextField2))
.addGap(114, 114, 114))
.addComponent(jSeparator1, javax.swing.GroupLayout.Alignment.TRAILING)
.addGroup(layout.createSequentialGroup()
.addComponent(jButton2)
.addGap(113, 113, 113)
.addComponent(jLabel1)
.addGap(0, 0, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jButton2, javax.swing.GroupLayout.PREFERRED_SIZE, 18, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel1))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jSeparator1, javax.swing.GroupLayout.PREFERRED_SIZE, 4, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(94, 94, 94)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel2)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel3)
.addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 41, Short.MAX_VALUE)
.addComponent(jButton1)
.addGap(56, 56, 56))
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
/*try {
long a = Long.parseLong(jTextField1.getText());
double s = Double.parseDouble(jTextField2.getText());
if (s <= 2000) {
if (true) {
JOptionPane.showMessageDialog(this, s + " Sent Successfully to " + "Holder");
} else {
JOptionPane.showMessageDialog(this, "Account holder doesn't exist");
}
} else {
JOptionPane.showMessageDialog(this, "Insufficient Balance");
}
} catch (Exception e) {
JOptionPane.showMessageDialog(this, "Account Number and Amount must be numbers");
}*/
try {
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://localhost/bankdatabase", "root", "");
Statement stmt = con.createStatement();
double a=0,receivernewbalance=0;
long receiveraccountnumber=0;
String debit="DEBIT",credit="CREDIT";
Date date=new Date();
try{a = Double.parseDouble(jTextField2.getText());
sendernewbalance=signinyes.updatedbalance-a;}catch(Exception e){JOptionPane.showMessageDialog(this, "Amount must be in numbers");}
try{receiveraccountnumber=Long.parseLong(jTextField1.getText());}catch(Exception e){JOptionPane.showMessageDialog(this, "AccountNumber must be in numbers");}
String query3="select * from customers where account_number="+receiveraccountnumber+"";
ResultSet receiver=stmt.executeQuery(query3);
if(receiver.next()){
try{double receiveroldbalance=Double.parseDouble(receiver.getString("balance"));
receivernewbalance=receiveroldbalance+a;}catch(Exception e){JOptionPane.showMessageDialog(this, "Error");}
String query1 = "update customers set balance=" + sendernewbalance + " where account_number=" + senderaccountnumber + ";";
String query2="update customers set balance=" + receivernewbalance + " where account_number=" + receiveraccountnumber + ";";
String transaction1="insert into transactions values(" + senderaccountnumber + ",'" + debit + "'," + a + ",'" + date + "',null);";
String transaction2="insert into transactions values(" + receiveraccountnumber + ",'" + credit + "'," + a + ",'" + date + "',null);";
if (sendernewbalance >= 0/*balance*/) {
stmt.execute(query1);
stmt.execute(query2);
signinyes.updatedbalance = sendernewbalance;
JOptionPane.showMessageDialog(this, "Money sent Successfully to "+receiveraccountnumber);
stmt.execute(transaction1);
stmt.execute(transaction2);
con.close();
dispose();
} else {
JOptionPane.showMessageDialog(this, "Insufficient Amount");
}
}
else JOptionPane.showMessageDialog(this, "Account Not found");}catch (Exception e) {
JOptionPane.showMessageDialog(this, e.toString());
}
}//GEN-LAST:event_jButton1ActionPerformed
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton2ActionPerformed
dispose(); // TODO add your handling code here:
}//GEN-LAST:event_jButton2ActionPerformed
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(sendmoney.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(sendmoney.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(sendmoney.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(sendmoney.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new sendmoney().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton2;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JSeparator jSeparator1;
private javax.swing.JTextField jTextField1;
private javax.swing.JTextField jTextField2;
// End of variables declaration//GEN-END:variables
}
| [
"noreply@github.com"
] | nishntbnsl24.noreply@github.com |
80ce56cfdf30a9e77e50233649d74c49cf80c587 | bdefcca3ba1dddacc2e572c6040fb9c10ecbaab0 | /src/test/java/service/SimpleOperationsServiceTest.java | 6271d150a0adb672aeed63c7dc7a742e8a611874 | [] | no_license | Seaqer/single-sign-on | 96b4d5e15b340353f0f90673f6331bf1e36ad16a | 9b992a1d8e732301a652643a8f04af3cd7e30ba6 | refs/heads/master | 2020-06-13T18:23:05.014715 | 2016-12-11T21:30:39 | 2016-12-11T21:30:39 | 75,569,301 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 444 | java | package service;
import org.junit.Test;
public class SimpleOperationsServiceTest {
@Test
public void createOperation() throws Exception {
}
@Test
public void updateOperation() throws Exception {
}
@Test
public void deleteOperation() throws Exception {
}
@Test
public void searchOperation() throws Exception {
}
@Test
public void giveRoleOperation() throws Exception {
}
} | [
"d@g.c"
] | d@g.c |
3245dca645fad67b34a59155c129f024e9b9a7f0 | aedd4a32c28a1ee1fcaa644bde2f01b66de5560f | /spring-messaging/src/main/java/org/springframework/messaging/simp/broker/DefaultSubscriptionRegistry.java | bdf924ad34b8fe9bdf28f2f15ce267fe45994d4b | [
"Apache-2.0"
] | permissive | jmgx001/spring-framework-4.3.x | 262bc09fe914f2df7d75bd376aa46cb326d0abe0 | 5051c9f0d1de5c5ce962e55e3259cc5e1116e9d6 | refs/heads/master | 2023-07-13T11:18:35.673302 | 2021-08-12T15:59:07 | 2021-08-12T15:59:07 | 395,353,329 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 18,705 | 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.messaging.simp.broker;
import java.util.Collection;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.CopyOnWriteArraySet;
import org.springframework.expression.EvaluationContext;
import org.springframework.expression.Expression;
import org.springframework.expression.ExpressionParser;
import org.springframework.expression.PropertyAccessor;
import org.springframework.expression.TypedValue;
import org.springframework.expression.spel.SpelEvaluationException;
import org.springframework.expression.spel.standard.SpelExpressionParser;
import org.springframework.expression.spel.support.SimpleEvaluationContext;
import org.springframework.messaging.Message;
import org.springframework.messaging.MessageHeaders;
import org.springframework.messaging.simp.SimpMessageHeaderAccessor;
import org.springframework.messaging.support.MessageHeaderAccessor;
import org.springframework.util.AntPathMatcher;
import org.springframework.util.Assert;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.util.PathMatcher;
import org.springframework.util.StringUtils;
/**
* Implementation of {@link SubscriptionRegistry} that stores subscriptions
* in memory and uses a {@link org.springframework.util.PathMatcher PathMatcher}
* for matching destinations.
*
* <p>As of 4.2, this class supports a {@link #setSelectorHeaderName selector}
* header on subscription messages with Spring EL expressions evaluated against
* the headers to filter out messages in addition to destination matching.
*
* @author Rossen Stoyanchev
* @author Sebastien Deleuze
* @author Juergen Hoeller
* @since 4.0
*/
public class DefaultSubscriptionRegistry extends AbstractSubscriptionRegistry {
/** Default maximum number of entries for the destination cache: 1024 */
public static final int DEFAULT_CACHE_LIMIT = 1024;
/** Static evaluation context to reuse */
private static final EvaluationContext messageEvalContext =
SimpleEvaluationContext.forPropertyAccessors(new SimpMessageHeaderPropertyAccessor()).build();
private PathMatcher pathMatcher = new AntPathMatcher();
private volatile int cacheLimit = DEFAULT_CACHE_LIMIT;
private String selectorHeaderName = "selector";
private volatile boolean selectorHeaderInUse = false;
private final ExpressionParser expressionParser = new SpelExpressionParser();
private final DestinationCache destinationCache = new DestinationCache();
private final SessionSubscriptionRegistry subscriptionRegistry = new SessionSubscriptionRegistry();
/**
* Specify the {@link PathMatcher} to use.
*/
public void setPathMatcher(PathMatcher pathMatcher) {
this.pathMatcher = pathMatcher;
}
/**
* Return the configured {@link PathMatcher}.
*/
public PathMatcher getPathMatcher() {
return this.pathMatcher;
}
/**
* Specify the maximum number of entries for the resolved destination cache.
* Default is 1024.
*/
public void setCacheLimit(int cacheLimit) {
this.cacheLimit = cacheLimit;
}
/**
* Return the maximum number of entries for the resolved destination cache.
*/
public int getCacheLimit() {
return this.cacheLimit;
}
/**
* Configure the name of a header that a subscription message can have for
* the purpose of filtering messages matched to the subscription. The header
* value is expected to be a Spring EL boolean expression to be applied to
* the headers of messages matched to the subscription.
* <p>For example:
* <pre>
* headers.foo == 'bar'
* </pre>
* <p>By default this is set to "selector". You can set it to a different
* name, or to {@code null} to turn off support for a selector header.
* @param selectorHeaderName the name to use for a selector header
* @since 4.2
*/
public void setSelectorHeaderName(String selectorHeaderName) {
this.selectorHeaderName = (StringUtils.hasText(selectorHeaderName) ? selectorHeaderName : null);
}
/**
* Return the name for the selector header name.
* @since 4.2
*/
public String getSelectorHeaderName() {
return this.selectorHeaderName;
}
@Override
protected void addSubscriptionInternal(
String sessionId, String subsId, String destination, Message<?> message) {
Expression expression = getSelectorExpression(message.getHeaders());
this.subscriptionRegistry.addSubscription(sessionId, subsId, destination, expression);
this.destinationCache.updateAfterNewSubscription(destination, sessionId, subsId);
}
private Expression getSelectorExpression(MessageHeaders headers) {
Expression expression = null;
if (getSelectorHeaderName() != null) {
String selector = SimpMessageHeaderAccessor.getFirstNativeHeader(getSelectorHeaderName(), headers);
if (selector != null) {
try {
expression = this.expressionParser.parseExpression(selector);
this.selectorHeaderInUse = true;
if (logger.isTraceEnabled()) {
logger.trace("Subscription selector: [" + selector + "]");
}
}
catch (Throwable ex) {
if (logger.isDebugEnabled()) {
logger.debug("Failed to parse selector: " + selector, ex);
}
}
}
}
return expression;
}
@Override
protected void removeSubscriptionInternal(String sessionId, String subsId, Message<?> message) {
SessionSubscriptionInfo info = this.subscriptionRegistry.getSubscriptions(sessionId);
if (info != null) {
String destination = info.removeSubscription(subsId);
if (destination != null) {
this.destinationCache.updateAfterRemovedSubscription(sessionId, subsId);
}
}
}
@Override
public void unregisterAllSubscriptions(String sessionId) {
SessionSubscriptionInfo info = this.subscriptionRegistry.removeSubscriptions(sessionId);
if (info != null) {
this.destinationCache.updateAfterRemovedSession(info);
}
}
@Override
protected MultiValueMap<String, String> findSubscriptionsInternal(String destination, Message<?> message) {
MultiValueMap<String, String> result = this.destinationCache.getSubscriptions(destination, message);
return filterSubscriptions(result, message);
}
private MultiValueMap<String, String> filterSubscriptions(
MultiValueMap<String, String> allMatches, Message<?> message) {
if (!this.selectorHeaderInUse) {
return allMatches;
}
MultiValueMap<String, String> result = new LinkedMultiValueMap<String, String>(allMatches.size());
for (String sessionId : allMatches.keySet()) {
for (String subId : allMatches.get(sessionId)) {
SessionSubscriptionInfo info = this.subscriptionRegistry.getSubscriptions(sessionId);
if (info == null) {
continue;
}
Subscription sub = info.getSubscription(subId);
if (sub == null) {
continue;
}
Expression expression = sub.getSelectorExpression();
if (expression == null) {
result.add(sessionId, subId);
continue;
}
try {
if (Boolean.TRUE.equals(expression.getValue(messageEvalContext, message, Boolean.class))) {
result.add(sessionId, subId);
}
}
catch (SpelEvaluationException ex) {
if (logger.isDebugEnabled()) {
logger.debug("Failed to evaluate selector: " + ex.getMessage());
}
}
catch (Throwable ex) {
logger.debug("Failed to evaluate selector", ex);
}
}
}
return result;
}
@Override
public String toString() {
return "DefaultSubscriptionRegistry[" + this.destinationCache + ", " + this.subscriptionRegistry + "]";
}
/**
* A cache for destinations previously resolved via
* {@link DefaultSubscriptionRegistry#findSubscriptionsInternal(String, Message)}
*/
private class DestinationCache {
/** Map from destination -> <sessionId, subscriptionId> for fast look-ups */
private final Map<String, LinkedMultiValueMap<String, String>> accessCache =
new ConcurrentHashMap<String, LinkedMultiValueMap<String, String>>(DEFAULT_CACHE_LIMIT);
/** Map from destination -> <sessionId, subscriptionId> with locking */
@SuppressWarnings("serial")
private final Map<String, LinkedMultiValueMap<String, String>> updateCache =
new LinkedHashMap<String, LinkedMultiValueMap<String, String>>(DEFAULT_CACHE_LIMIT, 0.75f, true) {
@Override
protected boolean removeEldestEntry(Map.Entry<String, LinkedMultiValueMap<String, String>> eldest) {
if (size() > getCacheLimit()) {
accessCache.remove(eldest.getKey());
return true;
}
else {
return false;
}
}
};
public LinkedMultiValueMap<String, String> getSubscriptions(String destination, Message<?> message) {
LinkedMultiValueMap<String, String> result = this.accessCache.get(destination);
if (result == null) {
synchronized (this.updateCache) {
result = new LinkedMultiValueMap<String, String>();
for (SessionSubscriptionInfo info : subscriptionRegistry.getAllSubscriptions()) {
for (String destinationPattern : info.getDestinations()) {
if (getPathMatcher().match(destinationPattern, destination)) {
for (Subscription subscription : info.getSubscriptions(destinationPattern)) {
result.add(info.sessionId, subscription.getId());
}
}
}
}
if (!result.isEmpty()) {
this.updateCache.put(destination, result.deepCopy());
this.accessCache.put(destination, result);
}
}
}
return result;
}
public void updateAfterNewSubscription(String destination, String sessionId, String subsId) {
synchronized (this.updateCache) {
for (Map.Entry<String, LinkedMultiValueMap<String, String>> entry : this.updateCache.entrySet()) {
String cachedDestination = entry.getKey();
if (getPathMatcher().match(destination, cachedDestination)) {
LinkedMultiValueMap<String, String> subs = entry.getValue();
// Subscription id's may also be populated via getSubscriptions()
List<String> subsForSession = subs.get(sessionId);
if (subsForSession == null || !subsForSession.contains(subsId)) {
subs.add(sessionId, subsId);
this.accessCache.put(cachedDestination, subs.deepCopy());
}
}
}
}
}
public void updateAfterRemovedSubscription(String sessionId, String subsId) {
synchronized (this.updateCache) {
Set<String> destinationsToRemove = new HashSet<String>();
for (Map.Entry<String, LinkedMultiValueMap<String, String>> entry : this.updateCache.entrySet()) {
String destination = entry.getKey();
LinkedMultiValueMap<String, String> sessionMap = entry.getValue();
List<String> subscriptions = sessionMap.get(sessionId);
if (subscriptions != null) {
subscriptions.remove(subsId);
if (subscriptions.isEmpty()) {
sessionMap.remove(sessionId);
}
if (sessionMap.isEmpty()) {
destinationsToRemove.add(destination);
}
else {
this.accessCache.put(destination, sessionMap.deepCopy());
}
}
}
for (String destination : destinationsToRemove) {
this.updateCache.remove(destination);
this.accessCache.remove(destination);
}
}
}
public void updateAfterRemovedSession(SessionSubscriptionInfo info) {
synchronized (this.updateCache) {
Set<String> destinationsToRemove = new HashSet<String>();
for (Map.Entry<String, LinkedMultiValueMap<String, String>> entry : this.updateCache.entrySet()) {
String destination = entry.getKey();
LinkedMultiValueMap<String, String> sessionMap = entry.getValue();
if (sessionMap.remove(info.getSessionId()) != null) {
if (sessionMap.isEmpty()) {
destinationsToRemove.add(destination);
}
else {
this.accessCache.put(destination, sessionMap.deepCopy());
}
}
}
for (String destination : destinationsToRemove) {
this.updateCache.remove(destination);
this.accessCache.remove(destination);
}
}
}
@Override
public String toString() {
return "cache[" + this.accessCache.size() + " destination(s)]";
}
}
/**
* Provide access to session subscriptions by sessionId.
*/
private static class SessionSubscriptionRegistry {
// sessionId -> SessionSubscriptionInfo
private final ConcurrentMap<String, SessionSubscriptionInfo> sessions =
new ConcurrentHashMap<String, SessionSubscriptionInfo>();
public SessionSubscriptionInfo getSubscriptions(String sessionId) {
return this.sessions.get(sessionId);
}
public Collection<SessionSubscriptionInfo> getAllSubscriptions() {
return this.sessions.values();
}
public SessionSubscriptionInfo addSubscription(String sessionId, String subscriptionId,
String destination, Expression selectorExpression) {
SessionSubscriptionInfo info = this.sessions.get(sessionId);
if (info == null) {
info = new SessionSubscriptionInfo(sessionId);
SessionSubscriptionInfo value = this.sessions.putIfAbsent(sessionId, info);
if (value != null) {
info = value;
}
}
info.addSubscription(destination, subscriptionId, selectorExpression);
return info;
}
public SessionSubscriptionInfo removeSubscriptions(String sessionId) {
return this.sessions.remove(sessionId);
}
@Override
public String toString() {
return "registry[" + this.sessions.size() + " sessions]";
}
}
/**
* Hold subscriptions for a session.
*/
private static class SessionSubscriptionInfo {
private final String sessionId;
// destination -> subscriptions
private final Map<String, Set<Subscription>> destinationLookup =
new ConcurrentHashMap<String, Set<Subscription>>(4);
public SessionSubscriptionInfo(String sessionId) {
Assert.notNull(sessionId, "'sessionId' must not be null");
this.sessionId = sessionId;
}
public String getSessionId() {
return this.sessionId;
}
public Set<String> getDestinations() {
return this.destinationLookup.keySet();
}
public Set<Subscription> getSubscriptions(String destination) {
return this.destinationLookup.get(destination);
}
public Subscription getSubscription(String subscriptionId) {
for (Map.Entry<String, Set<DefaultSubscriptionRegistry.Subscription>> destinationEntry : this.destinationLookup.entrySet()) {
Set<Subscription> subs = destinationEntry.getValue();
if (subs != null) {
for (Subscription sub : subs) {
if (sub.getId().equalsIgnoreCase(subscriptionId)) {
return sub;
}
}
}
}
return null;
}
public void addSubscription(String destination, String subscriptionId, Expression selectorExpression) {
Set<Subscription> subs = this.destinationLookup.get(destination);
if (subs == null) {
synchronized (this.destinationLookup) {
subs = this.destinationLookup.get(destination);
if (subs == null) {
subs = new CopyOnWriteArraySet<Subscription>();
this.destinationLookup.put(destination, subs);
}
}
}
subs.add(new Subscription(subscriptionId, selectorExpression));
}
public String removeSubscription(String subscriptionId) {
for (Map.Entry<String, Set<DefaultSubscriptionRegistry.Subscription>> destinationEntry : this.destinationLookup.entrySet()) {
Set<Subscription> subs = destinationEntry.getValue();
if (subs != null) {
for (Subscription sub : subs) {
if (sub.getId().equals(subscriptionId) && subs.remove(sub)) {
synchronized (this.destinationLookup) {
if (subs.isEmpty()) {
this.destinationLookup.remove(destinationEntry.getKey());
}
}
return destinationEntry.getKey();
}
}
}
}
return null;
}
@Override
public String toString() {
return "[sessionId=" + this.sessionId + ", subscriptions=" + this.destinationLookup + "]";
}
}
private static final class Subscription {
private final String id;
private final Expression selectorExpression;
public Subscription(String id, Expression selector) {
Assert.notNull(id, "Subscription id must not be null");
this.id = id;
this.selectorExpression = selector;
}
public String getId() {
return this.id;
}
public Expression getSelectorExpression() {
return this.selectorExpression;
}
@Override
public boolean equals(Object other) {
return (this == other || (other instanceof Subscription && this.id.equals(((Subscription) other).id)));
}
@Override
public int hashCode() {
return this.id.hashCode();
}
@Override
public String toString() {
return "subscription(id=" + this.id + ")";
}
}
private static class SimpMessageHeaderPropertyAccessor implements PropertyAccessor {
@Override
public Class<?>[] getSpecificTargetClasses() {
return new Class<?>[] {Message.class, MessageHeaders.class};
}
@Override
public boolean canRead(EvaluationContext context, Object target, String name) {
return true;
}
@Override
public TypedValue read(EvaluationContext context, Object target, String name) {
Object value;
if (target instanceof Message) {
value = name.equals("headers") ? ((Message) target).getHeaders() : null;
}
else if (target instanceof MessageHeaders) {
MessageHeaders headers = (MessageHeaders) target;
SimpMessageHeaderAccessor accessor =
MessageHeaderAccessor.getAccessor(headers, SimpMessageHeaderAccessor.class);
Assert.state(accessor != null, "No SimpMessageHeaderAccessor");
if ("destination".equalsIgnoreCase(name)) {
value = accessor.getDestination();
}
else {
value = accessor.getFirstNativeHeader(name);
if (value == null) {
value = headers.get(name);
}
}
}
else {
// Should never happen...
throw new IllegalStateException("Expected Message or MessageHeaders.");
}
return new TypedValue(value);
}
@Override
public boolean canWrite(EvaluationContext context, Object target, String name) {
return false;
}
@Override
public void write(EvaluationContext context, Object target, String name, Object value) {
}
}
}
| [
"1119459519@qq.com"
] | 1119459519@qq.com |
077da63289c45ff08676632e5378090765c55ee2 | ae5eb1a38b4d22c82dfd67c86db73592094edc4b | /project53/src/main/java/org/gradle/test/performance/largejavamultiproject/project53/p268/Production5378.java | dcd6943e2e3a980fdd2d4177896253460836435a | [] | no_license | big-guy/largeJavaMultiProject | 405cc7f55301e1fd87cee5878a165ec5d4a071aa | 1cd6a3f9c59e9b13dffa35ad27d911114f253c33 | refs/heads/main | 2023-03-17T10:59:53.226128 | 2021-03-04T01:01:39 | 2021-03-04T01:01:39 | 344,307,977 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,959 | java | package org.gradle.test.performance.largejavamultiproject.project53.p268;
public class Production5378 {
private Production5369 property0;
public Production5369 getProperty0() {
return property0;
}
public void setProperty0(Production5369 value) {
property0 = value;
}
private Production5373 property1;
public Production5373 getProperty1() {
return property1;
}
public void setProperty1(Production5373 value) {
property1 = value;
}
private Production5377 property2;
public Production5377 getProperty2() {
return property2;
}
public void setProperty2(Production5377 value) {
property2 = value;
}
private String property3;
public String getProperty3() {
return property3;
}
public void setProperty3(String value) {
property3 = value;
}
private String property4;
public String getProperty4() {
return property4;
}
public void setProperty4(String value) {
property4 = value;
}
private String property5;
public String getProperty5() {
return property5;
}
public void setProperty5(String value) {
property5 = value;
}
private String property6;
public String getProperty6() {
return property6;
}
public void setProperty6(String value) {
property6 = value;
}
private String property7;
public String getProperty7() {
return property7;
}
public void setProperty7(String value) {
property7 = value;
}
private String property8;
public String getProperty8() {
return property8;
}
public void setProperty8(String value) {
property8 = value;
}
private String property9;
public String getProperty9() {
return property9;
}
public void setProperty9(String value) {
property9 = value;
}
} | [
"sterling.greene@gmail.com"
] | sterling.greene@gmail.com |
c4e4b699818b3068df2097bb91320cb5afbb9fbc | bf2966abae57885c29e70852243a22abc8ba8eb0 | /aws-java-sdk-ec2/src/main/java/com/amazonaws/services/ec2/model/DescribeVpcEndpointServicePermissionsRequest.java | c31780b39fe44ae9d55da9556606d1ff9dce18ac | [
"Apache-2.0"
] | permissive | kmbotts/aws-sdk-java | ae20b3244131d52b9687eb026b9c620da8b49935 | 388f6427e00fb1c2f211abda5bad3a75d29eef62 | refs/heads/master | 2021-12-23T14:39:26.369661 | 2021-07-26T20:09:07 | 2021-07-26T20:09:07 | 246,296,939 | 0 | 0 | Apache-2.0 | 2020-03-10T12:37:34 | 2020-03-10T12:37:33 | null | UTF-8 | Java | false | false | 15,687 | java | /*
* Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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.amazonaws.services.ec2.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
import com.amazonaws.Request;
import com.amazonaws.services.ec2.model.transform.DescribeVpcEndpointServicePermissionsRequestMarshaller;
/**
*
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class DescribeVpcEndpointServicePermissionsRequest extends AmazonWebServiceRequest implements Serializable, Cloneable,
DryRunSupportedRequest<DescribeVpcEndpointServicePermissionsRequest> {
/**
* <p>
* The ID of the service.
* </p>
*/
private String serviceId;
/**
* <p>
* One or more filters.
* </p>
* <ul>
* <li>
* <p>
* <code>principal</code> - The ARN of the principal.
* </p>
* </li>
* <li>
* <p>
* <code>principal-type</code> - The principal type (<code>All</code> | <code>Service</code> |
* <code>OrganizationUnit</code> | <code>Account</code> | <code>User</code> | <code>Role</code>).
* </p>
* </li>
* </ul>
*/
private com.amazonaws.internal.SdkInternalList<Filter> filters;
/**
* <p>
* The maximum number of results to return for the request in a single page. The remaining results of the initial
* request can be seen by sending another request with the returned <code>NextToken</code> value. This value can be
* between 5 and 1,000; if <code>MaxResults</code> is given a value larger than 1,000, only 1,000 results are
* returned.
* </p>
*/
private Integer maxResults;
/**
* <p>
* The token to retrieve the next page of results.
* </p>
*/
private String nextToken;
/**
* <p>
* The ID of the service.
* </p>
*
* @param serviceId
* The ID of the service.
*/
public void setServiceId(String serviceId) {
this.serviceId = serviceId;
}
/**
* <p>
* The ID of the service.
* </p>
*
* @return The ID of the service.
*/
public String getServiceId() {
return this.serviceId;
}
/**
* <p>
* The ID of the service.
* </p>
*
* @param serviceId
* The ID of the service.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeVpcEndpointServicePermissionsRequest withServiceId(String serviceId) {
setServiceId(serviceId);
return this;
}
/**
* <p>
* One or more filters.
* </p>
* <ul>
* <li>
* <p>
* <code>principal</code> - The ARN of the principal.
* </p>
* </li>
* <li>
* <p>
* <code>principal-type</code> - The principal type (<code>All</code> | <code>Service</code> |
* <code>OrganizationUnit</code> | <code>Account</code> | <code>User</code> | <code>Role</code>).
* </p>
* </li>
* </ul>
*
* @return One or more filters.</p>
* <ul>
* <li>
* <p>
* <code>principal</code> - The ARN of the principal.
* </p>
* </li>
* <li>
* <p>
* <code>principal-type</code> - The principal type (<code>All</code> | <code>Service</code> |
* <code>OrganizationUnit</code> | <code>Account</code> | <code>User</code> | <code>Role</code>).
* </p>
* </li>
*/
public java.util.List<Filter> getFilters() {
if (filters == null) {
filters = new com.amazonaws.internal.SdkInternalList<Filter>();
}
return filters;
}
/**
* <p>
* One or more filters.
* </p>
* <ul>
* <li>
* <p>
* <code>principal</code> - The ARN of the principal.
* </p>
* </li>
* <li>
* <p>
* <code>principal-type</code> - The principal type (<code>All</code> | <code>Service</code> |
* <code>OrganizationUnit</code> | <code>Account</code> | <code>User</code> | <code>Role</code>).
* </p>
* </li>
* </ul>
*
* @param filters
* One or more filters.</p>
* <ul>
* <li>
* <p>
* <code>principal</code> - The ARN of the principal.
* </p>
* </li>
* <li>
* <p>
* <code>principal-type</code> - The principal type (<code>All</code> | <code>Service</code> |
* <code>OrganizationUnit</code> | <code>Account</code> | <code>User</code> | <code>Role</code>).
* </p>
* </li>
*/
public void setFilters(java.util.Collection<Filter> filters) {
if (filters == null) {
this.filters = null;
return;
}
this.filters = new com.amazonaws.internal.SdkInternalList<Filter>(filters);
}
/**
* <p>
* One or more filters.
* </p>
* <ul>
* <li>
* <p>
* <code>principal</code> - The ARN of the principal.
* </p>
* </li>
* <li>
* <p>
* <code>principal-type</code> - The principal type (<code>All</code> | <code>Service</code> |
* <code>OrganizationUnit</code> | <code>Account</code> | <code>User</code> | <code>Role</code>).
* </p>
* </li>
* </ul>
* <p>
* <b>NOTE:</b> This method appends the values to the existing list (if any). Use
* {@link #setFilters(java.util.Collection)} or {@link #withFilters(java.util.Collection)} if you want to override
* the existing values.
* </p>
*
* @param filters
* One or more filters.</p>
* <ul>
* <li>
* <p>
* <code>principal</code> - The ARN of the principal.
* </p>
* </li>
* <li>
* <p>
* <code>principal-type</code> - The principal type (<code>All</code> | <code>Service</code> |
* <code>OrganizationUnit</code> | <code>Account</code> | <code>User</code> | <code>Role</code>).
* </p>
* </li>
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeVpcEndpointServicePermissionsRequest withFilters(Filter... filters) {
if (this.filters == null) {
setFilters(new com.amazonaws.internal.SdkInternalList<Filter>(filters.length));
}
for (Filter ele : filters) {
this.filters.add(ele);
}
return this;
}
/**
* <p>
* One or more filters.
* </p>
* <ul>
* <li>
* <p>
* <code>principal</code> - The ARN of the principal.
* </p>
* </li>
* <li>
* <p>
* <code>principal-type</code> - The principal type (<code>All</code> | <code>Service</code> |
* <code>OrganizationUnit</code> | <code>Account</code> | <code>User</code> | <code>Role</code>).
* </p>
* </li>
* </ul>
*
* @param filters
* One or more filters.</p>
* <ul>
* <li>
* <p>
* <code>principal</code> - The ARN of the principal.
* </p>
* </li>
* <li>
* <p>
* <code>principal-type</code> - The principal type (<code>All</code> | <code>Service</code> |
* <code>OrganizationUnit</code> | <code>Account</code> | <code>User</code> | <code>Role</code>).
* </p>
* </li>
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeVpcEndpointServicePermissionsRequest withFilters(java.util.Collection<Filter> filters) {
setFilters(filters);
return this;
}
/**
* <p>
* The maximum number of results to return for the request in a single page. The remaining results of the initial
* request can be seen by sending another request with the returned <code>NextToken</code> value. This value can be
* between 5 and 1,000; if <code>MaxResults</code> is given a value larger than 1,000, only 1,000 results are
* returned.
* </p>
*
* @param maxResults
* The maximum number of results to return for the request in a single page. The remaining results of the
* initial request can be seen by sending another request with the returned <code>NextToken</code> value.
* This value can be between 5 and 1,000; if <code>MaxResults</code> is given a value larger than 1,000, only
* 1,000 results are returned.
*/
public void setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
}
/**
* <p>
* The maximum number of results to return for the request in a single page. The remaining results of the initial
* request can be seen by sending another request with the returned <code>NextToken</code> value. This value can be
* between 5 and 1,000; if <code>MaxResults</code> is given a value larger than 1,000, only 1,000 results are
* returned.
* </p>
*
* @return The maximum number of results to return for the request in a single page. The remaining results of the
* initial request can be seen by sending another request with the returned <code>NextToken</code> value.
* This value can be between 5 and 1,000; if <code>MaxResults</code> is given a value larger than 1,000,
* only 1,000 results are returned.
*/
public Integer getMaxResults() {
return this.maxResults;
}
/**
* <p>
* The maximum number of results to return for the request in a single page. The remaining results of the initial
* request can be seen by sending another request with the returned <code>NextToken</code> value. This value can be
* between 5 and 1,000; if <code>MaxResults</code> is given a value larger than 1,000, only 1,000 results are
* returned.
* </p>
*
* @param maxResults
* The maximum number of results to return for the request in a single page. The remaining results of the
* initial request can be seen by sending another request with the returned <code>NextToken</code> value.
* This value can be between 5 and 1,000; if <code>MaxResults</code> is given a value larger than 1,000, only
* 1,000 results are returned.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeVpcEndpointServicePermissionsRequest withMaxResults(Integer maxResults) {
setMaxResults(maxResults);
return this;
}
/**
* <p>
* The token to retrieve the next page of results.
* </p>
*
* @param nextToken
* The token to retrieve the next page of results.
*/
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
/**
* <p>
* The token to retrieve the next page of results.
* </p>
*
* @return The token to retrieve the next page of results.
*/
public String getNextToken() {
return this.nextToken;
}
/**
* <p>
* The token to retrieve the next page of results.
* </p>
*
* @param nextToken
* The token to retrieve the next page of results.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeVpcEndpointServicePermissionsRequest withNextToken(String nextToken) {
setNextToken(nextToken);
return this;
}
/**
* This method is intended for internal use only. Returns the marshaled request configured with additional
* parameters to enable operation dry-run.
*/
@Override
public Request<DescribeVpcEndpointServicePermissionsRequest> getDryRunRequest() {
Request<DescribeVpcEndpointServicePermissionsRequest> request = new DescribeVpcEndpointServicePermissionsRequestMarshaller().marshall(this);
request.addParameter("DryRun", Boolean.toString(true));
return request;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getServiceId() != null)
sb.append("ServiceId: ").append(getServiceId()).append(",");
if (getFilters() != null)
sb.append("Filters: ").append(getFilters()).append(",");
if (getMaxResults() != null)
sb.append("MaxResults: ").append(getMaxResults()).append(",");
if (getNextToken() != null)
sb.append("NextToken: ").append(getNextToken());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof DescribeVpcEndpointServicePermissionsRequest == false)
return false;
DescribeVpcEndpointServicePermissionsRequest other = (DescribeVpcEndpointServicePermissionsRequest) obj;
if (other.getServiceId() == null ^ this.getServiceId() == null)
return false;
if (other.getServiceId() != null && other.getServiceId().equals(this.getServiceId()) == false)
return false;
if (other.getFilters() == null ^ this.getFilters() == null)
return false;
if (other.getFilters() != null && other.getFilters().equals(this.getFilters()) == false)
return false;
if (other.getMaxResults() == null ^ this.getMaxResults() == null)
return false;
if (other.getMaxResults() != null && other.getMaxResults().equals(this.getMaxResults()) == false)
return false;
if (other.getNextToken() == null ^ this.getNextToken() == null)
return false;
if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getServiceId() == null) ? 0 : getServiceId().hashCode());
hashCode = prime * hashCode + ((getFilters() == null) ? 0 : getFilters().hashCode());
hashCode = prime * hashCode + ((getMaxResults() == null) ? 0 : getMaxResults().hashCode());
hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode());
return hashCode;
}
@Override
public DescribeVpcEndpointServicePermissionsRequest clone() {
return (DescribeVpcEndpointServicePermissionsRequest) super.clone();
}
}
| [
""
] | |
38a9bdda9f40e6e2ba70b1fc8ee711ceab858ff3 | eec4f05da34c105eb45940b27baff0a6ed0bb8c3 | /ActivitiTest/src/main/java/wmhuang/CreateTable.java | 2bb487afdd65b272a55553025fded128ba701d9f | [] | no_license | wmhuang/study | 7b5ced7cfb8fa7b47130eaa77ff8e0f7add265be | 939dbfc04cfc0b48c0ae13100e9ce51c3c49f24d | refs/heads/master | 2020-03-12T14:04:25.521495 | 2018-04-24T09:55:03 | 2018-04-24T09:55:03 | 130,657,097 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 547 | java | package wmhuang;
import org.activiti.engine.ProcessEngine;
import org.activiti.engine.ProcessEngineConfiguration;
import org.activiti.engine.ProcessEngines;
import org.junit.Test;
public class CreateTable {
@Test
public void createTable() {
// ProcessEngine processEngine = ProcessEngines.getDefaultProcessEngine();
ProcessEngine processEngine = ProcessEngineConfiguration
.createProcessEngineConfigurationFromResource("Activiti.cfg.xml").buildProcessEngine();
System.out.println("---processEngin:" + processEngine);
}
}
| [
"huangweiming@css.com.cn"
] | huangweiming@css.com.cn |
5dfaa7be813410fde3f3595f0854046bcf78d193 | 9e5ab810e5305c01a429bcd1d192694675de8436 | /permission/src/main/java/cn/dc/permission/shiro/config/RememberMeConfig.java | b738fa2771ad1569a1e310147b6ca75c8d630bc4 | [] | no_license | tomdev2008/dfms | df40464e1b61686fc0159daf86bc3b1b0cb1dc39 | 54532461eb4fcdf30b4112ad57dca6d81b79753f | refs/heads/master | 2021-05-21T09:32:29.175148 | 2019-10-30T10:42:22 | 2019-10-30T10:42:22 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,658 | java | package cn.dc.permission.shiro.config;
import org.apache.shiro.web.mgt.CookieRememberMeManager;
import org.apache.shiro.web.servlet.SimpleCookie;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class RememberMeConfig {
/**
* cookie对象;
* rememberMeCookie()方法是设置Cookie的生成模版,比如cookie的name,cookie的有效时间等等。
* @return
*/
@Bean
public SimpleCookie rememberMeCookie(){
//System.out.println("ShiroConfiguration.rememberMeCookie()");
//这个参数是cookie的名称,对应前端的checkbox的name = rememberMe
SimpleCookie simpleCookie = new SimpleCookie("rememberMe");
//<!-- 记住我cookie生效时间30天 ,单位秒;-->
simpleCookie.setMaxAge(259200);
return simpleCookie;
}
/**
* cookie管理对象;
* rememberMeManager()方法是生成rememberMe管理器,而且要将这个rememberMe管理器设置到securityManager中
* @return
*/
@Bean("cookieRememberMeManager")
public CookieRememberMeManager rememberMeManager(){
//System.out.println("ShiroConfiguration.rememberMeManager()");
CookieRememberMeManager cookieRememberMeManager = new CookieRememberMeManager();
cookieRememberMeManager.setCookie(rememberMeCookie());
//rememberMe cookie加密的密钥 建议每个项目都不一样 默认AES算法 密钥长度(128 256 512 位)
//cookieRememberMeManager.setCipherKey(Base64.decode("2AvVhdsgUs0FSA3SDFAdag=="));
return cookieRememberMeManager;
}
}
| [
"zdkdchao@gmail.com"
] | zdkdchao@gmail.com |
d1ffaf1535403c75c52080fc6e441d1a251ee138 | bf2966abae57885c29e70852243a22abc8ba8eb0 | /aws-java-sdk-elasticsearch/src/main/java/com/amazonaws/services/elasticsearch/model/transform/InstanceLimitsMarshaller.java | 10c84880d28c5aa1e25a2fbbd32bc9a91e5dddcc | [
"Apache-2.0"
] | permissive | kmbotts/aws-sdk-java | ae20b3244131d52b9687eb026b9c620da8b49935 | 388f6427e00fb1c2f211abda5bad3a75d29eef62 | refs/heads/master | 2021-12-23T14:39:26.369661 | 2021-07-26T20:09:07 | 2021-07-26T20:09:07 | 246,296,939 | 0 | 0 | Apache-2.0 | 2020-03-10T12:37:34 | 2020-03-10T12:37:33 | null | UTF-8 | Java | false | false | 2,011 | java | /*
* Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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.amazonaws.services.elasticsearch.model.transform;
import javax.annotation.Generated;
import com.amazonaws.SdkClientException;
import com.amazonaws.services.elasticsearch.model.*;
import com.amazonaws.protocol.*;
import com.amazonaws.annotation.SdkInternalApi;
/**
* InstanceLimitsMarshaller
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
@SdkInternalApi
public class InstanceLimitsMarshaller {
private static final MarshallingInfo<StructuredPojo> INSTANCECOUNTLIMITS_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("InstanceCountLimits").build();
private static final InstanceLimitsMarshaller instance = new InstanceLimitsMarshaller();
public static InstanceLimitsMarshaller getInstance() {
return instance;
}
/**
* Marshall the given parameter object.
*/
public void marshall(InstanceLimits instanceLimits, ProtocolMarshaller protocolMarshaller) {
if (instanceLimits == null) {
throw new SdkClientException("Invalid argument passed to marshall(...)");
}
try {
protocolMarshaller.marshall(instanceLimits.getInstanceCountLimits(), INSTANCECOUNTLIMITS_BINDING);
} catch (Exception e) {
throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e);
}
}
}
| [
""
] | |
29fc85a79621e0376af662150e9b0b8a5adc2c76 | 8e711c114e05a77ae26dc13969a0b0445a9d4da3 | /order-service/generator/com/deng/order/java/service/ProSpuService.java | 9e51adaf5c48cdfd77b57bae831db300bdde8618 | [] | no_license | grayFinger/dora | 6430c5545ebb61fc5bbbb05159a3d3948e48864f | d670eb71f9d2c1438d1146b8db605ccaecea8ea8 | refs/heads/main | 2023-07-29T23:00:34.802103 | 2021-10-08T01:27:07 | 2021-10-08T01:27:07 | 410,418,545 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 455 | java | package com.deng.order.service;
import com.dora.common.db.service.BaseService;
import com.deng.order.bean.ProSpu;
import com.deng.order.dao.ProSpuDao;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
/**
* 业务处理
* @author conta
* @create 2021-09-28 15:56:35
*/
@Service
public class ProSpuService extends BaseService<ProSpu> {
@Autowired
private ProSpuDao proSpuDao;
}
| [
"279539098@qq.com"
] | 279539098@qq.com |
0e2b6f5c6af488441ff4cab385194d692e1ca085 | db0ae50df3129815fe08a03d8b6a50cc66a5a658 | /Java RMI/Arith.java | 72544b92d59bf09a1b282f8b92ebdd59ad55fe9c | [] | no_license | cmfabregas/SOFE-4790U | 4686e84b29631a5b63b3571076c6dd40c9f4bccb | 940688ce48af3f5da2165d3014c0a8662b8d4aa2 | refs/heads/master | 2020-03-30T18:31:44.122492 | 2018-10-04T01:35:19 | 2018-10-04T01:35:19 | 151,503,931 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 209 | java | /**
* @author Qusay H. Mahmoud
*/
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface Arith extends Remote {
int[] addArrays(int a[], int b[]) throws RemoteException;
}
| [
"cmfabregas1@gmail.com"
] | cmfabregas1@gmail.com |
8b39ef6cef4ce37fa6b1611e3155594766c75bb1 | 2d52c0cdd4409d293b3c7bc7adf987d5637f8ec3 | /src/main/java/com/wys/work/serverdatemag/mapper/ServerYearMapper.java | 24408514ecb7c9eee584c4c2a811ff0ed122f449 | [] | no_license | wslnm/wslnm | eecc0147e114a45efe201e3086463bd5183d94e8 | dd8a3eca7a0394867641ac410ee8b92c8f3ccbd9 | refs/heads/master | 2020-03-20T09:29:47.145893 | 2018-06-15T01:34:13 | 2018-06-15T01:34:13 | 137,187,667 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 440 | java | package com.wys.work.serverdatemag.mapper;
import java.util.List;
import java.util.Map;
import com.wys.work.beans.Pager;
/**
* @author Administrator
* @version 1.0
* @created 14-����-2018 13:07:16
*/
public interface ServerYearMapper {
/**
*
* @param parmas
*/
public long findServerYear2Count(Map parmas);
/**
*
* @param parmas
*/
public List findServerYear2List(Map parmas);
} | [
"409634571@qq.com"
] | 409634571@qq.com |
63439e17cfe1901b87239c158daa29f20067f233 | 140a0ad1e8dbfabf36ccca76e53da6a177884664 | /src/main/java/io/github/jhipster/application/service/AuthenticKeyService.java | 05ce0da89904337e30d5cd5992f2fe9200189de6 | [] | no_license | retrive123/jhipster-sample-application | cf8275c3059ba11512ae8c1d6a6cb608c7b9574f | d8236332db28800af519bd707389a42f52692b1e | refs/heads/master | 2020-04-10T04:57:43.328456 | 2018-12-09T18:21:15 | 2018-12-09T18:21:15 | 160,814,092 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 922 | java | package io.github.jhipster.application.service;
import io.github.jhipster.application.domain.AuthenticKey;
import java.util.List;
import java.util.Optional;
/**
* Service Interface for managing AuthenticKey.
*/
public interface AuthenticKeyService {
/**
* Save a authenticKey.
*
* @param authenticKey the entity to save
* @return the persisted entity
*/
AuthenticKey save(AuthenticKey authenticKey);
/**
* Get all the authenticKeys.
*
* @return the list of entities
*/
List<AuthenticKey> findAll();
/**
* Get the "id" authenticKey.
*
* @param id the id of the entity
* @return the entity
*/
Optional<AuthenticKey> findOne(Long id);
/**
* Delete the "id" authenticKey.
*
* @param id the id of the entity
*/
void delete(Long id);
Optional<AuthenticKey> findByUniqueKey(int uniqueKey);
}
| [
"Souvik Das"
] | Souvik Das |
87624e673267e4d5504d9f5ecacc6cd2241958e1 | 774b50fe5091754f23ef556c07a4d1aab56efe27 | /oag/src/main/java/org/oagis/model/v101/RiskCodeType.java | 1ea9405e35ae3596492d985d28f0638efc5330db | [] | no_license | otw1248/thirdpartiess | daa297c2f44adb1ffb6530f88eceab6b7f37b109 | 4cbc4501443d807121656e47014d70277ff30abc | refs/heads/master | 2022-12-07T17:10:17.320160 | 2022-11-28T10:56:19 | 2022-11-28T10:56:19 | 33,661,485 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,018 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.04.09 at 05:03:41 PM CST
//
package org.oagis.model.v101;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* <p>Java class for RiskCodeType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="RiskCodeType">
* <simpleContent>
* <extension base="<http://www.openapplications.org/oagis/10>RiskCodeContentType">
* <attribute name="listID" type="{http://www.w3.org/2001/XMLSchema}normalizedString" />
* <attribute name="listAgencyID" type="{http://www.openapplications.org/oagis/10}clm63055D08B_AgencyIdentificationContentType" />
* <attribute name="listVersionID" type="{http://www.w3.org/2001/XMLSchema}normalizedString" />
* </extension>
* </simpleContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RiskCodeType", propOrder = {
"value"
})
public class RiskCodeType {
@XmlValue
protected String value;
@XmlAttribute(name = "listID")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
@XmlSchemaType(name = "normalizedString")
protected String listID;
@XmlAttribute(name = "listAgencyID")
protected String listAgencyID;
@XmlAttribute(name = "listVersionID")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
@XmlSchemaType(name = "normalizedString")
protected String listVersionID;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
/**
* Gets the value of the listID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getListID() {
return listID;
}
/**
* Sets the value of the listID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setListID(String value) {
this.listID = value;
}
/**
* Gets the value of the listAgencyID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getListAgencyID() {
return listAgencyID;
}
/**
* Sets the value of the listAgencyID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setListAgencyID(String value) {
this.listAgencyID = value;
}
/**
* Gets the value of the listVersionID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getListVersionID() {
return listVersionID;
}
/**
* Sets the value of the listVersionID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setListVersionID(String value) {
this.listVersionID = value;
}
}
| [
"otw1248@otw1248.com"
] | otw1248@otw1248.com |
fa3d5fcacca6e8c96f79cdb62aa48e8590edf2de | 805ec745004ff5a066393dd81f810f40f1d9e382 | /src/main/java/myFrameU/product/entity/ProductTesefuwu.java | eb2d788b9ef26862a165ed78732d885eef8e32a1 | [] | no_license | ligson/hehuoren | ba9f2bcb36dd7cd97344cc35c462a4f49923c6b6 | 3b98f968e42a633acf9a084a3cc1c47b0aa62181 | refs/heads/master | 2021-01-10T08:44:15.941341 | 2016-01-03T03:05:31 | 2016-01-03T03:05:31 | 48,914,504 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 755 | java | package myFrameU.product.entity;
import java.io.Serializable;
public class ProductTesefuwu implements Serializable{
private int id;
private String name;
private String tsfwkey;
private boolean addProductMust;//在添加产品的时候是否要必须填写的
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public boolean isAddProductMust() {
return addProductMust;
}
public void setAddProductMust(boolean addProductMust) {
this.addProductMust = addProductMust;
}
public String getTsfwkey() {
return tsfwkey;
}
public void setTsfwkey(String tsfwkey) {
this.tsfwkey = tsfwkey;
}
}
| [
"593949938@qq.com"
] | 593949938@qq.com |
d49e77d92e5513c20a8812d8882b82fca846723f | 6f6aa7544c9277b0e6821b7abf4d203a8f3f814a | /src/DynamicProgramming/SubSum.java | b88ed2a0bb05b4154ac1963eabb4b203751b9d8a | [] | no_license | AnandSharma13/DS-Practice | 66d6729ae5f76f4c430727171a8caa05e2972a82 | f0124fe2cfc5b2a2eefdabfa61908e0300bf6cde | refs/heads/master | 2021-05-02T11:21:50.525379 | 2016-10-01T23:07:55 | 2016-10-01T23:07:55 | 50,379,127 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,175 | java | package DynamicProgramming;
/**
* Created by Anand on 6/14/2016.
*/
public class SubSum {
public static boolean subSumRecursive(int [] num, int len, int sum){
if(sum ==0)
return true;
if(len ==0)
return false;
if(num[len-1] > sum)
return subSumRecursive(num, len-1, sum);
return subSumRecursive(num, len-1, sum - num[len-1]) || subSumRecursive(num, len-1, sum);
}
public static boolean subSumDp(int [] num, int len, int sum){
boolean [][] lookUp = new boolean [len +1][sum+1];
for(int i =0;i<=len;i++)
lookUp[i][0] = true;
for(int i =1;i<=sum;i++)
lookUp[0][i] = false;
for(int i =1;i<=len;i++)
for(int j=1;j<=sum;j++){
lookUp[i][j] = lookUp[i-1][j];
if(num[i-1]<=j){
lookUp[i][j] = lookUp [i][j] || lookUp[i-1][j-num[i-1]];
}
}
return lookUp[len][sum];
}
public static void main(String[] args) {
int[] nums = new int[]{5, 1};
System.out.println(subSumRecursive(nums, nums.length, 6));
}
}
| [
"saurabh713@gmail.com"
] | saurabh713@gmail.com |
6db1ad9d4505ec816df7e6a67c3dc86775d5c3c3 | 441c135be1083b88234d083fbed7b94d6df5701a | /src/main/java/org/srang/madness/manager/model/Score.java | 7c1ea798ec00b64cbb39132e8dd08088e582ddaa | [
"Apache-2.0"
] | permissive | JamesM967/madness-manager | 2adb402cb7294dd96948687749c0f1834addd139 | 9709ad79aa7cd6ac8d1709703fdcb95c088d75c2 | refs/heads/master | 2020-06-26T02:32:09.222657 | 2016-11-21T03:47:17 | 2016-11-21T03:47:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 516 | java | package org.srang.madness.manager.model;
import lombok.Data;
import org.springframework.data.jpa.domain.support.AuditingEntityListener;
import javax.persistence.Entity;
import javax.persistence.EntityListeners;
import javax.persistence.Id;
import java.io.Serializable;
/**
* Created by srang on 11/5/2016.
*/
@Data
@Entity
@EntityListeners(AuditingEntityListener.class)
public class Score implements Serializable {
@Id
Integer scoreId;
Integer ruelsetId;
Integer bracketId;
Integer score;
}
| [
"srang2010@gmail.com"
] | srang2010@gmail.com |
93a5cf944f7d08437fde904833b35bcca56c3920 | 20adf6ad9fd81b90e3f3a329107047440a671161 | /src/Creational/FactoryMethod/NewGeep.java | dc6c0da37916dd5e6d3a05cbf9e8733edb263b9d | [] | no_license | daria80/patterns | 91586fb3cc08053f1456aab725e41661fb77de9e | f0bc0ce96c40c7a8a78ab95564c4aab948adb4a4 | refs/heads/master | 2022-11-23T16:33:45.434498 | 2020-07-07T21:02:28 | 2020-07-07T21:02:28 | 260,185,370 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 157 | java | package Creational.FactoryMethod;
public class NewGeep extends Geep {
public void newFunction() {
System.out.println("new function");
}
}
| [
"dddsssmmm555@mail.ru"
] | dddsssmmm555@mail.ru |
35174f1f230e6d8214dcbf4706d0752b49db81a9 | 568940c07b1826f5f616a95d87f8ed185b6405aa | /javawork/basicJava/src/chap05/Array2DTest01.java | 3b0dac3bab27dda7f9e1133cf3fca8f17d52ab8f | [] | no_license | wishinghyun/multiJava | ae8c6151a4982fc78b38d60be6289c8580f98abe | fde95bf7f5e822ba88d9ef58c451bcdacfd180e2 | refs/heads/master | 2022-05-25T00:50:53.914094 | 2020-04-29T00:47:36 | 2020-04-29T00:47:36 | 259,785,421 | 0 | 0 | null | null | null | null | UHC | Java | false | false | 1,290 | java | package chap05;
//2차원 배열 작성 연습
public class Array2DTest01 {
public static void main(String[] args) {
// 2차원 배열의 선언과 생성
int[][] myarr = new int[2][3];
// 2차원 배열의 초기화
myarr[0][0] = 100;
myarr[1][1] = 200;
// myarr[2][2] = 300; Exception 발생
System.out.println("myarr의 2번째 요소가 참조하는 배열의 0번 요소의 값" + myarr[1][0]);
System.out.println("myarr의 1번째 요소가 참조하는 배열의 0번 요소의 값" + myarr[0][0]);
// 다차원 배열의 요소의 갯수
System.out.println("배열의 갯수=>" + myarr.length);
System.out.println("myarr의 0번 요소가 참조하는 배열의 요소의 갯수:"
+ myarr[1].length);
// 전체 배열의 요소를 엑세스하기 - length를 직접 쓰고 접근하기
for (int outer = 0; outer < 2; outer++) {
for (int i = 0; i < 3; i++) {
System.out.print(myarr[outer][i] + "\t");
}
System.out.println();
}
// 전체 배열의 요소를 엑세스하기 - 배열의 length변수를 이용해서 접근하기
for (int outer = 0; outer < myarr.length; outer++) {
for (int i = 0; i < myarr[outer].length; i++) {
System.out.print(myarr[outer][i] + "\t");
}
System.out.println();
}
}
}
| [
"wishinghyun@naver.com"
] | wishinghyun@naver.com |
dcd864c3f447ba9f38c8631080f336bb17b9c92d | 4d22afd8582191a341a6438c32b666763003b79f | /TZ-KF-第八次作业(Activity_Intent_LifeCycle)-20150731/Lsn8Homework/src/com/lkf/lsn8homework/MainActivity.java | 398c983938fbd2b968d84250e709fe89724a7ea8 | [] | no_license | Moon-College/July_PublicWork | 2715b3c58c07bffeaad4df48cbf1dff78e43eb85 | b0e907c542974c9cf2f93a9c9cc27be525824aed | refs/heads/master | 2021-01-16T19:00:44.771289 | 2015-11-08T16:47:20 | 2015-11-08T16:47:20 | 37,726,204 | 19 | 10 | null | null | null | null | UTF-8 | Java | false | false | 1,476 | java | package com.lkf.lsn8homework;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
public class MainActivity extends ActionBarActivity implements OnClickListener {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
findViewById(R.id.btn1).setOnClickListener(this);
findViewById(R.id.btn2).setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.btn1:
startActivity(new Intent(this, ShowPhotoActivity.class));
break;
case R.id.btn2:
// 用隐式意图打开第一个界面
startActivity(new Intent(ShowPhotoActivity.ACTION));
break;
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
| [
"zoneoflkf@qq.com"
] | zoneoflkf@qq.com |
59927d1dc7498a7ffcacb5010803a2839576ae1b | 7c84ca81394388a34a368edda93cf971352fe997 | /src/test/java/com/github/nduyhai/helloworld/HomeControllerApplicationTest.java | e3352bcb9b6bcee71755d2282794cf2e3192bbe8 | [] | no_license | sephera/docker-spring-hello-world | effe8980902f23ac03693005836019b2c4f1f544 | de21f2657c44a0a012125fab9cb782f1846f3e9d | refs/heads/master | 2020-03-15T17:10:36.618730 | 2018-08-10T09:25:06 | 2018-08-10T09:25:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,249 | java | package com.github.nduyhai.helloworld;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.servlet.MockMvc;
import static org.hamcrest.CoreMatchers.containsString;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
@RunWith(SpringRunner.class)
@SpringBootTest
@AutoConfigureMockMvc
public class HomeControllerApplicationTest {
@Autowired
private MockMvc mockMvc;
@Test
public void getHelloWorld() throws Exception {
this.mockMvc.perform(get("/"))
.andDo(print())
.andExpect(status().isOk())
.andExpect(content().string(containsString("Hello world!\n")));
}
} | [
"1533478@hcmut.edu.vn"
] | 1533478@hcmut.edu.vn |
13dea1cce731d3f679341835827f1c61688d113d | 085fba66fcd6f56c747445ed8ad99735b8fc372d | /src/main/java/net/zerotodev/app/demo/calculator/service/ItemService.java | 9bbfe2d904cb74655ed376db60d2a3f7be0e89ff | [] | no_license | parkjungkwan/madrid-sb-docker | 055e4afb0139855290db3105a159103aa97c29c2 | 7f300cb9ee8b7508e35e9c38923048c3929df562 | refs/heads/main | 2023-07-08T06:29:42.451495 | 2021-08-12T07:46:21 | 2021-08-12T07:46:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 421 | java | package net.zerotodev.app.demo.calculator.service;
import net.zerotodev.app.demo.calculator.entity.Item;
import net.zerotodev.app.demo.calculator.entity.User;
import org.springframework.stereotype.Component;
import java.util.List;
import java.util.Optional;
@Component public interface ItemService {
List<Item> findAll();
List<Item> findAllByItemName(String itemName);
Optional<Item> findById(long id);
}
| [
"pakjkwan@gmail.com"
] | pakjkwan@gmail.com |
8159d0c8ad0dbf4b7645ff3df4b6e6a61a58fe46 | 64ba560aa2e3b3fedbbc2bcc24a76fcd7a9a9867 | /src/sinTerminar/Brainfuck.java | ff34f3bdd883c14103127652a2433d9f4218b215 | [] | no_license | kevin554/UVA-java | 767f4433ce2e75cc0af21210fcd2d5225b58c1cf | 307c72490c448be365a81420c04a45cd41af5d26 | refs/heads/master | 2020-09-28T04:15:49.189758 | 2019-12-08T16:22:58 | 2019-12-08T16:22:58 | 226,685,402 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,816 | java | package sinTerminar;
/*
UVA #11956
https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=3107
Recently your friend Bob has bought a new brainfuck programmable LED display. However executing
a program directly on LED display takes huge amount of time. Because of this, now Bob decided to
write the interpreter of display instruction set in order to test and debug all his programs on his PC and
only after that execute his code on LED display. However Bob knows only one programming language
— its certainly brainfuck (otherwise he would not have bought this LED display). So he asks you to
write him an interpreter.
A display’s program is a sequence of commands executed sequentially. The commands of the display
processor is a subset of brainfuck language commands. The commands that processor was capable to
execute were ‘>’, ‘<’, ‘+’, ‘-’ and ‘.’, which are described in the table below. Moreover, this LED
display has an array of 100 bytes of circular memory (initialised with zeros) and a pointer to this
array (initialised to point to the leftmost byte of the array). This means, that after incrementing a
pointer, which points to the rightmost byte of memory, it will point to the leftmost byte and vice versa.
Individual bytes are circular as well, so increasing a 255 gives a 0 and vice versa.
Command Description
> Increment the pointer (to point to the next cell to the right).
< Decrement the pointer (to point to the next cell to the left).
+ Increment (increase by one) the byte at the pointer.
- Decrement (decrease by one) the byte at the pointer.
. Output the value of the byte at the pointer.
Input
There is a number of tests T (T ≤ 100) on the first line. After T tests follow. Each test case is a
sequence of display processor commands on a separate line. You can assume that line length is less
than 100000.
Output
For each test output a single line ‘Case T: D’. Where T is the test number (starting from 1) and D
is display’s memory dump in hexademical numeration system after executing given brainfuck program.
Every byte must be separated exactly by one space character. See examples for clarification. Please
note, that the sample input and output is divided into several lines only for convenience.
Sample Input
1
..++<><<+++>>++++++++++++++++++++++++++>>>+++
<+...++<><<+++>>++++++++++++++++++++++++++>>>
+++<+...++<><<+++>>++++++++++++++++++++++++++
>>>+++<+.
Sample Output
Case 1: 1F 00 20 03 1D 03 01 03 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 03 00
*/
public class Brainfuck {
} | [
"kevinduran@outlook.com"
] | kevinduran@outlook.com |
db59ba554850f2160031bd7fbafb8fb2f0f00735 | 1fef0dbcf248dcd7e24604a9b8f3a2d24274a1b8 | /gitProject/src/gitProject/GitTest.java | 4186d8d27508e4d637417ff7aec6ea6f94e377ec | [] | no_license | jslt-ydl-xyy/gitRespository | 92ebc4fff313cc24a7239de3fcffa2c0fc233310 | a1f5daf5f8a0002ff64e77848cd0904b03ec68d8 | refs/heads/master | 2021-07-08T20:02:43.238314 | 2019-07-15T03:03:52 | 2019-07-15T03:03:52 | 196,307,360 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 97 | java | package gitProject;
public class GitTest {
public static void main(String[] args) {
}
}
| [
"jslt_ydl_xyy@163.com"
] | jslt_ydl_xyy@163.com |
d33875fbe6f30d5d3a681026d0db27e05b1b0668 | e483845be98195d858bfd6f5270c6a9212a49a82 | /src/userInterface/CenterUI.java | 0d2ba10ad8a76015318a53316edca11eb47f5b5a | [] | no_license | daucf23/Rummy | d453855642369c4207aa516f2156be74649e4bf3 | 32d8664a45975bec2eb8df81da8a7f0e7cdf1682 | refs/heads/master | 2020-03-14T04:32:50.517418 | 2018-04-28T21:14:26 | 2018-04-28T21:14:26 | 131,444,051 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 14,725 | 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 userInterface;
import core.Cards;
import core.Player;
import java.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Image;
import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JToggleButton;
/**
*
* @author justi_000
*/
public class CenterUI extends JPanel
{
private ArrayList<JToggleButton> cards;
private CardListener cardListener;
private GridBagLayout gridBagLayout;
private GridBagConstraints constraints;
private ImageIcon cardImage;
private Player player;
private ImageIcon bottom;
private JLabel logo;
private ImageIcon logoImage;
/**
*
*/
public CenterUI ()
{
initComponents();
}
private void initComponents()
{
// layout manager
gridBagLayout = new GridBagLayout();
constraints = new GridBagConstraints();
// setting up JPanel
this.setLayout(gridBagLayout);
this.setMinimumSize(new Dimension(200, 600));
this.setPreferredSize(new Dimension(200, 600));
this.setMaximumSize(new Dimension(200, 600));
//this.setBorder(BorderFactory.createRaisedBevelBorder());
this.setBackground( new Color(34,139,34));
cards = new ArrayList<JToggleButton>();
cardListener = new CardListener();
logo = new JLabel();
logo.setMinimumSize(new Dimension(165, 100));
logo.setPreferredSize(new Dimension(165, 100));
logo.setMaximumSize(new Dimension(165, 100));
logoImage = new ImageIcon( getClass().getResource("../images/Rummy.png"));
logoImage = logoResize(logoImage);
logo.setIcon(logoImage);
addComponent(0, 30, 0, 0, this, logo);
for(int i = 0; i < 1; i++)
{
JToggleButton top = new JToggleButton();
top.setMinimumSize(new Dimension(75, 95));
top.setPreferredSize(new Dimension(75, 95));
top.setMaximumSize(new Dimension(75, 95));
top.setAlignmentX(Component.CENTER_ALIGNMENT);
top.putClientProperty("card", (i + 1 ));
top.putClientProperty("value", (i + 1));
top.putClientProperty("selected", false);
addImage(top);
cards.add(top);
addComponent(i, 10, 1, 1, this, top);
}
JToggleButton bot = new JToggleButton();
bot.setMinimumSize(new Dimension(75, 95));
bot.setPreferredSize(new Dimension(75, 95));
bot.setMaximumSize(new Dimension(75, 95));
bot.setAlignmentX(Component.CENTER_ALIGNMENT);
bot.putClientProperty("card", (1));
bot.putClientProperty("value", (1));
bot.putClientProperty("selected", false);
bot.addActionListener(cardListener);
addBottom(bot);
cards.add(bot);
addComponent(1, 10, 1, 1, this, bot);
}
private void addBottom(JToggleButton bot){
bottom = new ImageIcon( getClass().getResource("../images/b2fv.png"));
bottom = imageResize(bottom);
bot.setIcon(bottom);
}
// method for adding the images to the card buttons
private void addImage(JToggleButton card)
{
int value = (int)(Math.random() * 52 + 1);
switch(value)
{
case 1:
cardImage = new ImageIcon( getClass().getResource("../images/1.png"));
break;
case 2:
cardImage = new ImageIcon( getClass().getResource("../images/2.png"));
break;
case 3:
cardImage = new ImageIcon( getClass().getResource("../images/3.png"));
break;
case 4:
cardImage = new ImageIcon( getClass().getResource("../images/4.png"));
break;
case 5:
cardImage = new ImageIcon( getClass().getResource("../images/5.png"));
break;
case 6:
cardImage = new ImageIcon( getClass().getResource("../images/6.png"));
break;
case 7:
cardImage = new ImageIcon( getClass().getResource("../images/7.png"));
break;
case 8:
cardImage = new ImageIcon( getClass().getResource("../images/8.png"));
break;
case 9:
cardImage = new ImageIcon( getClass().getResource("../images/9.png"));
break;
case 10:
cardImage = new ImageIcon( getClass().getResource("../images/10.png"));
break;
case 11:
cardImage = new ImageIcon( getClass().getResource("../images/11.png"));
break;
case 12:
cardImage = new ImageIcon( getClass().getResource("../images/12.png"));
break;
case 13:
cardImage = new ImageIcon( getClass().getResource("../images/13.png"));
break;
case 14:
cardImage = new ImageIcon( getClass().getResource("../images/14.png"));
break;
case 15:
cardImage = new ImageIcon( getClass().getResource("../images/15.png"));
break;
case 16:
cardImage = new ImageIcon( getClass().getResource("../images/16.png"));
break;
case 17:
cardImage = new ImageIcon( getClass().getResource("../images/17.png"));
break;
case 18:
cardImage = new ImageIcon( getClass().getResource("../images/18.png"));
break;
case 19:
cardImage = new ImageIcon( getClass().getResource("../images/19.png"));
break;
case 20:
cardImage = new ImageIcon( getClass().getResource("../images/20.png"));
break;
case 21:
cardImage = new ImageIcon( getClass().getResource("../images/21.png"));
break;
case 22:
cardImage = new ImageIcon( getClass().getResource("../images/22.png"));
break;
case 23:
cardImage = new ImageIcon( getClass().getResource("../images/23.png"));
break;
case 24:
cardImage = new ImageIcon( getClass().getResource("../images/24.png"));
break;
case 25:
cardImage = new ImageIcon( getClass().getResource("../images/25.png"));
break;
case 26:
cardImage = new ImageIcon( getClass().getResource("../images/26.png"));
break;
case 27:
cardImage = new ImageIcon( getClass().getResource("../images/27.png"));
break;
case 28:
cardImage = new ImageIcon( getClass().getResource("../images/28.png"));
break;
case 29:
cardImage = new ImageIcon( getClass().getResource("../images/29.png"));
break;
case 30:
cardImage = new ImageIcon( getClass().getResource("../images/30.png"));
break;
case 31:
cardImage = new ImageIcon( getClass().getResource("../images/31.png"));
break;
case 32:
cardImage = new ImageIcon( getClass().getResource("../images/32.png"));
break;
case 33:
cardImage = new ImageIcon( getClass().getResource("../images/33.png"));
break;
case 34:
cardImage = new ImageIcon( getClass().getResource("../images/34.png"));
break;
case 35:
cardImage = new ImageIcon( getClass().getResource("../images/35.png"));
break;
case 36:
cardImage = new ImageIcon( getClass().getResource("../images/36.png"));
break;
case 37:
cardImage = new ImageIcon( getClass().getResource("../images/37.png"));
break;
case 38:
cardImage = new ImageIcon( getClass().getResource("../images/38.png"));
break;
case 39:
cardImage = new ImageIcon( getClass().getResource("../images/39.png"));
break;
case 40:
cardImage = new ImageIcon( getClass().getResource("../images/40.png"));
break;
case 41:
cardImage = new ImageIcon( getClass().getResource("../images/41.png"));
break;
case 42:
cardImage = new ImageIcon( getClass().getResource("../images/42.png"));
break;
case 43:
cardImage = new ImageIcon( getClass().getResource("../images/43.png"));
break;
case 44:
cardImage = new ImageIcon( getClass().getResource("../images/44.png"));
break;
case 45:
cardImage = new ImageIcon( getClass().getResource("../images/45.png"));
break;
case 46:
cardImage = new ImageIcon( getClass().getResource("../images/46.png"));
break;
case 47:
cardImage = new ImageIcon( getClass().getResource("../images/47.png"));
break;
case 48:
cardImage = new ImageIcon( getClass().getResource("../images/48.png"));
break;
case 49:
cardImage = new ImageIcon( getClass().getResource("../images/49.png"));
break;
case 50:
cardImage = new ImageIcon( getClass().getResource("../images/50.png"));
break;
case 51:
cardImage = new ImageIcon( getClass().getResource("../images/51.png"));
break;
case 52:
cardImage = new ImageIcon( getClass().getResource("../images/52.png"));
break;
}
cardImage = imageResize(cardImage);
card.setIcon(cardImage);
}
// X is the column
// Y is the row
// W is the width in cells
// H is the height in cells
// aContainer is the container the component is added to
// aComponent is the component being added to the container
private void addComponent( int x, int y, int w, int h,
Container aContainer, Component aComponent )
{
constraints.gridx = x;
constraints.gridy = y;
constraints.gridwidth = w;
constraints.gridheight = h;
if(y == 7)
{
constraints.insets = new Insets(8, 8, 8, 8);
}
else
{
constraints.insets = new Insets(3, 3, 3, 3);
}
gridBagLayout.setConstraints( aComponent, constraints );
aContainer.add( aComponent );
}
// method to resize the image to fit on the jbutton
private ImageIcon imageResize(ImageIcon icon)
{
Image image = icon.getImage();
Image newImage =
image.getScaledInstance(75, 95, java.awt.Image.SCALE_SMOOTH);
icon = new ImageIcon(newImage);
return icon;
}
private ImageIcon logoResize(ImageIcon icon)
{
Image image = icon.getImage();
Image newImage =
image.getScaledInstance(160, 100, java.awt.Image.SCALE_SMOOTH);
icon = new ImageIcon(newImage);
return icon;
}
/**
*
* @param cardData
*/
public void setCard(ArrayList<Cards> cardData)
{
int index = 0;
for(JToggleButton card : cards)
{
card.putClientProperty("value", cardData.get(index).getFaceValue());
addImage(card);
index++;
}
}
/**
* @return the player
*/
public Player getPlayer() {
return player;
}
/**
* @param player the player to set
*/
public void setPlayer(Player player) {
this.player = player;
}
private class CardListener implements ActionListener
{
@Override
public void actionPerformed(ActionEvent ae)
{
int card = 0;
int value = 0;
boolean selected = false;
if(ae.getSource() instanceof JToggleButton)
{
JToggleButton button = (JToggleButton)ae.getSource();
card = (int)button.getClientProperty("card");
value = (int)button.getClientProperty("value");
selected = button.isSelected();
if(selected)
{
button.setBorder(BorderFactory.createLineBorder(Color.RED, 3));
button.putClientProperty("selected", true);
}
else
{
button.setBorder(BorderFactory.createLineBorder(null));
button.putClientProperty("selected", false);
}
}
}
}
private class ShuffleListener implements ActionListener
{
@Override
public void actionPerformed(ActionEvent ae)
{
ArrayList<Cards> cardData = player.getShuffle().getCards();
int counter = 0;
for(JToggleButton card: cards)
{
boolean selected = (boolean)card.getClientProperty("selected");
if(!selected)
{
cardData.get(counter).shuffleCards();
}
counter++;
}
setCard(player.getShuffle().getCards());
}
}
}
| [
"davidalmeida2@knights.ucf.edu"
] | davidalmeida2@knights.ucf.edu |
513e6576425de8d2569af71bf55f974c749f353d | 54b4af9eea77b402ae22ce658d329cd8219b99e6 | /src/main/java/com/hp/ov/nms/sdk/phys/NmsCard.java | 27300b0f443a198ba33edeb8064e2f872a24fced | [] | no_license | propegas/camel-wsdl-nnm-events-adapter | d17d48a7af95e5b09afaf1e1ccba918a7a34214d | 1c7c28e8e21900446af9cc1d4ca79b44c604fcf7 | refs/heads/master | 2020-05-21T04:41:14.412318 | 2017-05-31T13:32:14 | 2017-05-31T13:32:14 | 46,262,948 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 279 | java | package com.hp.ov.nms.sdk.phys;
import java.rmi.Remote;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.jws.soap.SOAPBinding.Style;
@WebService
@SOAPBinding(style = Style.RPC)
public interface NmsCard extends Remote, NmsCardLocal{
}
| [
"vgoryachev@at-consulting.ru"
] | vgoryachev@at-consulting.ru |
7727b106823f13467ecbfc316efa403493d29001 | 13f1bb964c5ad37e9f01ea8d19a8509c79ed1bbe | /src/main/java/bace/circuit/Circuit.java | 3dafc5041ac11a3fd26c1019540ea33bcd5e9517 | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | uheqiang/dizk | f630874b9a565ada05009f9244b5ae2ab0d28872 | 4235153161fb18f9e4970cb16e7c122f6a6f86a6 | refs/heads/master | 2020-12-07T14:37:58.602988 | 2020-03-24T10:15:18 | 2020-03-24T10:15:18 | 232,739,212 | 0 | 0 | NOASSERTION | 2020-01-09T06:32:10 | 2020-01-09T06:32:09 | null | UTF-8 | Java | false | false | 4,866 | java | /* @file
*****************************************************************************
* @author This file is part of zkspark, developed by SCIPR Lab
* and contributors (see AUTHORS).
* @copyright MIT license (see LICENSE file)
*****************************************************************************/
package bace.circuit;
import algebra.fields.AbstractFieldElementExpanded;
import scala.Tuple3;
import java.io.Serializable;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Stack;
/* Circuit is the implementation of an arithmetic circuit. A Circuit is composed of Gates
* and given an input array, evaluated on the specified gates. */
public class Circuit<FieldT extends AbstractFieldElementExpanded<FieldT>> implements Serializable {
private ArrayList<InputGate<FieldT>> inputGates;
private Gate<FieldT> resultGate;
public int inputSize;
public Circuit(ArrayList<InputGate<FieldT>> _inputGates, Gate<FieldT> _resultGate) {
inputGates = _inputGates;
resultGate = _resultGate;
inputSize = _inputGates.size();
}
/* Returns the evaluation of the circuit with the provided input. */
public FieldT compute(ArrayList<FieldT> input) throws Exception {
if (input.size() != this.inputSize) throw new Exception("Assignment size must match circuit size");
for (int i = 0; i < this.inputSize; i++) {
this.inputGates.get(i).loadValue(input.get(i));
}
return this.evaluate();
}
/* Returns the stack-based evaluation of the circuit gates. */
private FieldT evaluate() {
this.clear();
Stack<Gate<FieldT>> computationStack = new Stack<>();
computationStack.push(this.resultGate);
while (computationStack.size() > 0) { /* Post-order traversal. */
Gate<FieldT> topGate = computationStack.pop();
if (!topGate.leftEvaluated()) computationStack.push(topGate.left);
else if (!topGate.rightEvaluated()) computationStack.push(topGate.right);
else {
topGate.evaluate(); /* Evaluate self after its left and right child gates are evaluated. */
computationStack.pop(); /* After evaluation, remove self from computation stack. */
}
}
return this.resultGate.evaluatedResult;
}
/* Returns the largest degree computed by the circuit. */
public long totalDegree() {
return this.resultGate.totalDegree();
}
/* Returns the sum of the variable gate degrees. */
public BigInteger degreeSum() {
return this.resultGate.degrees().values().stream().reduce((a, b) -> a.add(b)).orElse(BigInteger.ZERO);
}
/* Returns true if the circuit has no loops. */
public boolean isValid() {
return !hasLoops();
}
/* Clears the state of the circuit in post-order traversal. */
private void clear() {
/* Format of element: (gate, leftTraversed, rightTraversed). */
Stack<Tuple3<Gate<FieldT>, Boolean, Boolean>> traversalStack = new Stack<>();
traversalStack.push(new Tuple3<>(this.resultGate, false, false));
HashSet<Gate<FieldT>> visited = new HashSet<>();
visited.add(this.resultGate);
while (traversalStack.size() > 0) {
Tuple3<Gate<FieldT>, Boolean, Boolean> top = traversalStack.pop();
Gate<FieldT> topGate = top._1();
boolean leftTraversed = top._2();
boolean rightTraversed = top._3();
if (topGate.left != null && !visited.contains(topGate.left) && !leftTraversed) {
traversalStack.push(new Tuple3<>(topGate, true, rightTraversed));
traversalStack.push(new Tuple3<>(topGate.left, false, false));
} else if (topGate.right != null && !visited.contains(topGate.right) && !rightTraversed) {
traversalStack.push(new Tuple3<>(topGate, leftTraversed, true));
traversalStack.push(new Tuple3<>(topGate.right, false, false));
} else {
topGate.clear();
}
}
}
/* Returns true if any path contains a loop. */
private boolean hasLoops() {
HashSet<Gate<FieldT>> visited = new HashSet<>();
return _hasLoops(visited, this.resultGate);
}
/* A backtracking for loops from result to input. */
private boolean _hasLoops(HashSet<Gate<FieldT>> visited, Gate<FieldT> gate) {
if (visited.contains(gate)) return true;
visited.add(gate);
if (gate.left != null) {
if (_hasLoops(visited, gate.left)) return true;
}
if (gate.right != gate.left && gate.right != null) {
if (_hasLoops(visited, gate.right)) return true;
}
visited.remove(gate);
return false;
}
}
| [
"howardwu@berkeley.edu"
] | howardwu@berkeley.edu |
722a24fc0bd6f9fd834a0409e5a32438c7f5a3dc | 71bb3dee3dc33f5a1edf8728bd225df19f1934d2 | /login-start/src/main/java/hello/login/web/member/MemberController.java | 683fca0292956e362f48b111aaeb4d2652e02418 | [] | no_license | JungwooSim/Inflearn-Spring-MVC-2 | 49ae535b623b42108e4ad6bf7d647c8f8f05d4cb | 1673ea0c8c1386deca10f1a8c0bd38ab04f7dfc6 | refs/heads/master | 2023-07-29T12:33:14.976196 | 2021-09-04T13:59:26 | 2021-09-04T13:59:26 | 380,779,987 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,126 | java | package hello.login.web.member;
import hello.login.domain.member.Member;
import hello.login.domain.member.MemberRepository;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Controller;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import javax.validation.Valid;
@Controller
@RequiredArgsConstructor
@RequestMapping("/members")
public class MemberController {
private final MemberRepository memberRepository;
@GetMapping("/add")
public String addForm(@ModelAttribute("member") Member member) {
return "members/addMemberForm";
}
@PostMapping("/add")
public String save(@Valid @ModelAttribute Member member, BindingResult bindingResult) {
if (bindingResult.hasErrors()) {
return "members/addMemberForm";
}
memberRepository.save(member);
return "redirect:/";
}
}
| [
"cscd053@gmail.com"
] | cscd053@gmail.com |
3c5ba6943551f8fb14d6687be2965267ae2cd638 | b1a7cfddb3a0847b13e991223519637a5b46f562 | /src/main/java/com/tale/model/po/mbg/TAttach.java | e3bc1944f93ea6b952a390a36bbe9d0629254944 | [
"MIT"
] | permissive | 319wuge/tale | 142ae00c0fb1bfe60bd553955c0daa5f362f3616 | d61151a578dd22c7b67eb8012c9aaed49c1a47a0 | refs/heads/master | 2021-07-01T14:00:08.182169 | 2017-09-22T10:57:25 | 2017-09-22T10:57:25 | 104,313,031 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,662 | java | package com.tale.model.po.mbg;
public class TAttach {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column t_attach.id
*
* @mbggenerated
*/
private Integer id;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column t_attach.fname
* 附件名称
*
* @mbggenerated
*/
private String fname;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column t_attach.ftype
* 附件类型
*
* @mbggenerated
*/
private String ftype;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column t_attach.fkey
* 关键字
*
* @mbggenerated
*/
private String fkey;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column t_attach.author_id
* 作者ID
*
* @mbggenerated
*/
private Integer author_id;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column t_attach.created
* 创建次数
*
* @mbggenerated
*/
private Integer created;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column t_attach.id
*
* @return the value of t_attach.id
*
* @mbggenerated
*/
public Integer getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column t_attach.id
*
* @param id the value for t_attach.id
*
* @mbggenerated
*/
public void setId(Integer id) {
this.id = id;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column t_attach.fname
*
* @return the value of t_attach.fname
*
* @mbggenerated
*/
public String getFname() {
return fname;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column t_attach.fname
*
* @param fname the value for t_attach.fname
*
* @mbggenerated
*/
public void setFname(String fname) {
this.fname = fname == null ? null : fname.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column t_attach.ftype
*
* @return the value of t_attach.ftype
*
* @mbggenerated
*/
public String getFtype() {
return ftype;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column t_attach.ftype
*
* @param ftype the value for t_attach.ftype
*
* @mbggenerated
*/
public void setFtype(String ftype) {
this.ftype = ftype == null ? null : ftype.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column t_attach.fkey
*
* @return the value of t_attach.fkey
*
* @mbggenerated
*/
public String getFkey() {
return fkey;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column t_attach.fkey
*
* @param fkey the value for t_attach.fkey
*
* @mbggenerated
*/
public void setFkey(String fkey) {
this.fkey = fkey == null ? null : fkey.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column t_attach.author_id
*
* @return the value of t_attach.author_id
*
* @mbggenerated
*/
public Integer getAuthor_id() {
return author_id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column t_attach.author_id
*
* @param author_id the value for t_attach.author_id
*
* @mbggenerated
*/
public void setAuthor_id(Integer author_id) {
this.author_id = author_id;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column t_attach.created
*
* @return the value of t_attach.created
*
* @mbggenerated
*/
public Integer getCreated() {
return created;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column t_attach.created
*
* @param created the value for t_attach.created
*
* @mbggenerated
*/
public void setCreated(Integer created) {
this.created = created;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table t_attach
*
* @mbggenerated
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", id=").append(id);
sb.append(", fname=").append(fname);
sb.append(", ftype=").append(ftype);
sb.append(", fkey=").append(fkey);
sb.append(", author_id=").append(author_id);
sb.append(", created=").append(created);
sb.append("]");
return sb.toString();
}
} | [
"1799735174@qq.com"
] | 1799735174@qq.com |
a89b9a1a0f71ff287d87ef0911712db1d99c9bf3 | bb9fc663e7f493ac0bbf6f7655e021362ed29473 | /FriendBiz/src/main/manage/Account.java | 9df8bcb17d5458382d4b38a605af0bef6538812d | [] | no_license | MarkSlayer456/FriendBiz | c63bd4afd756db1840cb5414a192d575da688137 | ba3d9bec78cb5b06f73e1fa874bdbaef5a712801 | refs/heads/master | 2020-03-28T10:15:28.149242 | 2019-02-19T18:42:06 | 2019-02-19T18:42:06 | 146,341,629 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 161 | java | package main.manage;
public class Account {
public Account() { // Each person will be required to have one of these to use the application
}
}
| [
"MarkSlayer456@DESKTOP-4K7FNFP"
] | MarkSlayer456@DESKTOP-4K7FNFP |
68097edab38df744da6c864ab768dbf84757d4e5 | 71673ddba3c2b575e1cbf3ff4f99429100d6868b | /src/Chapter03/P3.java | 822d78c0ddea0dff80345a43a48aa41347afed04 | [] | no_license | Chris-Tjahjo/JAVA | d6af63f0c2e6de222b947d68bd79d083674f0fdf | 9587536817e780226ccb94986e14c150d69e4184 | refs/heads/master | 2020-04-17T01:31:20.614041 | 2019-01-22T19:29:30 | 2019-01-22T19:29:30 | 166,095,779 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,997 | java | package Chapter03;
import java.util.Scanner;
/**
* Tells if number is greater or less than and is dividable than zero and letter
* grade
*
* @author Chris Tjahjo
*/
public class P3 {
/**
* Main method
*
* @param args command line arguments
*/
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter the first number: ");
int first = input.nextInt();
System.out.print("Enter the second number: ");
int second = input.nextInt();
if (first < second) {
System.out.println("The first number is less than the second.");
}
if (first > second) {
System.out.println("The first number is greater than the second.");
}
if (first == second) {
System.out.println("The first number is equal to the second.");
}
if (first < second) {
System.out.println("The first number is less than or equal to the second.");
}
if (first != second) {
System.out.println("The first number is not equal to the second.");
}
if (second == 0) {
System.out.println("Cannot divide by zero");
} else if (first / second < 1) {
System.out.println("Proper fraction");
} else {
System.out.println("Improper fraction");
}
if (first >= 90) {
System.out.println("A");
} else if (first >= 80) {
System.out.println("B");
} else if (first >= 70) {
System.out.println("C");
} else if (first >= 60) {
System.out.println("D");
} else {
System.out.println("F");
}
if (second >= 1 && second <= 100) {
System.out.println("In range");
} else {
System.out.println("Out of range");
}
}
}
| [
""
] | |
0e6eac5caddbfe8aa6ae1643c8d890a09a6312bf | c07eff890584e1885be5f3c8dec58c4727c0f4fb | /src/SystemDesign/LRUcache.java | 0c960832bde1eac51c5c16f01b550ee962fb8b04 | [] | no_license | XinliYu/Java_Leetcode | e0c966568e0686cdf44f0bbb90816c8de674e071 | 12a802d78f467da9fc7d531d29734776d84c2135 | refs/heads/master | 2020-09-22T16:30:34.714108 | 2019-12-02T03:24:27 | 2019-12-02T03:24:27 | 225,273,799 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,982 | java | package SystemDesign;
import java.util.HashMap;
import java.util.Map;
public class LRUcache {
/*
Our internal definition of a doubly linked list
node, put in this class for convenience since
this is submitted in one file on Leetcode
*/
private class DNode {
int key;
int value;
DNode prev;
DNode next;
}
private Map<Integer, DNode> hashtable = new HashMap<Integer, DNode>();
private DNode head, tail;
private int totalItemsInCache;
private int maxCapacity;
public LRUcache(int maxCapacity) {
// Cache starts empty and capacity is set by client
totalItemsInCache = 0;
this.maxCapacity = maxCapacity;
// Initialize the dummy head of the cache
head = new DNode();
head.prev = null;
// Init the dummy tail of the cache
tail = new DNode();
tail.next = null;
// Wire the head and tail together
head.next = tail;
tail.prev = head;
}
/*
Retrieve an item from the cache
*/
public int get(int key) {
DNode node = hashtable.get(key);
boolean itemFoundInCache = node != null;
// Empty state check. Should raise exception here.
if(!itemFoundInCache){
return -1;
}
// Item has been accessed. Move to the front of the list.
moveToHead(node);
return node.value;
}
/*
Add an item to the cache if it is not already there,
if it is already there update the value and move it
to the front of the cache
*/
public void put(int key, int value) {
DNode node = hashtable.get(key);
boolean itemFoundInCache = node != null;
if(!itemFoundInCache){
// Create a new node
DNode newNode = new DNode();
newNode.key = key;
newNode.value = value;
// Add to the hashtable and the doubly linked list
hashtable.put(key, newNode);
addNode(newNode);
// We just added an item to the cache
totalItemsInCache++;
// If over capacity evict an item with LRU cache eviction policy
if(totalItemsInCache > maxCapacity){
removeLRUEntryFromStructure();
}
} else {
// If item is in cache just update and move it to the head
node.value = value;
moveToHead(node);
}
}
/*
Remove the least used entry from the doubly linked
list as well as the hashtable. Hence it is evicted
from the whole LRUCache structure
*/
private void removeLRUEntryFromStructure() {
DNode tail = popTail();
hashtable.remove(tail.key);
--totalItemsInCache;
}
/*
Insertions to the doubly linked list will always
be right after the dummy head
*/
private void addNode(DNode node){
// Wire the node being inserted
node.prev = head;
node.next = head.next;
// Re-wire the head's old next
head.next.prev = node;
// Re-wire the head to point to the inserted node
head.next = node;
}
/*
Remove the given node from the doubly linked list
*/
private void removeNode(DNode node){
// Grab reference to the prev and next of the node
DNode savedPrev = node.prev;
DNode savedNext = node.next;
// Cut out going forwards
savedPrev.next = savedNext;
// Cut out going backards
savedNext.prev = savedPrev;
}
/*
Move a node to the head of the doubly linked lsit
*/
private void moveToHead(DNode node){
removeNode(node);
addNode(node);
}
/*
Pop the last item from the structure
*/
private DNode popTail(){
DNode itemBeingRemoved = tail.prev;
removeNode(itemBeingRemoved);
return itemBeingRemoved;
}
}
| [
"xyu350@gatech.edu"
] | xyu350@gatech.edu |
2babcabdb4f1a446862775a5f89e657de8344e1b | 2001d7a8297a1b7c47b53d66b4aba4f72adfb61f | /src/main/java/io/ride/wechat/listener/TokenListener.java | 1168b2fa9137493a1401587b273714f44c394cdc | [] | no_license | Rikhard-Dong/Vote | 491a582ff83647bb65e5103fbd50d9b304ddcd89 | 3356c089a05a580007527c8939b075bf768212bd | refs/heads/master | 2021-05-08T16:41:20.491692 | 2018-05-19T06:08:35 | 2018-05-19T06:08:35 | 120,164,590 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,082 | java | package io.ride.wechat.listener;
import io.ride.wechat.service.TokenService;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import javax.servlet.annotation.WebListener;
import java.util.Timer;
import java.util.TimerTask;
@WebListener
public class TokenListener implements ServletContextListener {
@Override
public void contextInitialized(ServletContextEvent servletContextEvent) {
System.out.println("定时刷新access_token监听器启动");
/*
* 启动后一秒后执行, 然后每一小时刷新一次access_token
*/
Timer timer = new Timer();
timer.schedule(new TokenTimerTask(), 1000, 60 * 60 * 1000);
}
@Override
public void contextDestroyed(ServletContextEvent servletContextEvent) {
}
class TokenTimerTask extends TimerTask {
TokenService tokenService;
TokenTimerTask() {
tokenService = new TokenService();
}
@Override
public void run() {
tokenService.flush();
}
}
}
| [
"supredong@gmail.com"
] | supredong@gmail.com |
4367c262b418304367967d5f2d326b7113b0314b | d2e85550a1fc33bc30e6987274dc787cfe3e50e4 | /chap06/src/sec04/example/Printer.java | 9a272073d9242dc0f01b990198f5be70a3f33b13 | [] | no_license | thinkp0907/SelfStudyJava | a384a0574edbc5fd0f78b45e08fea272c086b62f | 39ad281a4fae4e02a0f3eec588b4f077a2058fd1 | refs/heads/main | 2023-04-25T23:46:41.073365 | 2021-05-17T09:41:12 | 2021-05-17T09:41:12 | 364,168,538 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 269 | java | package sec04.example;
public class Printer {
void println(int x) {
System.out.println(x);
}
void println(boolean x) {
System.out.println(x);
}
void println(double x) {
System.out.println(x);
}
void println(String x) {
System.out.println(x);
}
}
| [
"thinkp0907@gmail.com"
] | thinkp0907@gmail.com |
81d877963efc2d4b91ff359ed0f846781853e9ce | 2b8b4f67ae9848c53eaf41b8a60a824bfdcb5627 | /lemur-gen-parent/gen-admin2/src/main/java/cn/afterturn/gen/common/constant/state/ManagerStatus.java | ed1567f0f183db90ff2b535385d8472f5aeda91b | [
"Apache-2.0"
] | permissive | foodjth/code-gen | 52f4189fa97a56aca7001dba40927790977e6774 | 9101a1c82ff06bc0f2aca9a798d30fb443c741fa | refs/heads/master | 2022-11-02T10:44:25.510514 | 2019-10-18T02:55:32 | 2019-10-18T02:55:32 | 215,928,222 | 2 | 1 | Apache-2.0 | 2022-07-06T20:43:06 | 2019-10-18T02:48:40 | JavaScript | UTF-8 | Java | false | false | 1,004 | java | package cn.afterturn.gen.common.constant.state;
/**
* 管理员的状态
*
* @author fengshuonan
* @Date 2017年1月10日 下午9:54:13
*/
public enum ManagerStatus {
OK(1, "启用"), FREEZED(2, "冻结"), DELETED(3, "被删除");
int code;
String message;
ManagerStatus(int code, String message) {
this.code = code;
this.message = message;
}
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public static String valueOf(Integer value) {
if (value == null) {
return "";
} else {
for (ManagerStatus ms : ManagerStatus.values()) {
if (ms.getCode() == value) {
return ms.getMessage();
}
}
return "";
}
}
}
| [
"892042158@qq.com"
] | 892042158@qq.com |
53cbae366c51ce395dd3b740853783f743c8560e | 7befaa0b02a5c44c1730a85d2accb5c8ce125422 | /src/main/java/part2_chain_of_responsibility/PartCollector.java | 6c65b86662ceba9e65d63142134377c1f4ecc5c9 | [] | no_license | bukbuk1231/DesignPatternFinal | 54eb102326ecb6b5cea0f17f2af17df2429298e0 | b6c2d9d06fce17801eaacca35ce9102a1b1a9ab4 | refs/heads/master | 2020-09-28T00:40:11.473883 | 2019-12-08T13:05:40 | 2019-12-08T13:05:40 | 226,642,800 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 325 | java | package part2_chain_of_responsibility;
public class PartCollector extends Employee {
public PartCollector() {
authorityLevel = PART_COLLECTOR;
}
@Override
protected void write(String message) {
System.out.print(message);
System.out.println(" All parts have been gathered");
}
}
| [
"loudakkk@hotmail.com"
] | loudakkk@hotmail.com |
0ef3cf53d246b2ba49d52146bfd55aebf52e0a58 | 8da01f1afc2c255cd545734c585d6843bccca2f6 | /engine/src/main/java/com/github/bsfowlie/tilegame/engine/graphics/Window.java | 4b29c22b16cfd1f034bdb9fa47b98700f993384e | [] | no_license | bsfowlie/TileGame | e688db1cf1e18be779b524813726edac079b4ed3 | 1f0d3b3b8c5be71178f4cebd42484e33566a9b04 | refs/heads/master | 2020-11-26T04:00:36.278144 | 2019-12-27T04:51:02 | 2019-12-27T04:51:02 | 228,959,520 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,107 | java | package com.github.bsfowlie.tilegame.engine.graphics;
import java.awt.*;
import java.awt.image.BufferStrategy;
import javax.swing.*;
import com.github.bsfowlie.tilegame.engine.Game;
class Window implements Display {
private static final String FRAME_NAME = "game";
private final String title;
private final int width;
private final int height;
private Canvas canvas;
public Window(
final String title,
final int width,
final int height
) {
this.title = title;
this.width = width;
this.height = height;
}
@Override
public void show() {
createFrame();
}
private void createFrame() {
JFrame frame = new JFrame(title);
frame.setName(FRAME_NAME);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setResizable(false);
frame.setVisible(true);
final Dimension size = new Dimension(width, height);
canvas = new Canvas();
canvas.setMaximumSize(size);
canvas.setMinimumSize(size);
canvas.setPreferredSize(size);
frame.add(canvas);
frame.pack();
}
@Override
public String title() {
return title;
}
@Override
public int width() {
return width;
}
@Override
public int height() {
return height;
}
@Override
public void render(
final Game game
) {
if (canvas.getBufferStrategy() == null) {
canvas.createBufferStrategy(3);
}
renderWith(canvas.getBufferStrategy(), game);
}
/* package-private*/ void renderWith(final BufferStrategy strategy, final Game game) {
do {
do {
renderTo((Graphics2D) strategy.getDrawGraphics(), game);
} while (strategy.contentsRestored());
strategy.show();
} while (strategy.contentsLost());
}
/* package-private*/ void renderTo(final Graphics2D g2d, final Game game) {
game.renderTo(g2d);
g2d.dispose();
}
}
| [
"bsfowlie@gmail.com"
] | bsfowlie@gmail.com |
d653e120f3c9c9f811a50cbbd990e2f6b198dfa8 | 29122732d1581948c9622ccec9d212666e950a3d | /vaadin-html5-widgets-core/src/main/java/de/akquinet/engineering/vaadin/html5/widgetset/client/DateFieldConnector.java | 80b264e6bbfecf3dee0af5b2f670e8e2cc918a96 | [
"Apache-2.0"
] | permissive | Switcher05/vaadin-html5-widgets | 5a7b8b02d78e29404c2f5459370e16838149594d | 192fc038a1581114c24292fb25f6057a8eb77823 | refs/heads/master | 2020-05-16T16:25:06.593938 | 2016-02-02T14:45:42 | 2016-02-02T14:45:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,248 | java | /*
* Copyright 2014 akquinet engineering GmbH
*
* 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 de.akquinet.engineering.vaadin.html5.widgetset.client;
import com.google.gwt.core.shared.GWT;
import com.google.gwt.user.client.ui.Widget;
import com.vaadin.client.ui.textfield.TextFieldConnector;
import com.vaadin.shared.ui.Connect;
@Connect(de.akquinet.engineering.vaadin.html5.widgetset.DateField.class)
public class DateFieldConnector extends TextFieldConnector {
/**
*
*/
private static final long serialVersionUID = 1L;
@Override
protected Widget createWidget() {
return GWT.create(DateFieldWidget.class);
}
@Override
public DateFieldWidget getWidget() {
return (DateFieldWidget) super.getWidget();
}
} | [
"srothbucher@NB-ROTHBUCHER.akquinet.de"
] | srothbucher@NB-ROTHBUCHER.akquinet.de |
c687ff9d0df1fd381c569729c565d6850cc55314 | b1a5712b4704bad941bd70701b87d4a97b1bd139 | /org-openide-text/src/main/java/org/openide/text/UndoRedoManager.java | aff7dd9f99565db6dcdcc692148812a3017fe8c6 | [
"Apache-2.0"
] | permissive | aditosoftware/adito-nb-modules | e735922096a44d11830db990d42f16e17bc7ec6f | 5b8f2f928cd334fe6b576177b78d65e1914da0e8 | refs/heads/master | 2023-08-08T07:39:11.174392 | 2023-07-25T11:41:23 | 2023-07-25T11:41:23 | 142,895,048 | 2 | 3 | Apache-2.0 | 2023-09-13T09:27:30 | 2018-07-30T15:34:59 | Java | UTF-8 | Java | false | false | 25,465 | 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.openide.text;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.text.StyledDocument;
import javax.swing.undo.*;
import org.openide.awt.UndoRedo;
/**
* An improved version of UndoRedo manager that locks document before
* doing any other operations.
* <br/>
* It supports grouping of undoable edits by extending UndoGroupManager.
* <br/>
* It supports save actions that produce a compound undoable edit.
* <br/>
*
* <p>
* Following requirements should be met:
* <ul>
* <li>When saving document extra save actions are performed producing compound saveActionsEdit.</li>
* <li>When undoing just performed save the saveActionsEdit should be undone at once with the last
* performed edit.</li>
* <li>When save of the document was just performed a next edit must not be merged with last edit
* so that the savepoint can be retained.</li>
* <li>When save occurred after last edit the save actions are coalesced together with last edit.</li>
* <li>When save occurred inside UM.edits the extra save actions are kept separately and undone
* when "coming out of the savepoint" and redone when "coming to a savepoint".</li>
* </ul>
* </p>
*
* <p>
* <tt>Undo Grouping</tt> allows explicit control of what
* <tt>UndoableEdit</tt>s are coalesced into compound edits, rather than using
* the rules defined by the edits themselves. Groups are defined using
* BEGIN_COMMIT_GROUP and END_COMMIT_GROUP. Send these to UndoableEditListener.
* These must always be paired. <p> These use cases are supported. </p> <ol>
* <li> Default behavior is defined by {@link UndoManager}.</li> <li>
* <tt>UnddoableEdit</tt>s issued between {@link #BEGIN_COMMIT_GROUP} and {@link #END_COMMIT_GROUP}
* are placed into a single
* {@link CompoundEdit}. Thus <tt>undo()</tt> and <tt>redo()</tt> treat them as
* a single undo/redo.</li> <li>BEGIN/END nest.</li> <li> Issue
* MARK_COMMIT_GROUP to commit accumulated <tt>UndoableEdit</tt>s into a single
* <tt>CompoundEdit</tt> and to continue accumulating; an application could do
* this at strategic points, such as EndOfLine input or cursor movement.</li>
* </ol>
* </p>
*
* @author Miloslav Metelka
* @author Jaroslav Tulach
* @author Ernie Rael
*/
final class UndoRedoManager extends UndoRedo.Manager {
// -J-Dorg.openide.text.UndoRedoManager.level=FINE
private static final Logger LOG = Logger.getLogger(UndoRedoManager.class.getName());
/**
* Marker edit for the state when undo manager is right at the savepoint.
* <br/>
* Next performed edit will set afterSaveEdit field.
*/
static final UndoableEdit SAVEPOINT = new SpecialEdit();
/**
* Start a group of edits which will be committed as a single edit
* for purpose of undo/redo.
* Nesting semantics are that any BEGIN_COMMIT_GROUP and
* END_COMMIT_GROUP delimits a commit-group, unless the group is
* empty in which case the begin/end is ignored.
* While coalescing edits, any undo/redo/save implicitly delimits
* a commit-group.
*/
static final UndoableEdit BEGIN_COMMIT_GROUP = new SpecialEdit();
/** End a group of edits. */
static final UndoableEdit END_COMMIT_GROUP = new SpecialEdit();
/**
* Any coalesced edits become a commit-group and a new commit-group
* is started.
*/
static final UndoableEdit MARK_COMMIT_GROUP = new SpecialEdit();
CloneableEditorSupport support;
/**
* Undo edit which brings the undo manager into savepoint.
* <br/>
* The field may be set to SAVEPOINT special value in case the undo manager
* is set right to the savepoint.
* <br/>
* Value of beforeSavepoint field defines whether savepointEdit will be undone
* to enter the savepoint (beforeSavepoint==false) or redone to enter the savepoint
* (beforeSavepoint==true).
* <br/>
* Subsequent addEdit(), undo() and redo() operations will modify
* the field to point to neighbor edit of the save point.
*/
UndoableEdit savepointEdit;
/**
* Whether undo manager's undo()/redo() operations currently operate before/after
* the savepoint (when right at savepoint the value is undefined).
*/
boolean beforeSavepoint;
/**
* Undoable edit created as result of running save actions by using
* "beforeSaveRunnable" document property (See CloneableEditorSupport).
* <br/>
* If saving occurs right at UM.edits end (i.e. either UM.addEdit() was just performed
* or lastAddedEdit.redo() was performed) then the save actions edit
* is merged with the last added edit.
* <br/>
* If UM.edits is empty (it could possibly happen when document is not saved
* and discardAllEdits() was called for some reason) then the save actions edit
* is not added to UM.edits (just edit.die() is called and the effect
* of the save actions cannot be undone/redone).
* <br/>
* When the save actions edit is done in any other situation then it stands beside
* regular undo manager structures and is handled specially. It is:
* <ul>
* <li>undone when the UM is at savepoint and UM.undo() or UM.redo() is done.</li>
* <li>redone when edit right before savepoint is redone.</li>
* <li>redone when edit right after savepoint is undone.</li>
* </ul>
*/
private CompoundEdit onSaveTasksEdit;
/**
* Set to true when undo manager would add all edits to be delivered to addEdit()
* to onSaveTasksEdit (compound edit) because they come from performed save actions.
*/
private boolean awaitingOnSaveTasks;
/**
* Flag to check whether support.notifyUnmodified() should be called
* - it's necessary to do it outside of atomicLock acquired by DocLockedRun.
*/
private boolean callNotifyUnmodified;
/**
* Signals that edits are being accumulated. When a nested group is added
* the existing group must be ended and sent to UM unless the inner group is empty
* (or contains empty groups).
*/
private int buildUndoGroup;
/**
* Accumulate edits here in undoGroup. It may be null if no "real" edits were
* added.
*/
private CompoundEdit undoGroup;
/**
* Signal that nested group started and that current undo group
* must be committed if edit is added. Then can avoid doing the commit
* if the nested group turns out to be empty.
*/
private int needsNestingCommit;
public UndoRedoManager(CloneableEditorSupport support) {
this.support = support;
super.setLimit(1000);
}
void startOnSaveTasks() {
commitUndoGroup();
clearSaveActionsEdit(); // saveActionsEdit is now null
awaitingOnSaveTasks = true;
if (LOG.isLoggable(Level.FINE)) {
LOG.fine("startSaveActions() called.\n"); // NOI18N
}
}
void endOnSaveTasks() {
if (onSaveTasksEdit != null) {
onSaveTasksEdit.end();
}
awaitingOnSaveTasks = false;
checkLogOp(" endSaveActions(): saveActionsEdit", onSaveTasksEdit); // NOI18N
}
void markSavepoint() {
commitUndoGroup();
savepointEdit = SAVEPOINT;
}
boolean isAtSavepoint() {
return (savepointEdit == SAVEPOINT);
}
private void markSavepointAndUnmodified() {
markSavepoint();
callNotifyUnmodified = true;
}
private void checkCallNotifyUnmodified() {
if (callNotifyUnmodified) {
callNotifyUnmodified = false;
// If already modified make it unmodified.
support.callNotifyUnmodified();
}
}
void mergeSaveActionsToLastEdit(WrapUndoEdit lastWrapEdit) {
if (onSaveTasksEdit != null) {
checkLogOp(" mergeSaveActionsToLastEdit-lastWrapEdit", lastWrapEdit); // NOI18N
StableCompoundEdit compoundEdit = new StableCompoundEdit();
compoundEdit.addEdit(lastWrapEdit.delegate());
compoundEdit.addEdit(onSaveTasksEdit);
compoundEdit.end();
lastWrapEdit.setDelegate(compoundEdit);
onSaveTasksEdit = null;
checkLogOp(" compoundEdit", compoundEdit); // NOI18N
// Note that there may be no edits present in UM.edits (e.g.
// when discardAllEdits() was called). If the savepoint
// is at index==0 in UM.edits then the saveActionsEdit cannot be merged
// to any previous edit (there is no such one) and this method will not be called.
// This case is handled specially in addEditImpl().
}
}
void beforeUndoAtSavepoint(WrapUndoEdit edit) {
checkLogOp("beforeUndoAtSavepoint: undoSaveActions()", edit); // NOI18N
undoSaveActions();
}
private void undoSaveActions() {
if (onSaveTasksEdit != null && onSaveTasksEdit.canUndo()){
checkLogOp(" saveActionsEdit.undo()", onSaveTasksEdit); // NOI18N
onSaveTasksEdit.undo();
}
}
void delegateUndoFailedAtSavepoint(WrapUndoEdit edit) {
checkLogOp("delegateUndoFailedAtSavepoint", edit); // NOI18N
redoSaveActions();
}
private void redoSaveActions() {
if (onSaveTasksEdit != null && onSaveTasksEdit.canRedo()) {
checkLogOp(" saveActionsEdit.redo()", onSaveTasksEdit); // NOI18N
onSaveTasksEdit.redo();
}
}
void afterUndoCheck(WrapUndoEdit edit) {
if (isAtSavepoint()) { // Undoing edit right before savepoint.
checkLogOp("afterUndoCheck-atSavepoint", edit); // NOI18N
// saveActionsEdit already processed by checkSavepointBeforeUndo()
beforeSavepoint = true;
savepointEdit = edit;
} else if (savepointEdit == edit) { // Undone to savepoint
if (onSaveTasksEdit != null) {
checkLogOp(" saveActionsEdit.redo()", onSaveTasksEdit); // NOI18N
onSaveTasksEdit.redo();
}
checkLogOp("afterUndoCheck-becomesSavepoint-markUnmodified", edit); // NOI18N
assert (!beforeSavepoint) : "Expected to be behind savepoint"; // NOI18N
markSavepointAndUnmodified();
}
}
void beforeRedoAtSavepoint(WrapUndoEdit edit) {
checkLogOp("beforeRedoAtSavepoint", edit); // NOI18N
undoSaveActions();
}
void delegateRedoFailedAtSavepoint(WrapUndoEdit edit) {
checkLogOp("delegateRedoFailedAtSavepoint", edit); // NOI18N
redoSaveActions();
}
void afterRedoCheck(WrapUndoEdit edit) {
if (isAtSavepoint()) { // Redoing edit right before savepoint.
checkLogOp("afterRedoCheck-atSavepoint", edit); // NOI18N
// saveActionsEdit already processed by checkSavepointBeforeUndo()
beforeSavepoint = false;
savepointEdit = edit;
} else if (savepointEdit == edit) { // Redone to savepoint
if (onSaveTasksEdit != null) {
checkLogOp(" saveActionsEdit.redo()", onSaveTasksEdit); // NOI18N
onSaveTasksEdit.redo();
}
checkLogOp("afterRedoCheck-becomesSavepoint", edit); // NOI18N
assert (beforeSavepoint) : "Expected to be before savepoint"; // NOI18N
markSavepointAndUnmodified();
}
}
void checkReplaceSavepointEdit(WrapUndoEdit origEdit, WrapUndoEdit newEdit) {
if (savepointEdit == origEdit) {
checkLogOp("checkReplaceSavepointEdit-replacedSavepointEdit", origEdit); // NOI18N
savepointEdit = newEdit;
}
}
void notifyWrapEditDie(UndoableEdit edit) {
if (edit == savepointEdit) { // Savepoint neighbour died => no longer a savepoint
checkLogOp("notifyWrapEditDie-savepoint-die", edit); // NOI18N
savepointEdit = null;
clearSaveActionsEdit();
}
}
@Override
public synchronized boolean addEdit(UndoableEdit edit) {
if (!isInProgress()) {
return false;
}
if (edit == BEGIN_COMMIT_GROUP) {
beginUndoGroup();
return true;
} else if (edit == END_COMMIT_GROUP) {
endUndoGroup();
return true;
} else if (edit == MARK_COMMIT_GROUP) {
commitUndoGroup();
return true;
}
if (needsNestingCommit > 0) {
commitUndoGroup();
}
if (!awaitingOnSaveTasks && buildUndoGroup > 0) {
if (undoGroup == null) {
undoGroup = new CompoundEdit();
}
return undoGroup.addEdit(edit);
}
return addEditImpl(edit);
}
private boolean addEditImpl(UndoableEdit edit) {
// This should already be called under document's lock so DocLockedRun not necessary
assert (edit != null) : "Cannot add null edit"; // NOI18N
if (awaitingOnSaveTasks) {
checkLogOp("addEdit-inSaveActions", edit); // NOI18N
if (onSaveTasksEdit == null) {
onSaveTasksEdit = new CompoundEdit();
}
boolean added = onSaveTasksEdit.addEdit(edit);
assert added : "Cannot add to saveActionsEdit"; // NOI18N
return true;
}
WrapUndoEdit wrapEdit = new WrapUndoEdit(this, edit); // Wrap the edit
boolean added = super.addEdit(wrapEdit);
if (isAtSavepoint()) {
checkLogOp("addEdit-atSavepoint", wrapEdit); // NOI18N
beforeSavepoint = false;
savepointEdit = wrapEdit;
// In case UM.edits was empty before this addition and there are valid
// save actions then these have to be dropped since they were not merged
// with previous edit but the logic here would attempt to redo them
// upon undo of just added edit which would be wrong.
if (added && edits.size() == 1) {
clearSaveActionsEdit();
}
} else {
checkLogOp("addEdit", wrapEdit); // NOI18N
}
return added;
}
// replaceEdit() not overriden - it should return false
@Override
public void redo() throws CannotRedoException {
final StyledDocument doc = support.getDocument();
if (doc == null) {
throw new CannotRedoException(); // NOI18N
}
new DocLockedRun(0, doc);
checkCallNotifyUnmodified();
}
@Override
public void undo() throws CannotUndoException {
final StyledDocument doc = support.getDocument();
if (doc == null) {
throw new CannotUndoException(); // NOI18N
}
new DocLockedRun(1, doc);
checkCallNotifyUnmodified();
}
@Override
public boolean canRedo() {
return new DocLockedRun(2, support.getDocument(), 0, true).booleanResult;
}
@Override
public boolean canUndo() {
return new DocLockedRun(3, support.getDocument(), 0, true).booleanResult;
}
@Override
public int getLimit() {
return new DocLockedRun(4, support.getDocument()).intResult;
}
@Override
public void discardAllEdits() {
new DocLockedRun(5, support.getDocument(), 0, true);
}
private void clearSaveActionsEdit() {
if (onSaveTasksEdit != null) {
checkLogOp(" saveActionsEdit-die", onSaveTasksEdit); // NOI18N
onSaveTasksEdit.die();
onSaveTasksEdit = null;
}
}
@Override
public void setLimit(int l) {
new DocLockedRun(6, support.getDocument(), l);
}
@Override
public boolean canUndoOrRedo() {
return new DocLockedRun(7, support.getDocument(), 0, true).booleanResult;
}
@Override
public String getUndoOrRedoPresentationName() {
if (support.isDocumentReady()) {
return new DocLockedRun(8, support.getDocument(), 0, true).stringResult;
} else {
return "";
}
}
@Override
public String getRedoPresentationName() {
if (support.isDocumentReady()) {
return new DocLockedRun(9, support.getDocument(), 0, true).stringResult;
} else {
return "";
}
}
@Override
public String getUndoPresentationName() {
if (support.isDocumentReady()) {
return new DocLockedRun(10, support.getDocument(), 0, true).stringResult;
} else {
return "";
}
}
@Override
public void undoOrRedo() throws CannotUndoException, CannotRedoException {
super.undoOrRedo();
}
/**
* Begin coalescing <tt>UndoableEdit</tt>s that are added into a <tt>CompoundEdit</tt>.
* <p>If edits are already being coalesced and some have been
* accumulated, they are flagged for commitment as an atomic group and
* a new group will be started.
* @see #addEdit
* @see #endUndoGroup
*/
private void beginUndoGroup() {
if(undoGroup != null)
needsNestingCommit++;
LOG.log(Level.FINE, "beginUndoGroup: nesting {0}", buildUndoGroup); // NOI18N
buildUndoGroup++;
}
/**
* Stop coalescing edits. Until <tt>beginUndoGroupManager</tt> is invoked,
* any received <tt>UndoableEdit</tt>s are added singly.
* <p>
* This has no effect if edits are not being coalesced, for example
* if <tt>beginUndoGroup</tt> has not been called.
*/
private void endUndoGroup() {
buildUndoGroup--;
LOG.log(Level.FINE, "endUndoGroup: nesting {0}", buildUndoGroup); // NOI18N
if(buildUndoGroup < 0) {
LOG.log(Level.INFO, null, new Exception("endUndoGroup without beginUndoGroup")); // NOI18N
// slam buildUndoGroup to 0 to disable nesting
buildUndoGroup = 0;
}
if(needsNestingCommit <= 0)
commitUndoGroup();
if(--needsNestingCommit < 0)
needsNestingCommit = 0;
}
/**
* Commit any accumulated <tt>UndoableEdit</tt>s as an atomic
* <tt>undo</tt>/<tt>redo</tt> group. {@link CompoundEdit#end}
* is invoked on the <tt>CompoundEdit</tt> and it is added as a single
* <tt>UndoableEdit</tt> to this <tt>UndoManager</tt>.
* <p>
* If edits are currently being coalesced, a new undo group is started.
* This has no effect if edits are not being coalesced, for example
* <tt>beginUndoGroup</tt> has not been called.
*/
private void commitUndoGroup() {
if(undoGroup == null) {
return;
}
// undoGroup is being set to null,
// needsNestingCommit has no meaning now
needsNestingCommit = 0;
undoGroup.end();
addEditImpl(undoGroup);
undoGroup = null;
}
UndoableEdit editToBeUndoneRedone(boolean redone) { // Access for NbDocument
WrapUndoEdit wrapEdit = (WrapUndoEdit) (redone ? editToBeRedone() : editToBeUndone());
return (wrapEdit != null) ? wrapEdit.delegate() : null;
}
static String editToString(UndoableEdit edit) {
if (edit instanceof WrapUndoEdit) {
return toStringTerse(edit) + "->" + toStringTerse(((WrapUndoEdit)edit).delegate()); // NOI18N
} else {
return toStringTerse(edit);
}
}
static String toStringTerse(Object o) {
if (o != null) {
String clsName = o.getClass().getName();
return clsName.substring(clsName.lastIndexOf('.') + 1) + "@" + System.identityHashCode(o); // NOI18N
} else {
return "null"; // NOI18N
}
}
void checkLogOp(String op, UndoableEdit edit) {
if (LOG.isLoggable(Level.FINE)) {
String msg = thisToString() + "->" + op + ": " + editToString(edit) + '\n'; // NOI18N
if (LOG.isLoggable(Level.FINEST)) {
LOG.log(Level.FINEST, msg.substring(0, msg.length() - 1), new Exception());
} else {
LOG.fine(msg);
}
}
}
String thisToString() {
String name = support.messageName();
return String.valueOf(name) + ":URM@" + System.identityHashCode(this); // NOI18N
}
private final class DocLockedRun implements Runnable {
private final int type;
boolean booleanResult;
int intResult;
String stringResult;
public DocLockedRun(int type, StyledDocument doc) {
this(type, doc, 0);
}
public DocLockedRun(int type, StyledDocument doc, int intValue) {
this(type, doc, intValue, false);
}
public DocLockedRun(int type, StyledDocument doc, int intValue, boolean readLock) {
this.type = type;
this.intResult = intValue;
if (!readLock && (doc instanceof NbDocument.WriteLockable)) {
((NbDocument.WriteLockable) doc).runAtomic(this);
} else {
if (readLock && doc != null) {
doc.render(this);
} else {
// if the document is not one of "NetBeans ready"
// that supports locking we do not have many
// chances to do something. Maybe check for AbstractDocument
// and call writeLock using reflection, but better than
// that, let's leave this simple for now and wait for
// bug reports (if any appear)
run();
}
}
}
public void run() {
switch (type) {
case 0:
if (undoGroup != null) {
throw new CannotRedoException();
}
UndoRedoManager.super.redo();
break;
case 1:
commitUndoGroup();
UndoRedoManager.super.undo();
break;
case 2:
booleanResult = (undoGroup != null) ? false : UndoRedoManager.super.canRedo();
break;
case 3:
booleanResult = (undoGroup != null) ? true : UndoRedoManager.super.canUndo();
break;
case 4:
intResult = UndoRedoManager.super.getLimit();
break;
case 5:
if (LOG.isLoggable(Level.FINE)) {
int editsSize = (edits != null) ? edits.size() : 0;
LOG.fine("discardAllEdits(): savepoint=" + isAtSavepoint() + // NOI18N
", editsSize=" + editsSize + "\n"); // NOI18N
}
commitUndoGroup();
clearSaveActionsEdit();
UndoRedoManager.super.discardAllEdits();
break;
case 6:
UndoRedoManager.super.setLimit(intResult);
break;
case 7:
UndoRedoManager.super.canUndoOrRedo();
break;
case 8:
stringResult = UndoRedoManager.super.getUndoOrRedoPresentationName();
break;
case 9:
stringResult = (undoGroup != null)
? undoGroup.getRedoPresentationName()
: UndoRedoManager.super.getRedoPresentationName();
break;
case 10:
stringResult = (undoGroup != null)
? undoGroup.getUndoPresentationName()
: UndoRedoManager.super.getUndoPresentationName();
break;
case 11:
UndoRedoManager.super.undoOrRedo();
break;
default:
throw new IllegalArgumentException("Unknown type: " + type);
}
}
}
private static class SpecialEdit extends CompoundEdit {
public SpecialEdit()
{
super();
// Prevent the special edits to merge with any other edits.
// This might happen in an errorneous situation when
// e.g. two undo managers are attached to the same document at once.
end();
}
@Override
public boolean canRedo()
{
return true;
}
@Override
public boolean canUndo()
{
return true;
}
}
}
| [
"w.glanzer@adito.de"
] | w.glanzer@adito.de |
b20e0d908c0e730eeca452be80adf4fb81baa2da | 1d4eb8b73e91b13c57ca73b37281c64ad0ae5b7a | /src/main/java/org/docx4j/model/properties/run/Font.java | e3e755fe6d18e05a199a373def73aff9312d24de | [
"Apache-2.0"
] | permissive | sdmonroe/docx4j | e5efc55d3007b986ff787e143bf68e091d242db0 | c0ed4960894fa2b8c2852f47b8920ad0522be2bf | refs/heads/master | 2021-01-18T11:59:49.233076 | 2013-09-13T10:00:01 | 2013-09-13T10:00:01 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,065 | java | /*
* Copyright 2009, Plutext Pty Ltd.
*
* This file is part of docx4j.
docx4j is 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.docx4j.model.properties.run;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.docx4j.XmlUtils;
import org.docx4j.dml.CTTextCharacterProperties;
import org.docx4j.fonts.Mapper;
import org.docx4j.fonts.PhysicalFont;
import org.docx4j.jaxb.Context;
import org.docx4j.model.properties.Property;
import org.docx4j.openpackaging.packages.OpcPackage;
import org.docx4j.openpackaging.packages.WordprocessingMLPackage;
import org.docx4j.wml.RFonts;
import org.docx4j.wml.RPr;
import org.docx4j.wml.STHint;
import org.docx4j.wml.STTheme;
import org.w3c.dom.Element;
import org.w3c.dom.css.CSSPrimitiveValue;
import org.w3c.dom.css.CSSValue;
public class Font extends AbstractRunProperty {
protected static Logger log = LoggerFactory.getLogger(Font.class);
public final static String CSS_NAME = "font-family";
public final static String FO_NAME = "font-family";
/**
* @since 2.7.2
*/
public String getCssName() {
return CSS_NAME;
}
private OpcPackage wmlPackage;
public Font(OpcPackage wmlPackage, RFonts rFonts ) {
this.setObject(rFonts);
this.wmlPackage = wmlPackage;
}
public Font(CSSValue value) {
CSSPrimitiveValue cssPrimitiveValue = (CSSPrimitiveValue)value;
String[] fonts = cssPrimitiveValue.getStringValue().split(",");
//try first font
if(fonts.length > 0){
if(!fonts[0].isEmpty()){
log.debug("TODO: map " + fonts[0] + " to a usable font.");
// RFonts rFonts = Context.getWmlObjectFactory().createRFonts();
// rFonts.setAscii(fonts[0]);
// rFonts.setHAnsi(fonts[0]);
// this.setObject(rFonts);
}
}
debug(CSS_NAME, value);
// log.warn("RFonts from CSS font-family is a TODO");
}
@Override
public String getCssProperty() {
String font = getPhysicalFont();
if (font!=null) {
return composeCss(CSS_NAME, font );
} else {
log.warn("No mapping from " + font);
return CSS_NULL;
}
}
private String getPhysicalFont() {
RFonts rFonts = (RFonts)this.getObject();
log.debug("Processing " + XmlUtils.marshaltoString(rFonts, true));
String font=null;
if (rFonts.getHint()!=null && rFonts.getHint().equals(STHint.EAST_ASIA) ) {
font = rFonts.getEastAsia();
if (font==null && wmlPackage instanceof WordprocessingMLPackage) {
font=((WordprocessingMLPackage)wmlPackage).getMainDocumentPart().getPropertyResolver().getDefaultFontEastAsia();
}
// TODO HAnsi, and CS
// } else if (rFonts.getHint().equals(STHint.CS) ) {
//
// font = rFonts.getCs();
//
// if (font==null && wmlPackage instanceof WordprocessingMLPackage) {
// font=((WordprocessingMLPackage)wmlPackage).getDefaultFont();
} else {
font = rFonts.getAscii();
if (font==null
&& wmlPackage instanceof WordprocessingMLPackage) {
// So, use the theme
if (rFonts.getAsciiTheme()!=null
&& (rFonts.getAsciiTheme().equals(STTheme.MAJOR_ASCII)
|| rFonts.getAsciiTheme().equals(STTheme.MAJOR_H_ANSI) )) {
font=((WordprocessingMLPackage)wmlPackage).getDefaultMajorFont();
} else {
font=((WordprocessingMLPackage)wmlPackage).getDefaultFont();
}
}
}
return getPhysicalFont(wmlPackage, font);
}
public static String getPhysicalFont(OpcPackage wmlPackage, String fontName) {
log.debug("looking for: " + fontName);
if (!(wmlPackage instanceof WordprocessingMLPackage)) {
log.error("Implement me for pptx4j");
return null;
}
PhysicalFont pf = ((WordprocessingMLPackage)wmlPackage).getFontMapper().getFontMappings().get(fontName);
if (pf!=null) {
log.debug("Font '" + fontName + "' maps to " + pf.getName() );
return pf.getName();
} else {
log.warn("Font '" + fontName + "' is not mapped to a physical font. " );
return null;
}
}
@Override
public void setXslFO(Element foElement) {
String font = getPhysicalFont();
if (font!=null) {
foElement.setAttribute(FO_NAME, font );
}
}
@Override
public void set(RPr rPr) {
rPr.setRFonts((RFonts)this.getObject());
}
@Override
public void set(CTTextCharacterProperties rPr) {
//TODO
}
}
| [
"jason@plutext.org"
] | jason@plutext.org |
dc73fa2b42de3f676b137710df4d61c70439363d | 4551dbd8678dc9f186b80762ab664170386c93a0 | /api/src/test/java/com/github/logview/value/api/DateUtilTest.java | adf6612200e3db06708fe16049c39491fbda963c | [] | no_license | logview/logview | 41d4b4e440720ef64b2a252a2520a8c9a9e01aa3 | a01a8dc850808afc5d54ed91a7d6120cb895719a | refs/heads/master | 2021-01-23T18:50:29.717821 | 2012-06-28T19:40:09 | 2012-06-28T19:40:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 947 | java | package com.github.logview.value.api;
import org.joda.time.DateTimeZone;
import org.joda.time.format.DateTimeFormat;
import org.joda.time.format.DateTimeFormatter;
import org.junit.Assert;
import org.junit.Test;
import com.github.logview.util.DateUtil;
public class DateUtilTest {
private void test(final String date, DateTimeZone zone, final long stamp) {
final DateTimeFormatter format = DateTimeFormat.forPattern("EEE MMM dd HH:mm:ss z yyyy")
.withLocale(java.util.Locale.ENGLISH).withZone(zone);
Assert.assertEquals(date, format.print(stamp));
Assert.assertEquals(stamp, DateUtil.parse(format, date));
}
@Test
public void testUTC() {
test("Fri Feb 13 23:31:30 UTC 2009", DateUtil.UTC, 1234567890000L);
}
@Test
public void testCST() {
test("Sat Feb 14 00:31:30 CET 2009", DateUtil.CET, 1234567890000L);
}
@Test
public void testCEST() {
test("Sun Jun 21 11:51:30 CEST 2009", DateUtil.CEST, 1245577890000L);
}
}
| [
"dennisrieks@googlemail.com"
] | dennisrieks@googlemail.com |
9492fa30e3c92d8282473efb9f9b1533bad3f4a9 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/2/2_8011e2e2d6dd4aa2b18e05cfe6e823d27284f46e/BuildTrigger/2_8011e2e2d6dd4aa2b18e05cfe6e823d27284f46e_BuildTrigger_t.java | 1649e7c1fc8767cd998fac80828c47671c7493ac | [] | 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 | 7,735 | java | package hudson.tasks;
import hudson.Launcher;
import hudson.model.AbstractProject;
import hudson.model.Build;
import hudson.model.BuildListener;
import hudson.model.Descriptor;
import hudson.model.Hudson;
import hudson.model.Item;
import hudson.model.Items;
import hudson.model.Job;
import hudson.model.Project;
import hudson.model.Result;
import hudson.model.listeners.ItemListener;
import hudson.util.FormFieldValidator;
import org.kohsuke.stapler.DataBoundConstructor;
import org.kohsuke.stapler.StaplerRequest;
import org.kohsuke.stapler.StaplerResponse;
import javax.servlet.ServletException;
import java.io.IOException;
import java.io.PrintStream;
import java.util.Collection;
import java.util.List;
import java.util.StringTokenizer;
import java.util.logging.Logger;
import java.util.logging.Level;
/**
* Triggers builds of other projects.
*
* @author Kohsuke Kawaguchi
*/
public class BuildTrigger extends Publisher {
/**
* Comma-separated list of other projects to be scheduled.
*/
private String childProjects;
/**
* Threshold status to trigger other builds.
*
* For compatibility reasons, this field could be null, in which case
* it should read as "SUCCESS".
*/
private final Result threshold;
@DataBoundConstructor
public BuildTrigger(String childProjects, boolean evenIfUnstable) {
this(childProjects,evenIfUnstable ? Result.UNSTABLE : Result.SUCCESS);
}
public BuildTrigger(String childProjects, Result threshold) {
this.childProjects = childProjects;
this.threshold = threshold;
}
public BuildTrigger(List<AbstractProject> childProjects, Result threshold) {
this(Items.toNameList(childProjects),threshold);
}
public String getChildProjectsValue() {
return childProjects;
}
public Result getThreshold() {
if(threshold==null)
return Result.SUCCESS;
else
return threshold;
}
public List<AbstractProject> getChildProjects() {
return Items.fromNameList(childProjects,AbstractProject.class);
}
/**
* Checks if this trigger has the exact same set of children as the given list.
*/
public boolean hasSame(Collection<? extends AbstractProject> projects) {
List<AbstractProject> children = getChildProjects();
return children.size()==projects.size() && children.containsAll(projects);
}
public boolean perform(Build build, Launcher launcher, BuildListener listener) {
if(!build.getResult().isWorseThan(getThreshold())) {
PrintStream logger = listener.getLogger();
for (AbstractProject p : getChildProjects()) {
if(p.isDisabled()) {
logger.println(p.getName()+" is disabled. Triggering skipped");
continue;
}
// this is not completely accurate, as a new build might be triggered
// between these calls
String name = p.getName()+" #"+p.getNextBuildNumber();
if(!p.scheduleBuild()) {
logger.println("Triggering a new build of "+name);
} else {
logger.println(name+" is already in the queue");
}
}
}
return true;
}
/**
* Called from {@link Job#renameTo(String)} when a job is renamed.
*
* @return true
* if this {@link BuildTrigger} is changed and needs to be saved.
*/
public boolean onJobRenamed(String oldName, String newName) {
// quick test
if(!childProjects.contains(oldName))
return false;
boolean changed = false;
// we need to do this per string, since old Project object is already gone.
String[] projects = childProjects.split(",");
for( int i=0; i<projects.length; i++ ) {
if(projects[i].trim().equals(oldName)) {
projects[i] = newName;
changed = true;
}
}
if(changed) {
StringBuilder b = new StringBuilder();
for (String p : projects) {
if(b.length()>0) b.append(',');
b.append(p);
}
childProjects = b.toString();
}
return changed;
}
public Descriptor<Publisher> getDescriptor() {
return DESCRIPTOR;
}
public static final Descriptor<Publisher> DESCRIPTOR = new DescriptorImpl();
public static class DescriptorImpl extends Descriptor<Publisher> {
public DescriptorImpl() {
super(BuildTrigger.class);
Hudson.getInstance().getJobListeners().add(new ItemListener() {
@Override
public void onRenamed(Item item, String oldName, String newName) {
// update BuildTrigger of other projects that point to this object.
// can't we generalize this?
for( Project p : Hudson.getInstance().getProjects() ) {
BuildTrigger t = (BuildTrigger) p.getPublishers().get(BuildTrigger.DESCRIPTOR);
if(t!=null) {
if(t.onJobRenamed(oldName,newName)) {
try {
p.save();
} catch (IOException e) {
LOGGER.log(Level.WARNING, "Failed to persist project setting during rename from "+oldName+" to "+newName,e);
}
}
}
}
}
});
}
public String getDisplayName() {
return "Build other projects";
}
public String getHelpFile() {
return "/help/project-config/downstream.html";
}
public Publisher newInstance(StaplerRequest req) {
return new BuildTrigger(
req.getParameter("buildTrigger.childProjects"),
req.getParameter("buildTrigger.evenIfUnstable")!=null
);
}
/**
* Form validation method.
*/
public void doCheck( StaplerRequest req, StaplerResponse rsp ) throws IOException, ServletException {
new FormFieldValidator(req,rsp,true) {
protected void check() throws IOException, ServletException {
String list = request.getParameter("value");
StringTokenizer tokens = new StringTokenizer(list,",");
while(tokens.hasMoreTokens()) {
String projectName = tokens.nextToken().trim();
Item item = Hudson.getInstance().getItemByFullName(projectName,Item.class);
if(item==null) {
error("No such project '"+projectName+"'. Did you mean '"+
AbstractProject.findNearest(projectName).getName()+"'?");
return;
}
if(!(item instanceof AbstractProject)) {
error(projectName+" is not buildable");
return;
}
}
ok();
}
}.process();
}
}
private static final Logger LOGGER = Logger.getLogger(BuildTrigger.class.getName());
}
| [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
5ff4d59b34ac2508e4fe0aaf9541bc6763713c24 | 2ec3bb6b4c77ec4bb2a05aafd9115c28aac82cd5 | /spring-02-hellospring/src/test/java/MyTest.java | 470bb819ef1f7e3ac46df4e6d932fc16df2e4e34 | [] | no_license | SuperX13/Spring-Study | 7e6f3b7c6c60f93f11a5ec2b3516b168703aafd5 | 29ec3dd8227986a641197a794894cb2d7e402380 | refs/heads/master | 2023-03-27T02:42:06.079507 | 2021-03-17T14:09:09 | 2021-03-17T14:09:09 | 347,345,419 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 433 | java | import com.yyx.pojo.Hello;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class MyTest {
@Test
public void test(){
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
Hello hello = (Hello) context.getBean("hello");
System.out.println(hello.toString());
}
}
| [
"965224591@qq.com"
] | 965224591@qq.com |
5d3aeeef7b45c3207d61020948a94b52ce0f3fe2 | fa56342f4b62bf952b9aa4d6270596ade7004d0b | /app/src/main/java/ru/getlect/evendate/evendate/sync/LocalDataFetcher.java | 3c669a86717f50c1bce011d7ee262e127b0a9c10 | [] | no_license | agrefj/Evendate | ee1cf3076ffdece9a561fb9a6352a9c2bb54c3be | 730a4a678961606a08d1e012877c746ac1c6e3e6 | refs/heads/master | 2021-01-23T03:05:30.277095 | 2015-09-13T15:30:34 | 2015-09-13T15:30:34 | 38,404,044 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,894 | java | package ru.getlect.evendate.evendate.sync;
import android.content.ContentResolver;
import android.database.Cursor;
import android.net.Uri;
import java.util.ArrayList;
import ru.getlect.evendate.evendate.data.EvendateContract;
import ru.getlect.evendate.evendate.sync.dataTypes.DataEntry;
import ru.getlect.evendate.evendate.sync.dataTypes.EventEntry;
import ru.getlect.evendate.evendate.sync.dataTypes.FriendEntry;
import ru.getlect.evendate.evendate.sync.dataTypes.OrganizationEntry;
import ru.getlect.evendate.evendate.sync.dataTypes.TagEntry;
/**
* Created by Dmitry on 11.09.2015.
*/
public class LocalDataFetcher {
ContentResolver mContentResolver;
public LocalDataFetcher(ContentResolver contentResolver) {
mContentResolver = contentResolver;
}
public ArrayList<DataEntry> getOrganizationDataFromDB(){
ArrayList<DataEntry> resList = new ArrayList<>();
// Define a variable to contain a content resolver instance
final String[] ORGANIZATION_PROJECTION = new String[] {
EvendateContract.OrganizationEntry._ID,
EvendateContract.OrganizationEntry.COLUMN_ORGANIZATION_ID,
EvendateContract.OrganizationEntry.COLUMN_NAME,
EvendateContract.OrganizationEntry.COLUMN_IMG_URL,
EvendateContract.OrganizationEntry.COLUMN_SHORT_NAME,
EvendateContract.OrganizationEntry.COLUMN_DESCRIPTION,
EvendateContract.OrganizationEntry.COLUMN_TYPE_NAME,
EvendateContract.OrganizationEntry.COLUMN_SUBSCRIBED
};
// Constants representing column positions from PROJECTION.
final int COLUMN_ID = 0;
final int COLUMN_ORGANIZATION_ID = 1;
final int COLUMN_NAME = 2;
final int COLUMN_IMG_URL = 3;
final int COLUMN_SHORT_NAME = 4;
final int COLUMN_DESCRIPTION = 5;
final int COLUMN_TYPE_NAME = 6;
final int COLUMN_SUBSCRIBED_COUNT = 7;
Uri uri = EvendateContract.OrganizationEntry.CONTENT_URI; // Get all entries
Cursor c = mContentResolver.query(uri, ORGANIZATION_PROJECTION, null, null, null);
assert c != null;
while (c.moveToNext()){
OrganizationEntry entry = new OrganizationEntry(
c.getInt(COLUMN_ORGANIZATION_ID),
c.getString(COLUMN_NAME),
c.getString(COLUMN_IMG_URL),
c.getString(COLUMN_SHORT_NAME),
c.getString(COLUMN_DESCRIPTION),
c.getString(COLUMN_TYPE_NAME),
c.getInt(COLUMN_SUBSCRIBED_COUNT)
);
entry.setId(c.getInt(COLUMN_ID));
resList.add(entry);
}
c.close();
return resList;
}
public ArrayList<DataEntry> getTagsDataFromDB(){
ArrayList<DataEntry> resList = new ArrayList<>();
// Define a variable to contain a content resolver instance
final String[] PROJECTION = new String[] {
EvendateContract.TagEntry._ID,
EvendateContract.TagEntry.COLUMN_TAG_ID,
EvendateContract.TagEntry.COLUMN_NAME,
};
// Constants representing column positions from PROJECTION.
final int COLUMN_ID = 0;
final int COLUMN_TAG_ID = 1;
final int COLUMN_NAME = 2;
Uri uri = EvendateContract.TagEntry.CONTENT_URI; // Get all entries
Cursor c = mContentResolver.query(uri, PROJECTION, null, null, null);
assert c != null;
while (c.moveToNext()){
TagEntry entry = new TagEntry(
c.getInt(COLUMN_TAG_ID),
c.getString(COLUMN_NAME)
);
entry.setId(c.getInt(COLUMN_ID));
resList.add(entry);
}
c.close();
return resList;
}
public ArrayList<DataEntry> getUserDataFromDB(){
ArrayList<DataEntry> resList = new ArrayList<>();
// Define a variable to contain a content resolver instance
final String[] ORGANIZATION_PROJECTION = new String[] {
EvendateContract.UserEntry._ID,
EvendateContract.UserEntry.COLUMN_USER_ID,
EvendateContract.UserEntry.COLUMN_LAST_NAME,
EvendateContract.UserEntry.COLUMN_FIRST_NAME,
EvendateContract.UserEntry.COLUMN_MIDDLE_NAME,
EvendateContract.UserEntry.COLUMN_AVATAR_URL,
EvendateContract.UserEntry.COLUMN_FRIEND_UID,
EvendateContract.UserEntry.COLUMN_TYPE,
EvendateContract.UserEntry.COLUMN_LINK
};
// Constants representing column positions from PROJECTION.
final int COLUMN_ID = 0;
final int COLUMN_USER_ID = 1;
final int COLUMN_LAST_NAME = 2;
final int COLUMN_FIRST_NAME = 3;
final int COLUMN_MIDDLE_NAME = 4;
final int COLUMN_AVATAR_URL = 5;
final int COLUMN_FRIEND_UID = 6;
final int COLUMN_TYPE = 7;
final int COLUMN_LINK = 8;
Uri uri = EvendateContract.UserEntry.CONTENT_URI; // Get all entries
Cursor c = mContentResolver.query(uri, ORGANIZATION_PROJECTION, null, null, null);
assert c != null;
while (c.moveToNext()){
FriendEntry entry = new FriendEntry(
c.getInt(COLUMN_USER_ID),
c.getString(COLUMN_LAST_NAME),
c.getString(COLUMN_FIRST_NAME),
c.getString(COLUMN_MIDDLE_NAME),
c.getString(COLUMN_AVATAR_URL),
c.getString(COLUMN_TYPE),
c.getInt(COLUMN_FRIEND_UID),
c.getString(COLUMN_LINK)
);
entry.setId(c.getInt(COLUMN_ID));
resList.add(entry);
}
c.close();
return resList;
}
public ArrayList<DataEntry> getEventDataFromDB(){
ArrayList<DataEntry> resList = new ArrayList<>();
// Define a variable to contain a content resolver instance
final String[] ORGANIZATION_PROJECTION = new String[] {
EvendateContract.EventEntry._ID,
EvendateContract.EventEntry.COLUMN_EVENT_ID,
EvendateContract.EventEntry.COLUMN_TITLE,
EvendateContract.EventEntry.COLUMN_DESCRIPTION,
EvendateContract.EventEntry.COLUMN_LATITUDE,
EvendateContract.EventEntry.COLUMN_LONGITUDE,
EvendateContract.EventEntry.COLUMN_LOCATION_TEXT,
EvendateContract.EventEntry.COLUMN_LOCATION_URI,
EvendateContract.EventEntry.COLUMN_LOCATION_JSON,
EvendateContract.EventEntry.COLUMN_NOTIFICATIONS,
EvendateContract.EventEntry.COLUMN_START_DATE,
EvendateContract.EventEntry.COLUMN_BEGIN_TIME,
EvendateContract.EventEntry.COLUMN_END_TIME,
EvendateContract.EventEntry.COLUMN_END_DATE,
EvendateContract.EventEntry.COLUMN_ORGANIZATION_ID,
EvendateContract.EventEntry.COLUMN_IMAGE_VERTICAL_URL,
EvendateContract.EventEntry.COLUMN_DETAIL_INFO_URL,
EvendateContract.EventEntry.COLUMN_IMAGE_HORIZONTAL_URL,
EvendateContract.EventEntry.COLUMN_CAN_EDIT,
EvendateContract.EventEntry.COLUMN_EVENT_TYPE,
EvendateContract.EventEntry.COLUMN_IS_FAVORITE
};
// Constants representing column positions from PROJECTION.
final int COLUMN_ID = 0;
final int COLUMN_EVENT_ID = 1;
final int COLUMN_TITLE = 2;
final int COLUMN_DESCRIPTION = 3;
final int COLUMN_LATITUDE = 4;
final int COLUMN_LONGITUDE = 5;
final int COLUMN_LOCATION_TEXT = 6;
final int COLUMN_LOCATION_URI = 7;
final int COLUMN_LOCATION_JSON = 8;
final int COLUMN_NOTIFICATIONS = 9;
final int COLUMN_START_DATE = 10;
final int COLUMN_BEGIN_TIME = 11;
final int COLUMN_END_TIME = 12;
final int COLUMN_END_DATE = 13;
final int COLUMN_ORGANIZATION_ID = 14;
final int COLUMN_IMAGE_VERTICAL_URL = 15;
final int COLUMN_DETAIL_INFO_URL = 16;
final int COLUMN_IMAGE_HORIZONTAL_URL = 17;
final int COLUMN_CAN_EDIT = 18;
final int COLUMN_EVENT_TYPE = 19;
final int COLUMN_IS_FAVORITE = 20;
Uri uri = EvendateContract.EventEntry.CONTENT_URI; // Get all entries
Cursor c = mContentResolver.query(uri, ORGANIZATION_PROJECTION, null, null, null);
assert c != null;
while (c.moveToNext()){
EventEntry entry = new EventEntry(
c.getInt(COLUMN_EVENT_ID),
c.getString(COLUMN_TITLE),
c.getString(COLUMN_DESCRIPTION),
c.getString(COLUMN_LOCATION_TEXT),
c.getString(COLUMN_LOCATION_URI),
c.getString(COLUMN_START_DATE),
c.getString(COLUMN_NOTIFICATIONS),
c.getInt(COLUMN_ORGANIZATION_ID),
c.getLong(COLUMN_LATITUDE),
c.getLong(COLUMN_LONGITUDE),
c.getString(COLUMN_END_DATE),
c.getString(COLUMN_DETAIL_INFO_URL),
c.getString(COLUMN_BEGIN_TIME),
c.getString(COLUMN_END_TIME),
c.getString(COLUMN_LOCATION_JSON),
c.getInt(COLUMN_CAN_EDIT),
c.getString(COLUMN_EVENT_TYPE),
c.getInt(COLUMN_IS_FAVORITE),
c.getString(COLUMN_IMAGE_HORIZONTAL_URL),
c.getString(COLUMN_IMAGE_VERTICAL_URL)
);
entry.setId(c.getInt(COLUMN_ID));
resList.add(entry);
}
c.close();
return resList;
}
}
| [
"ds_gordeev@guu.ru"
] | ds_gordeev@guu.ru |
cf10fff00a268e964bd0830c6ebfd1a1e75d951b | e0c0363acc9b6ef47bf98fca0fe51576eb1d5e9f | /okhttp-lib/src/main/java/com/socks/okhttp/plus/model/Progress.java | 023815960ed6e414b9c01b5eec83f1e1e8f2670e | [] | no_license | OCEChain/OCEWallet | c04565cf5906a19f0f3c9d3071db98a7a7b9bb99 | ad66c76b40a7249b5dcc22a825cfff9eaf882034 | refs/heads/master | 2020-03-18T17:22:11.436718 | 2019-09-20T02:47:54 | 2019-09-20T02:47:54 | 135,024,314 | 182 | 102 | null | null | null | null | UTF-8 | Java | false | false | 611 | java | package com.socks.okhttp.plus.model;
import java.io.Serializable;
public class Progress implements Serializable {
private long currentBytes;
private long totalBytes;
private boolean isFinish;
public Progress(long currentBytes, long totalBytes, boolean isFinish) {
this.currentBytes = currentBytes;
this.totalBytes = totalBytes;
this.isFinish = isFinish;
}
public long getCurrentBytes() {
return currentBytes;
}
public long getTotalBytes() {
return totalBytes;
}
public boolean isFinish() {
return isFinish;
}
}
| [
"danny.fn@aliyun.com"
] | danny.fn@aliyun.com |
5b9abe695666d71b8b83eaf5ba9d96e310b03c74 | b72954d06dc586274a383c059f8fa18104361f0e | /SisArcInventory/src/main/java/com/arcd/inventory/utils/SessionUtils.java | c60bea2b3a41475334f94ec18bfc0a33b9a4f801 | [] | no_license | ChristianROyola/AcadappInventory | 8fecc9379d3aaed85eff4b74fbf9f3470dc56e7c | 59a6a3d125b5e4950a60290280c00174c9817039 | refs/heads/master | 2022-09-23T16:41:41.603492 | 2022-08-30T18:10:10 | 2022-08-30T18:10:10 | 134,987,532 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 915 | java | package com.arcd.inventory.utils;
import javax.faces.context.FacesContext;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
public class SessionUtils {
public static HttpSession getSession() {
return (HttpSession) FacesContext.getCurrentInstance()
.getExternalContext().getSession(false);
}
public static HttpServletRequest getRequest() {
return (HttpServletRequest) FacesContext.getCurrentInstance()
.getExternalContext().getRequest();
}
public static String getUserName() {
HttpSession session = (HttpSession) FacesContext.getCurrentInstance()
.getExternalContext().getSession(false);
return session.getAttribute("username").toString();
}
public static String getUserId() {
HttpSession session = getSession();
if (session != null)
return (String) session.getAttribute("userid");
else
return null;
}
}
| [
"Christian@Chriss"
] | Christian@Chriss |
3c1a8a5363c2dcec61c502a7a2c3ff35123fa880 | 026d3982a1cd60d12602aa55e400f8646b069a7f | /src/classpart/FunctionTest.java | 9fe4950c6bb28da6414a78587fb62d3573979f1a | [] | no_license | leed21542/Java_Study | 0506ecb8e190c5154af837f47ad78387ebd7e51b | 162b208275076aae4f235d6b1926292648e31f5c | refs/heads/master | 2023-04-24T12:28:14.468716 | 2021-05-16T11:06:03 | 2021-05-16T11:06:03 | 364,135,704 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 50 | java | package classpart;
public class FunctionTest {
}
| [
"leed21542@naver.com"
] | leed21542@naver.com |
d38abd27c3b617f73439ea436313141914d11995 | 2e730a4e6ce78e0af35ddf1c55e92e21a36ed4d0 | /com.codeaffine.rose.test/src/com/codeaffine/rose/SectionMarkerTest.java | 17a5ef143ed73236c45dedba178fdeb1e878450d | [] | no_license | fappel/rose | fd90e49ac0eee66c8954a08be0dfffefc6b673a4 | 63dec3476afa236824dd57c022efc0a9d6cc77e2 | refs/heads/master | 2016-08-05T21:51:03.103087 | 2013-12-18T08:42:10 | 2013-12-18T08:42:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 651,996 | java | package com.codeaffine.rose;
import static com.google.common.collect.Lists.newLinkedList;
import static org.junit.Assert.assertArrayEquals;
import java.util.Collection;
import java.util.List;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.ImageData;
import org.eclipse.swt.widgets.Display;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
import com.google.common.base.Joiner;
import com.google.common.collect.Lists;
@RunWith( value = Parameterized.class )
public class SectionMarkerTest {
private final Direction direction;
private final Sphere sphere;
private final byte[] expectedImageData;
public SectionMarkerTest( Direction direction, Sphere sphere, byte[] expectedImageData ) {
this.direction = direction;
this.sphere = sphere;
this.expectedImageData = expectedImageData;
}
@Parameters
public static Collection<Object[]> data() {
Collection<Object[]> result = newLinkedList();
int dataCount = 0;
for( Direction direction : Direction.values() ) {
for( Sphere sphere : Sphere.values() ) {
result.add( new Object[] { direction, sphere, getExpectedImageData()[ dataCount ] } );
dataCount++;
}
}
return result;
}
@Before
public void setUp() {
Display.getDefault();
}
@Test
public void testMarkSection() {
ImageData roseData = new RoseDrawer().drawRose().getImageData();
Image markedRose = new SectionMarker( roseData ).markSection( sphere, direction );
assertArrayEquals( expectedImageData, markedRose.getImageData().data );
}
public static void printExpectedImageDataGetter() {
System.out.println( "private static byte[][] getExpectedImageData() {\nreturn new byte[][] {");
for( Direction direction : Direction.values() ) {
for( Sphere sphere : Sphere.values() ) {
System.out.println( "get" + direction + "_"+ sphere + "(),");
}
}
System.out.println( "};\n}");
}
public void printImageDataGetter( Image markedRose ) {
System.out.println( "private static byte[] get" + direction + "_"+ sphere + "() {");
printImageDataAsAssigment( markedRose );
System.out.println( "}");
}
public static void printImageDataAsAssigment( Image image ) {
StringBuilder result = new StringBuilder();
result.append( " return new byte[] { " );
byte[] data = image.getImageData().data;
List<Byte> bytes = Lists.newLinkedList();
for( byte b : data ) {
bytes.add( Byte.valueOf( b ) );
}
String content = Joiner.on( ", " ).join( bytes );
result.append( content );
result.append( " };" );
System.out.println( result );
}
private static byte[][] getExpectedImageData() {
return new byte[][] {
getN_CORE(),
getN_MIDDLE(),
getN_MANTLE(),
getNE_CORE(),
getNE_MIDDLE(),
getNE_MANTLE(),
getE_CORE(),
getE_MIDDLE(),
getE_MANTLE(),
getSE_CORE(),
getSE_MIDDLE(),
getSE_MANTLE(),
getS_CORE(),
getS_MIDDLE(),
getS_MANTLE(),
getSW_CORE(),
getSW_MIDDLE(),
getSW_MANTLE(),
getW_CORE(),
getW_MIDDLE(),
getW_MANTLE(),
getNW_CORE(),
getNW_MIDDLE(),
getNW_MANTLE(),
};
}
private static byte[] getN_CORE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -5, -5, 64, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -68, -68, -68, -53, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -15, -25, -34, -1, -8, -59, -110, -1, -6, -76, 110, -1, -65, 115, 38, -1, -5, -78, 105, -1, -8, -59, -110, -1, -14, -30, -46, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -15, -44, -73, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -1, -9, -57, -105, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -22, -54, -86, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -32, -92, 103, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -15, -25, -34, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -13, -36, -58, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -8, -62, -116, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -76, 110, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -5, -78, 105, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -71, 115, -81, -1, -27, -52, 64, -1, -58, -115, -113, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -94, 69, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, -25, -117, 46, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -24, -46, 56, -1, -1, -1, 0, -1, -4, -7, 8, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, 24, 14, 5, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -4, -83, 93, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -49, -97, 120, -1, -1, -1, 0, -1, -33, -65, 80, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -98, 63, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -8, -65, -122, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -81, 98, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -12, -38, -63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -10, -52, -93, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -7, -67, -128, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -88, 85, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -19, -22, -25, -16, -22, -95, 88, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -92, 78, -1, -62, -81, -100, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -11, -43, -75, -1, -5, -81, 98, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -83, 93, -1, -9, -54, -99, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 40, 24, 8, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getN_MIDDLE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -33, -55, -32, -5, -59, -113, -54, -3, -79, 100, -39, -2, -78, 101, -49, -2, -78, 101, -49, -2, -78, 101, -49, -2, -78, 101, -43, -4, -64, -125, -53, -9, -41, -73, -34, -16, -19, -22, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -18, -21, -9, -5, -53, -101, -68, -1, -93, 70, -22, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -8, -3, -63, -124, -63, -13, -23, -32, -23, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -40, -72, -56, -1, -93, 70, -23, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -8, -5, -56, -107, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -4, -58, -112, -65, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -75, 108, -48, -14, -20, -27, -8, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -60, -73, -86, -46, -1, -100, 57, -9, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -3, -38, -73, 119, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -33, -65, 80, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -58, -115, -113, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -49, -97, 120, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -74, 109, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -71, 115, -81, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -90, 77, -28, -5, -59, -113, -61, -8, -34, -59, -61, 64, 38, 13, -1, -8, -34, -59, -55, -5, -50, -95, -72, -2, -81, 95, -45, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -90, 77, -33, -1, -7, -14, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -4, -7, 8, -1, -84, 89, -49, -1, -103, 51, -1, -5, -53, -101, -68, -16, -19, -22, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -39, -71, -67, -1, -97, 64, -16, -1, -97, 64, -17, -1, -17, -33, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -14, -27, 32, -44, -70, -95, -22, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -17, -30, -43, -27, -41, -67, -92, -77, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -5, -5, -5, 64, -8, -8, -8, 112, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -4, -4, -4, 56, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -20, -20, -20, -16, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getN_MANTLE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -15, -21, -28, -1, -11, -46, -81, -1, -8, -59, -110, -1, -6, -76, 110, -1, -50, -126, 53, -1, -65, 115, 38, -1, -50, -126, 53, -1, -5, -78, 105, -1, -8, -59, -110, -1, -10, -49, -87, -1, -15, -25, -34, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -10, -49, -87, -1, -5, -78, 105, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -87, 86, -1, -9, -57, -105, -1, -15, -21, -28, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -10, -49, -87, -1, -3, -92, 75, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -98, 63, -1, -8, -59, -110, -1, -14, -20, -27, -8, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -14, -30, -46, -1, -3, -89, 81, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -98, 63, -1, -12, -38, -63, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -12, -38, -63, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -1, -10, -52, -93, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -15, -25, -34, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -93, 70, -25, -1, -61, -122, -105, -1, -36, -71, 88, -1, -27, -52, 64, -1, -27, -52, 64, -1, -27, -52, 64, -1, -33, -65, 80, -1, -58, -115, -113, -1, -87, 83, -41, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -12, -38, -63, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -35, -80, -125, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -71, 115, -81, -1, -24, -46, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -14, -27, 32, -1, -58, -115, -113, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -9, -69, 126, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -32, -92, 103, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -87, 83, -41, -1, -20, -39, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -14, -27, 32, -1, -77, 102, -65, -1, -103, 51, -1, -1, -103, 51, -1, -6, -82, 97, -1, -74, -77, -80, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -30, -33, -36, -1, -18, -94, 85, -14, -1, -74, 109, -73, -1, -7, -14, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -61, -122, -105, -1, -90, 77, -27, -66, -72, -79, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -7, -14, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -7, -14, 16, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -5, -5, -5, 64, -8, -8, -8, 112, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -4, -4, -4, 56, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -20, -20, -20, -16, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getNE_CORE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -5, -5, 64, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -68, -68, -68, -53, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -15, -25, -34, -1, -8, -59, -110, -1, -6, -76, 110, -1, -65, 115, 38, -1, -5, -78, 105, -1, -8, -59, -110, -1, -14, -30, -46, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -15, -44, -73, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -1, -9, -57, -105, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -22, -54, -86, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -32, -92, 103, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -15, -25, -34, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -13, -36, -58, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -8, -62, -116, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -76, 110, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -5, -78, 105, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -71, 115, -81, -1, -27, -52, 64, -1, -58, -115, -113, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -94, 69, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, -25, -117, 46, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -24, -46, 56, -1, -1, -1, 0, -1, -4, -7, 8, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, 24, 14, 5, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -4, -83, 93, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -49, -97, 120, -1, -1, -1, 0, -1, -33, -65, 80, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -98, 63, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -8, -65, -122, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -81, 98, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -12, -38, -63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -10, -52, -93, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -7, -67, -128, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -88, 85, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -19, -22, -25, -16, -22, -95, 88, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -92, 78, -1, -62, -81, -100, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -11, -43, -75, -1, -5, -81, 98, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -83, 93, -1, -9, -54, -99, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 40, 24, 8, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getNE_MIDDLE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -8, -11, 70, -2, -78, 101, -49, -2, -75, 108, -48, -5, -56, -107, -64, -10, -39, -68, -35, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -17, -33, 40, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -8, -3, -63, -124, -63, -13, -19, -26, -23, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -30, -59, 72, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -93, 70, -23, -7, -36, -65, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -40, -78, 96, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -3, -66, 126, -64, -14, -20, -27, -8, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -68, -68, -68, -53, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -52, -103, -128, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -90, 77, -27, -64, -74, -83, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -61, -124, 68, -37, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -69, 120, -67, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -65, 115, 38, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -41, -76, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 56, 33, 11, -1, -8, -34, -59, -55, -5, -50, -95, -72, -1, -87, 83, -32, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -93, 70, -24, -13, -23, -32, -30, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -56, -107, -49, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -3, -70, 119, -61, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -38, -60, -24, -4, -100, 61, -7, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -12, -25, -38, -29, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -17, -56, -94, -37, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -50, -95, -59, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -3, -76, 107, -46, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -78, 101, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -5, -5, -5, 64, -8, -8, -8, 112, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -40, -72, -56, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -90, 77, -30, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -19, -26, -23, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 0, 0, 0, -1, -17, -113, 48, -1, -13, -109, 52, -5, -1, -77, 102, -65, -1, -74, 109, -73, -1, -52, -103, -128, -1, -52, -103, -128, -1, -27, -52, 64, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -4, -4, -4, 56, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -20, -20, -20, -16, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getNE_MANTLE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 48, 29, 10, -1, -50, -126, 53, -1, -5, -78, 105, -1, -8, -59, -110, -1, -9, -54, -99, -1, -14, -27, -40, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 80, 48, 16, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -87, 86, -1, -9, -54, -99, -1, -15, -21, -28, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 96, 57, 19, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -98, 63, -1, -9, -57, -105, -1, -15, -18, -21, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -113, 92, 41, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -94, 69, -1, -12, -38, -63, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -3, -60, -117, -85, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -1, -10, -52, -93, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -17, -33, 40, -1, -27, -52, 64, -1, -27, -52, 64, -1, -55, -109, -121, -1, -84, 89, -49, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -7, -67, -128, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -14, -27, 32, -1, -58, -115, -113, -1, -100, 57, -8, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -9, -54, -99, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -14, -27, 32, -1, -77, 102, -65, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -12, -41, -70, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -68, -68, -68, -53, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -4, -7, 8, -1, -61, -122, -105, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -98, 63, -1, -15, -25, -34, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -61, -122, -105, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -8, -65, -122, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -4, -7, 8, -1, -77, 102, -65, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -1, -15, -25, -34, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -11, -20, 24, -1, -100, 57, -9, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -8, -65, -122, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -58, -115, -113, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -98, 63, -1, -15, -18, -21, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -4, -7, 8, -1, -97, 64, -17, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -12, -41, -70, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -68, 121, -89, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -7, -70, 122, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -36, -71, 88, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -83, 93, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -5, -5, -5, 64, -8, -8, -8, 112, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -14, -27, 32, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -3, -92, 75, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -71, 115, -81, -50, -126, 53, -3, -65, 115, 38, -1, -128, 77, 26, -1, -128, 77, 26, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -4, -4, -4, 56, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -20, -20, -20, -16, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getE_CORE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -5, -5, 64, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -68, -68, -68, -53, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -15, -25, -34, -1, -8, -59, -110, -1, -6, -76, 110, -1, -65, 115, 38, -1, -5, -78, 105, -1, -8, -59, -110, -1, -14, -30, -46, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -15, -44, -73, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -1, -9, -57, -105, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -22, -54, -86, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -32, -92, 103, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -15, -25, -34, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -13, -36, -58, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -8, -62, -116, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -76, 110, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -5, -78, 105, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -71, 115, -81, -1, -27, -52, 64, -1, -58, -115, -113, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -94, 69, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, -25, -117, 46, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -24, -46, 56, -1, -1, -1, 0, -1, -4, -7, 8, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, 24, 14, 5, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -4, -83, 93, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -49, -97, 120, -1, -1, -1, 0, -1, -33, -65, 80, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -98, 63, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -8, -65, -122, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -81, 98, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -12, -38, -63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -10, -52, -93, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -7, -67, -128, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -88, 85, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -19, -22, -25, -16, -22, -95, 88, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -92, 78, -1, -62, -81, -100, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -11, -43, -75, -1, -5, -81, 98, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -83, 93, -1, -9, -54, -99, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 40, 24, 8, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getE_MIDDLE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -5, -5, 64, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -68, -68, -68, -53, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -7, -10, 54, -66, -72, -79, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -11, -20, 24, -1, -80, 96, -57, -2, -78, 101, -49, -15, -18, -21, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -20, -39, 48, -1, -93, 70, -25, -1, -103, 51, -1, -1, -103, 51, -1, -4, -64, -125, -56, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -36, -71, 88, -1, -100, 57, -9, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -12, -31, -50, -27, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -58, -115, -113, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -3, -73, 113, -56, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -17, -30, -43, -27, -6, -98, 65, -11, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -12, -28, -44, -28, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -21, -44, -66, -46, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -56, -107, -53, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -3, -63, -124, -66, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -81, 95, -43, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -5, -5, -5, 64, -8, -8, -8, 112, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -32, -54, -63, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -97, 64, -17, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -15, -25, -34, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 0, 0, 0, -1, -33, -122, 45, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, 85, 72, 59, -6, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -93, 70, -25, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -14, -27, -40, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -4, -4, -4, 56, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -24, -37, -50, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -50, -95, -68, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -93, 70, -20, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -14, -17, -20, -32, -1, -93, 70, -24, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -64, -125, -53, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -20, -20, -20, -16, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -4, -74, 112, -57, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -10, -39, -68, -35, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -20, -30, -39, 120, -11, -97, 73, -14, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -93, 70, -20, -16, -19, -22, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -7, -14, 16, -1, -74, 109, -73, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -7, -46, -84, -51, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -58, -115, -113, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -85, 88, -35, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -36, -71, 88, -1, -100, 57, -9, -1, -97, 64, -15, -12, -28, -44, -21, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -24, -46, 62, -9, -38, -67, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getE_MANTLE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -5, -5, 64, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -21, -28, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -17, -36, -55, -1, -9, -98, 69, -1, -9, -54, -99, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -15, -47, -79, -1, -3, -102, 55, -1, -1, -103, 51, -1, -1, -103, 51, -1, -12, -41, -70, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -68, -68, -68, -53, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -51, -99, -111, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -98, 63, -1, -15, -25, -34, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -55, -109, -121, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -8, -65, -122, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -74, 109, -73, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -1, -15, -25, -34, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -7, -14, 16, -1, -93, 70, -24, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -8, -65, -122, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -46, -91, 112, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -98, 63, -1, -15, -18, -21, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -4, -7, 8, -1, -97, 64, -17, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -12, -38, -63, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -68, 121, -89, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -8, -65, -122, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -40, -78, 96, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -83, 93, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -5, -5, -5, 64, -8, -8, -8, 112, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -14, -27, 32, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -3, -92, 75, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -93, 70, -25, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, 84, 71, 58, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -16, -19, -22, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -4, -4, -4, 56, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -11, -20, 24, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -98, 63, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -27, -52, 64, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -87, 86, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -58, -115, -113, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -73, 116, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -20, -20, -20, -16, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -90, 77, -33, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -10, -49, -87, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -33, -65, 80, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -15, -21, -28, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -84, 89, -49, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -83, 93, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -46, -91, 112, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -11, -43, -75, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -30, -59, 72, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -87, 86, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -74, 109, -71, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -12, -41, -70, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -15, -18, -55, -24, -87, 105, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -8, -62, -116, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -43, -88, 123, -1, -1, -103, 51, -1, -6, -76, 110, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -51, -80, -109, -1, -16, -19, -22, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getSE_CORE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -5, -5, 64, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -68, -68, -68, -53, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -15, -25, -34, -1, -8, -59, -110, -1, -6, -76, 110, -1, -65, 115, 38, -1, -5, -78, 105, -1, -8, -59, -110, -1, -14, -30, -46, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -15, -44, -73, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -1, -9, -57, -105, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -22, -54, -86, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -32, -92, 103, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -15, -25, -34, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -13, -36, -58, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -8, -62, -116, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -76, 110, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -5, -78, 105, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -71, 115, -81, -1, -27, -52, 64, -1, -58, -115, -113, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -94, 69, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, -25, -117, 46, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -24, -46, 56, -1, -1, -1, 0, -1, -4, -7, 8, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, 24, 14, 5, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -4, -83, 93, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -49, -97, 120, -1, -1, -1, 0, -1, -33, -65, 80, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -98, 63, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -8, -65, -122, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -81, 98, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -12, -38, -63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -10, -52, -93, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -7, -67, -128, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -88, 85, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -19, -22, -25, -16, -22, -95, 88, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -92, 78, -1, -62, -81, -100, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -11, -43, -75, -1, -5, -81, 98, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -83, 93, -1, -9, -54, -99, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 40, 24, 8, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getSE_MIDDLE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -5, -5, 64, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -68, -68, -68, -53, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -5, -5, -5, 64, -8, -8, -8, 112, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 0, 0, 0, -1, -81, 105, 35, -1, -85, 114, 57, -29, -1, -52, -103, -128, -1, -36, -71, 88, -1, -27, -52, 64, -1, -14, -27, 32, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -4, -4, -4, 56, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -29, -48, -46, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -93, 70, -23, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -58, -112, -57, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -85, 88, -40, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -12, -28, -44, -28, -1, -100, 57, -9, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -59, -113, -61, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -20, -20, -20, -16, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -3, -82, 94, -40, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -10, -36, -61, -37, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -28, -44, -21, -6, -85, 91, -34, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -90, 77, -27, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -11, -27, -43, -41, -5, -56, -107, -53, -1, -100, 57, -8, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -8, -34, -59, -61, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -97, 96, 32, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -3, -63, -124, -76, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -78, 111, 44, -12, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -90, 77, -30, -14, -17, -20, -24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -55, -109, -121, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -9, -35, -60, -43, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -46, -91, 112, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -93, 70, -23, -9, -38, -67, -41, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -33, -65, 80, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -3, -66, 126, -73, -13, -19, -26, -23, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -20, -39, 48, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -93, 70, -21, -8, -37, -66, -58, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -7, -14, 16, -1, -103, 51, -1, -1, -103, 51, -1, -1, -90, 77, -29, -4, -64, -125, -59, -9, -41, -73, -39, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getSE_MANTLE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -5, -5, 64, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -68, -68, -68, -53, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -5, -5, -5, 64, -8, -8, -8, 112, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -46, -91, 112, -98, 107, 56, -4, 80, 48, 16, -1, 64, 38, 13, -1, 64, 38, 13, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -4, -4, -4, 56, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -7, -14, 16, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -94, 69, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -24, -46, 56, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -3, -89, 81, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -55, -109, -121, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -76, 110, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -20, -20, -20, -16, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -87, 83, -41, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -10, -49, -87, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -30, -59, 72, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -15, -21, -28, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -84, 89, -49, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -81, 98, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -52, -103, -128, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -11, -43, -75, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -36, -71, 88, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -81, 98, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -36, -71, 88, -1, -100, 57, -9, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -13, -32, -51, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -52, -103, -128, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -8, -62, -116, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -27, -52, 64, -1, -80, 96, -57, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -76, 110, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -17, -33, 40, -1, -52, -103, -128, -1, -84, 89, -49, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -14, -97, 76, -1, -15, -21, -28, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -49, -97, 120, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -76, 110, -1, -15, -21, -28, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -82, 123, 72, -11, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -8, -65, -122, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 104, 62, 21, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -83, 93, -1, -12, -38, -63, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 88, 53, 18, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -83, 93, -1, -11, -43, -75, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 64, 38, 13, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -94, 69, -1, -5, -78, 105, -1, -10, -52, -93, -1, -14, -27, -40, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getS_CORE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -5, -5, 64, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -68, -68, -68, -53, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -15, -25, -34, -1, -8, -59, -110, -1, -6, -76, 110, -1, -65, 115, 38, -1, -5, -78, 105, -1, -8, -59, -110, -1, -14, -30, -46, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -15, -44, -73, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -1, -9, -57, -105, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -22, -54, -86, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -32, -92, 103, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -15, -25, -34, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -13, -36, -58, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -8, -62, -116, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -76, 110, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -5, -78, 105, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -71, 115, -81, -1, -27, -52, 64, -1, -58, -115, -113, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -94, 69, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, -25, -117, 46, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -24, -46, 56, -1, -1, -1, 0, -1, -4, -7, 8, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, 24, 14, 5, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -4, -83, 93, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -49, -97, 120, -1, -1, -1, 0, -1, -33, -65, 80, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -98, 63, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -8, -65, -122, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -81, 98, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -12, -38, -63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -10, -52, -93, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -7, -67, -128, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -88, 85, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -19, -22, -25, -16, -22, -95, 88, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -92, 78, -1, -62, -81, -100, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -11, -43, -75, -1, -5, -81, 98, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -83, 93, -1, -9, -54, -99, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 40, 24, 8, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getS_MIDDLE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -5, -5, 64, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -68, -68, -68, -53, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -5, -5, -5, 64, -8, -8, -8, 112, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -4, -4, -4, 56, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -19, -25, -32, -15, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -10, -16, -23, 87, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -58, -115, -113, -11, -97, 73, -12, -25, -38, -51, -40, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -17, -20, -24, -8, -78, 108, -48, -15, -94, 82, -19, -1, -4, -7, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -36, -71, 88, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -9, -5, -56, -107, -64, -11, -24, -37, -57, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -12, -18, -25, -46, -6, -45, -83, -66, -1, -93, 70, -23, -1, -103, 51, -1, -1, -103, 51, -1, -1, -61, -122, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -24, -46, 56, -1, -100, 57, -9, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -90, 77, -33, -65, 115, 38, -1, -1, -87, 83, -41, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -46, -91, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -11, -20, 24, -1, -93, 70, -25, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -27, -52, 64, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -6, -9, 39, -1, -80, 96, -57, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -97, 64, -17, -1, -14, -27, 39, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -53, -66, -79, -13, -1, -87, 83, -35, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -97, 64, -15, -9, -38, -67, -41, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -14, -20, -27, -16, -3, -73, 113, -53, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -88, 82, -31, -12, -28, -44, -21, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -35, -60, -43, -2, -85, 88, -37, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -93, 70, -21, -7, -49, -90, -48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -36, -61, -37, -5, -62, -119, -57, -1, -90, 77, -28, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -97, 64, -15, -4, -67, 125, -55, -8, -43, -78, -38, -16, -19, -22, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -32, -51, -1, -123, 107, 82, -17, -12, -38, -63, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getS_MANTLE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -5, -5, 64, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -68, -68, -68, -53, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -5, -5, -5, 64, -8, -8, -8, 112, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -4, -4, -4, 56, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -20, -20, -20, -16, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -2, -50, -98, -119, -1, -43, -84, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -30, -59, 72, -1, -64, -128, -94, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -47, -79, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -61, -122, -105, -1, -4, -7, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -46, -91, 112, -1, -103, 51, -1, -1, -103, 51, -1, -29, -83, 119, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -17, -36, -55, -1, -3, -102, 55, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -90, 77, -33, -1, -40, -78, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -27, -52, 64, -1, -84, 89, -49, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -50, -85, -120, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -14, -27, -40, -1, -10, -99, 68, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -90, 77, -33, -1, -61, -122, -105, -1, -33, -65, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -24, -46, 56, -1, -55, -109, -121, -1, -84, 89, -49, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -101, 56, -1, -56, -79, -101, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -8, -65, -122, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -87, 83, -41, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -76, 110, -1, -15, -21, -28, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -10, -52, -93, -1, -1, -100, 57, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -8, -65, -122, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -13, -32, -51, -1, -6, -76, 110, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -87, 86, -1, -12, -41, -70, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -13, -32, -51, -1, -6, -76, 110, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -87, 86, -1, -11, -43, -75, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -15, -21, -28, -1, -11, -46, -81, -1, -6, -73, 116, -1, -3, -89, 81, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -3, -92, 75, -1, -6, -76, 110, -1, -10, -52, -93, -1, -14, -27, -40, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 86, 60, 35, -1, -16, -19, -22, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getSW_CORE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -5, -5, 64, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -68, -68, -68, -53, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -15, -25, -34, -1, -8, -59, -110, -1, -6, -76, 110, -1, -65, 115, 38, -1, -5, -78, 105, -1, -8, -59, -110, -1, -14, -30, -46, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -15, -44, -73, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -1, -9, -57, -105, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -22, -54, -86, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -32, -92, 103, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -15, -25, -34, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -13, -36, -58, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -8, -62, -116, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -76, 110, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -5, -78, 105, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -71, 115, -81, -1, -27, -52, 64, -1, -58, -115, -113, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -94, 69, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, -25, -117, 46, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -24, -46, 56, -1, -1, -1, 0, -1, -4, -7, 8, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, 24, 14, 5, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -4, -83, 93, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -49, -97, 120, -1, -1, -1, 0, -1, -33, -65, 80, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -98, 63, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -8, -65, -122, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -81, 98, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -12, -38, -63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -10, -52, -93, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -7, -67, -128, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -88, 85, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -19, -22, -25, -16, -22, -95, 88, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -92, 78, -1, -62, -81, -100, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -11, -43, -75, -1, -5, -81, 98, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -83, 93, -1, -9, -54, -99, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 40, 24, 8, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getSW_MIDDLE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -5, -5, 64, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -68, -68, -68, -53, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -5, -5, -5, 64, -8, -8, -8, 112, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -7, -14, 16, -1, -27, -52, 64, -1, -30, -59, 72, -1, -52, -103, -128, -96, 109, 58, -33, -65, 115, 38, -1, 24, 14, 5, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -1, -87, 83, -33, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -10, -29, -48, -46, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -78, 101, -47, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -45, -83, -71, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -4, -4, -4, 56, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -64, -125, -59, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -78, 101, -43, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -46, -84, -46, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -8, -47, -85, -41, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -20, -27, -8, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -8, -18, -31, -44, -14, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -73, 113, -56, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -7, -99, 64, -7, -20, -49, -78, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -24, -37, -36, -1, -100, 57, -9, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -71, 118, -45, -10, -33, -55, -51, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -44, -82, -85, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -41, -127, 43, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -75, 108, -55, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -36, -122, 48, -6, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -24, -33, -15, -1, -97, 64, -15, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -74, 109, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -51, -67, -83, -13, -1, -80, 96, -48, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -64, -128, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -4, -52, -100, -89, -1, -100, 57, -9, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -52, -103, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -26, -42, -48, -2, -81, 95, -43, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -40, -78, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -30, -49, -40, -5, -59, -113, -61, -1, -87, 83, -35, -1, -103, 51, -1, -1, -103, 51, -1, -1, -27, -52, 64, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getSW_MANTLE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -5, -5, 64, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -68, -68, -68, -53, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -5, -5, -5, 64, -8, -8, -8, 112, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 56, 33, 11, -1, 64, 38, 13, -1, 64, 38, 13, -1, -98, 107, 56, -1, -2, -53, -104, -112, -1, -7, -14, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, -43, -126, 47, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -17, -33, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -5, -81, 98, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -27, -52, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -4, -4, -4, 56, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -7, -70, 122, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -46, -91, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -8, -62, -116, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -74, 109, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -13, -36, -58, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -9, -1, -7, -14, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -20, -20, -20, -16, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -3, -92, 75, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -46, -91, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -8, -65, -122, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -97, 64, -16, -1, -11, -20, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -15, -25, -34, -1, -1, -100, 57, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -68, 121, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -8, -65, -122, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -49, -97, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -25, -34, -1, -1, -100, 57, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -52, -103, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -11, -46, -81, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -68, 121, -89, -1, -7, -14, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -8, -62, -116, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -93, 70, -25, -1, -46, -91, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -6, -76, 110, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -90, 77, -33, -1, -61, -122, -105, -1, -27, -52, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -8, -65, -122, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -61, -122, -105, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -10, -52, -93, -1, -1, -100, 57, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -52, -122, 64, -8, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -14, -27, -40, -1, -6, -76, 110, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -97, 96, 32, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -13, -32, -51, -1, -6, -73, 116, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -128, 77, 26, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -15, -21, -28, -1, -10, -49, -87, -1, -6, -76, 110, -1, -3, -89, 81, -1, -1, -103, 51, -1, -1, -103, 51, -1, 112, 67, 22, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getW_CORE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -5, -5, 64, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -68, -68, -68, -53, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -15, -25, -34, -1, -8, -59, -110, -1, -6, -76, 110, -1, -65, 115, 38, -1, -5, -78, 105, -1, -8, -59, -110, -1, -14, -30, -46, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -15, -44, -73, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -1, -9, -57, -105, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -22, -54, -86, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -32, -92, 103, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -15, -25, -34, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -13, -36, -58, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -8, -62, -116, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -76, 110, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -5, -78, 105, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -71, 115, -81, -1, -27, -52, 64, -1, -58, -115, -113, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -94, 69, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, -25, -117, 46, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -24, -46, 56, -1, -1, -1, 0, -1, -4, -7, 8, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, 24, 14, 5, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -4, -83, 93, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -49, -97, 120, -1, -1, -1, 0, -1, -33, -65, 80, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -98, 63, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -8, -65, -122, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -81, 98, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -12, -38, -63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -10, -52, -93, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -7, -67, -128, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -88, 85, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -19, -22, -25, -16, -22, -95, 88, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -92, 78, -1, -62, -81, -100, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -11, -43, -75, -1, -5, -81, 98, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -83, 93, -1, -9, -54, -99, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 40, 24, 8, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getW_MIDDLE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -5, -5, 64, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -62, -72, -81, -48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -58, -112, -65, -1, -93, 70, -25, -1, -24, -46, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -42, -77, -59, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -9, -1, -40, -78, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -18, -21, -9, -1, -93, 70, -23, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -58, -115, -113, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -55, -106, -68, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -77, 102, -65, -1, -7, -14, 16, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -19, -22, -1, -1, -97, 64, -15, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -44, -70, -95, -22, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -35, -60, -43, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -53, -101, -68, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -62, -119, -57, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -85, 88, -38, -16, -19, -22, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -78, 101, -43, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -53, -101, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -5, -5, -5, 64, -8, -8, -8, 112, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -1, -87, 83, -32, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -9, -28, -47, -59, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -90, 77, -29, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, 32, 19, 6, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -1, -90, 77, -27, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -10, -26, -42, -48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -78, 101, -47, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -45, -83, -71, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -4, -4, -4, 56, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -70, 119, -50, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -3, -73, 113, -53, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -46, -84, -46, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -10, -29, -48, -53, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -24, -33, -8, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -90, 77, -30, -19, -25, -32, -15, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -73, 113, -56, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -97, 64, -17, -50, -76, -101, -51, -28, -28, -28, -46, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -30, -49, -33, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -90, 77, -33, -1, -17, -33, 40, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -61, -118, -60, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -77, 102, -65, -1, -7, -14, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -19, -22, -1, -2, -85, 88, -37, -1, -103, 51, -1, -1, -58, -115, -113, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -26, -39, -15, -2, -41, -79, 116, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getW_MANTLE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -5, -5, 64, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -15, -21, -28, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -12, -41, -70, -1, -1, -100, 57, -1, -42, -74, -106, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -30, -46, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -41, -89, 119, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -17, -20, -24, -3, -92, 75, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -24, -91, 98, -19, -1, -4, -7, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -9, -54, -99, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -74, 109, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -18, -21, -9, -2, -94, 69, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -87, 83, -41, -1, -7, -14, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -9, -54, -99, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -20, -39, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -4, -83, 93, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -71, 115, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -15, -25, -34, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -20, -39, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -10, -49, -87, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -90, 77, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -7, -70, 122, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -58, -115, -113, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -5, -78, 105, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -33, -65, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -5, -5, -5, 64, -8, -8, -8, 112, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, -32, -115, 58, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -24, -46, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, -25, -117, 46, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -14, -27, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, -36, -122, 48, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -20, -39, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -5, -81, 98, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -30, -59, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -4, -4, -4, 56, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -7, -70, 122, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -49, -97, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -9, -57, -105, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -77, 102, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -13, -32, -51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -9, -1, -7, -14, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -20, -20, -20, -16, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -3, -92, 75, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -46, -91, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -7, -67, -128, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -9, -1, -11, -20, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -15, -25, -34, -1, -1, -100, 57, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -68, 121, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -8, -65, -122, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -49, -97, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -25, -34, -1, -1, -100, 57, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -90, 77, -29, -1, -4, -7, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -11, -46, -81, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -84, 92, -1, -56, -62, -69, -14, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -8, -62, -116, -1, -1, -103, 51, -1, -9, -72, 120, -1, -74, -77, -80, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -11, -43, -75, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getNW_CORE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -9, -9, -9, -113, -7, -7, -7, 104, -5, -5, -5, 64, -5, -5, -5, 64, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -9, -9, -9, -128, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -68, -68, -68, -53, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -15, -25, -34, -1, -8, -59, -110, -1, -6, -76, 110, -1, -65, 115, 38, -1, -5, -78, 105, -1, -8, -59, -110, -1, -14, -30, -46, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -15, -44, -73, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -100, 57, -1, -9, -57, -105, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -22, -54, -86, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -32, -92, 103, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -15, -25, -34, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -13, -36, -58, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -8, -62, -116, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -76, 110, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -5, -78, 105, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -71, 115, -81, -1, -27, -52, 64, -1, -58, -115, -113, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -94, 69, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, -25, -117, 46, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -24, -46, 56, -1, -1, -1, 0, -1, -4, -7, 8, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, 24, 14, 5, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -4, -83, 93, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -49, -97, 120, -1, -1, -1, 0, -1, -33, -65, 80, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -98, 63, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -8, -65, -122, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -81, 98, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -12, -38, -63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -10, -52, -93, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -7, -67, -128, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -5, -88, 85, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -19, -22, -25, -16, -22, -95, 88, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -6, -92, 78, -1, -62, -81, -100, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -11, -43, -75, -1, -5, -81, 98, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -83, 93, -1, -9, -54, -99, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 40, 24, 8, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getNW_MIDDLE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -30, -49, -33, -5, -53, -101, -60, -3, -73, 113, -48, -2, -78, 101, -49, -4, -23, -42, 100, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -5, -53, -101, -68, -1, -93, 70, -22, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -36, -71, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -25, -41, -68, -1, -80, 96, -52, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -49, -97, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -5, -53, -101, -72, -1, -100, 57, -9, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -58, -115, -113, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -18, -94, 85, -14, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -71, 115, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -53, -101, -72, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -31, -114, 59, -19, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -25, -41, -75, -1, -100, 57, -9, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -17, -113, 48, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -18, -21, -9, -1, -80, 96, -52, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -93, 70, -21, -5, -62, -119, -57, -8, -34, -59, -61, 64, 38, 13, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -55, -106, -68, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -71, 118, -45, -15, -21, -28, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -1, -97, 64, -15, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -34, -79, -124, -17, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -35, -60, -43, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -67, 125, -49, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -59, -113, -61, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -93, 70, -20, -15, -21, -28, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -75, 108, -48, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -4, -55, -106, -61, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -5, -5, -5, 64, -8, -8, -8, 112, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -2, -85, 88, -38, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -8, -34, -59, -55, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -3, -26, -48, 81, -1, -46, -91, 112, -1, -52, -103, -128, -1, -68, 121, -89, -1, -77, 102, -65, -25, -114, 53, -9, -1, -103, 51, -1, 32, 19, 6, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -4, -4, -4, 56, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -20, -20, -20, -16, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
private static byte[] getNW_MANTLE() {
return new byte[] { -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 96, -9, -9, -9, -128, -10, -10, -10, -89, -12, -12, -12, -65, 92, 92, 92, -25, -12, -12, -12, -65, -11, -11, -11, -81, -9, -9, -9, -128, -8, -8, -8, 112, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, -121, -13, -13, -13, -49, -15, -25, -34, -1, -10, -49, -87, -1, -8, -59, -110, -1, -6, -76, 110, -1, -50, -126, 53, -1, 72, 43, 14, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -9, -9, -9, -105, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -8, -8, -8, -121, -15, -18, -21, -9, -10, -52, -93, -1, -4, -83, 93, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -128, 77, 26, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -2, -2, -2, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -14, -14, -25, -10, -49, -87, -1, -2, -94, 69, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -105, 91, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -14, -30, -46, -1, -4, -87, 86, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -79, 110, 43, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -81, -12, -38, -63, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -2, -78, 101, -49, -5, -5, -5, 64, -6, -6, -6, 88, -9, -9, -9, -128, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -10, -49, -87, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -90, 77, -33, -1, -61, -122, -105, -1, -33, -65, 80, -1, -27, -52, 64, -1, -20, -39, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -7, -7, -7, 104, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -12, -41, -70, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -77, 102, -65, -1, -24, -46, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -12, -12, -12, -65, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -14, -30, -46, -1, -2, -98, 63, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -87, 83, -41, -1, -30, -59, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -15, -15, -15, -9, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -105, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -14, -14, -14, -25, -4, -87, 86, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -77, 102, -65, -1, -7, -14, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -70, -70, -70, -6, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -9, -54, -99, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -74, 109, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 96, 96, 96, -97, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -15, -15, -15, -9, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -15, -18, -21, -9, -2, -94, 69, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -87, 83, -41, -1, -7, -14, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -9, -54, -99, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -27, -52, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -9, -9, -9, -128, -11, -11, -11, -81, 0, 0, 0, -1, -11, -11, -11, -73, -9, -9, -9, -128, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -4, -87, 86, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -71, 115, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -97, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -2, -2, -2, 16, -1, -1, -1, 0, -3, -3, -3, 32, -14, -27, -40, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -20, -39, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -59, -59, -59, -29, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -19, -19, -19, -31, -54, -54, -54, -102, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -14, -14, -14, -33, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -8, -8, -8, 112, -10, -52, -93, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -87, 83, -41, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -27, -27, -27, -59, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -105, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -10, -10, -10, -89, -1, -1, -1, 0, -9, -9, -9, -105, -7, -70, 122, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -55, -109, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 56, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -1, -1, -1, 0, -11, -11, -11, -81, -5, -78, 105, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -30, -59, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -5, -5, -5, 64, -8, -8, -8, 112, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -13, -13, -13, -49, -37, -116, 60, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -103, 51, -1, -1, -20, -39, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -9, -9, -9, -128, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -1, -1, -1, 0, 61, 61, 61, -7, 112, 67, 22, -1, -128, 77, 26, -1, -81, 105, 35, -1, -50, -126, 53, -1, -2, -78, 101, -57, -1, -11, -20, 24, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 64, 64, 64, -65, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 56, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 64, 64, 64, -65, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 61, 61, 61, -7, 0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, -1, 60, 60, 60, -1, -1, -1, -1, 0, -13, -13, -13, -41, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -4, -4, -4, 48, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 72, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -113, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -4, -4, -4, 56, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -1, -1, -1, 0, -10, -10, -10, -97, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 88, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, -121, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -33, -1, -1, -1, 0, -8, -8, -8, 120, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -12, -12, -12, -65, -16, -16, -16, -1, -21, -21, -21, -1, -61, -61, -61, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -61, -61, -61, -1, -21, -21, -21, -1, -14, -14, -14, -33, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -11, -11, -11, -73, -1, -1, -1, 0, -5, -5, -5, 64, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -20, -20, -20, -16, -76, -76, -76, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, 90, 90, 90, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -11, -11, -11, 76, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -6, -6, -6, 80, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -67, -67, -67, -68, -28, -28, -28, -46, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -22, -22, -22, 106, -66, -66, -66, -81, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -10, -10, -10, -89, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -9, -9, -9, -128, -12, -12, -12, -65, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -105, -2, -2, -2, 16, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 120, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 72, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -8, -8, -8, 112, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 32, 32, 32, -33, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -8, -8, -8, -121, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -60, -60, -60, -15, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -12, -12, -12, -57, -61, -61, -61, -1, -21, -21, -21, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 8, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -21, -21, -21, -1, -76, -76, -76, -1, -31, -31, -31, -1, -15, -15, -15, -17, -6, -6, -6, 88, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -5, -5, -5, 64, -14, -14, -14, -25, -16, -16, -16, -1, -31, -31, -31, -1, -76, -76, -76, -1, -21, -21, -21, -1, -16, -16, -16, -1, -15, -15, -15, -17, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 24, -14, -14, -14, -25, -16, -16, -16, -1, -71, -71, -71, -1, -31, -31, -31, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -12, -12, -12, -57, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 40, -11, -11, -11, -81, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -31, -31, -31, -1, -71, -71, -71, -1, -16, -16, -16, -1, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -4, -4, -4, 48, -15, -15, -15, -17, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -8, -8, -8, 112, -12, -12, -12, -57, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -7, -7, -7, 96, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -13, -13, -13, -41, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 92, 92, 92, -22, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -17, -5, -5, -5, 64, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -2, -2, -2, 16, -11, -11, -11, -73, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -49, -3, -3, -3, 32, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -6, -6, -6, 80, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 0, 0, 0, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -14, -14, -14, -25, -7, -7, -7, 104, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -7, -7, -7, 96, -13, -13, -13, -49, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, 60, 60, 60, -1, 0, 0, 0, -1, 60, 60, 60, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -16, -16, -16, -1, -13, -13, -13, -41, -8, -8, -8, 112, -1, -1, -1, 8, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -3, -3, -3, 32, -7, -7, -7, 104, -11, -11, -11, -73, -14, -14, -14, -25, -16, -16, -16, -1, -16, -16, -16, -1, 30, 30, 30, -1, -16, -16, -16, -1, -16, -16, -16, -1, -15, -15, -15, -9, -12, -12, -12, -65, -9, -9, -9, -128, -3, -3, -3, 40, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0 };
}
} | [
"fappel@eclipsesource.com"
] | fappel@eclipsesource.com |
e6c2b11cedc4fb1ca84270774e6255f9268f2a78 | c41f8fb6cdd9d06ad97d9f6457e27a1a444b79d9 | /src/question68/Solution.java | e39413ab3d0fd4383e44fa16e9fc0ca1d2c2bb09 | [] | no_license | eEEe-EeeE/CodingInterviews | e142629e9a5d59cbbe71ecb0f8b75fdea9a50376 | 0eda8c2b47e09dc032712937542293b9b6e82188 | refs/heads/master | 2021-06-29T15:41:24.265549 | 2021-04-19T10:29:58 | 2021-04-19T10:29:58 | 225,316,442 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,594 | java | package question68;
import bean.BTNode;
import bean.LNode;
import java.util.Deque;
import java.util.LinkedList;
import java.util.List;
import java.util.Queue;
public class Solution {
// 求树中两个结点的最低公共祖先
// 这里简化为二叉树
static BTNode solute(BTNode tree, int x, int y) {
if (tree == null)
return null;
Deque<BTNode> pathX = new LinkedList<>();
Deque<BTNode> pathY = new LinkedList<>();
getNodePath(tree, x, pathX);
getNodePath(tree, y, pathY);
return getLastCommonNode(pathX, pathY);
}
private static boolean getNodePath(BTNode root, int key, Deque<BTNode> path) {
if (root == null)
return false;
if (root.getKey() == key)
return true;
path.offerLast(root);
boolean childFound;
childFound = getNodePath(root.getLeft(), key, path);
if (!childFound)
childFound = getNodePath(root.getRight(), key, path);
if (!childFound) {
path.pollLast();
return false;
}
return true;
}
private static BTNode getLastCommonNode(Deque<BTNode> l1, Deque<BTNode> l2) {
if (l1.isEmpty() || l2.isEmpty())
return null;
BTNode common = null;
BTNode b1;
BTNode b2;
while (!l1.isEmpty() && !l2.isEmpty()) {
b1 = l1.pollFirst();
b2 = l2.pollFirst();
if (b1 == b2)
common = b1;
else
break;
}
return common;
}
}
| [
"civilian_x@163.com"
] | civilian_x@163.com |
9109333e5394ff030111fbc2ec7bc451d2998933 | 1b32f5cdfd69752214a8fb4a806a64a62a20de10 | /JAVA/oct-18PartB/src/com/manthan/Gift.java | 62e045563a52fc67009decbb38afc46e517d2ebd | [] | no_license | karthikmg10/Manthan-ELF-16th-oct-Karthik-MG | 2ae4d2af2fa3602283db1e94da62bdaec1229e61 | 5e2e448d991358921b1350a8708b7177e90d1a40 | refs/heads/master | 2020-09-16T19:41:44.160608 | 2019-12-10T03:08:31 | 2019-12-10T03:08:31 | 222,646,341 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 162 | java | package com.manthan;
public class Gift {
String msg;
public Gift(String msg) {
this.msg = msg;
}
public void open() {
System.out.println(msg);
}
}
| [
"karthikmachani07@gmail.com"
] | karthikmachani07@gmail.com |
a65e2366981dc67dfad84e2caf65b591c34137ce | cb99f31408fae24ba81dae6681a134f46ce352e8 | /app/src/main/java/com/markir/roqi/smsfacebook/ResultActivity.java | 785b6314c8c11752a7f457212a6ea277d5c0863d | [] | no_license | EmilouCifer/FacebookSMS | 78655250627f6094793b5f34a0b01abf02c509c1 | f1dc728361f3458bc7a6d2e5cdc0d254aa0090a1 | refs/heads/master | 2021-01-23T05:15:08.420332 | 2017-03-27T04:47:27 | 2017-03-27T04:47:27 | 86,292,112 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,343 | java | package com.markir.roqi.smsfacebook;
import android.content.Intent;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
import com.facebook.accountkit.Account;
import com.facebook.accountkit.AccountKit;
import com.facebook.accountkit.AccountKitCallback;
import com.facebook.accountkit.AccountKitError;
import com.facebook.accountkit.PhoneNumber;
public class ResultActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_result);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
.setAction("Action", null).show();
}
});
Button button = (Button) findViewById(R.id.logout);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
AccountKit.logOut();
startActivity(new Intent(getApplicationContext(), MainActivity.class));
finish();
}
});
AccountKit.getCurrentAccount(new AccountKitCallback<Account>() {
@Override
public void onSuccess(final Account account) {
Toast.makeText(ResultActivity.this, ""+account.toString(), Toast.LENGTH_SHORT).show();
final TextView phoneNumber = (TextView) findViewById(R.id.phone_number);
final PhoneNumber number = account.getPhoneNumber();
phoneNumber.setText(number == null ? null : number.toString());
}
@Override
public void onError(final AccountKitError error) {
}
});
}
}
| [
"emilou.cifer@gmail.com"
] | emilou.cifer@gmail.com |
1a3c1ae52034b312c0e032741add21570909afb3 | 76e2d4c34fab5d85c6a4dc4602b1fde1a9de3b20 | /src/org/windsor/model/I_M_Reposicion.java | d020f96f67f7d94e4445bc81cedd180e21f3eefa | [] | no_license | fgonzalezwindsor/packages_CW | 32d435ef483bedcb9d6d6b4b195d977c6aa7eca1 | 5786f52b4a921c68c63edb7b6593b4db3550b312 | refs/heads/main | 2023-07-19T23:17:38.132319 | 2021-09-06T17:07:51 | 2021-09-06T17:07:51 | 396,978,899 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,623 | java | /******************************************************************************
* Product: Adempiere ERP & CRM Smart Business Solution *
* Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. *
* This program is free software, you can redistribute it and/or modify it *
* under the terms version 2 of the GNU General Public License as published *
* by the Free Software Foundation. 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 the text or an alternative of this public license, you may reach us *
* ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA *
* or via info@compiere.org or http://www.compiere.org/license.html *
*****************************************************************************/
package org.windsor.model;
import java.math.BigDecimal;
import java.sql.Timestamp;
import org.compiere.model.*;
import org.compiere.util.KeyNamePair;
/** Generated Interface for M_Reposicion
* @author Adempiere (generated)
* @version Release 3.6.0LTS
*/
public interface I_M_Reposicion
{
/** TableName=M_Reposicion */
public static final String Table_Name = "M_Reposicion";
/** AD_Table_ID=1000092 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 3 - Client - Org
*/
BigDecimal accessLevel = BigDecimal.valueOf(3);
/** Load Meta Data */
/** Column name AD_Client_ID */
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
/** Get Client.
* Client/Tenant for this installation.
*/
public int getAD_Client_ID();
/** Column name AD_Org_ID */
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
/** Set Organization.
* Organizational entity within client
*/
public void setAD_Org_ID (int AD_Org_ID);
/** Get Organization.
* Organizational entity within client
*/
public int getAD_Org_ID();
/** Column name Created */
public static final String COLUMNNAME_Created = "Created";
/** Get Created.
* Date this record was created
*/
public Timestamp getCreated();
/** Column name CreatedBy */
public static final String COLUMNNAME_CreatedBy = "CreatedBy";
/** Get Created By.
* User who created this records
*/
public int getCreatedBy();
/** Column name DateAcct */
public static final String COLUMNNAME_DateAcct = "DateAcct";
/** Set Account Date.
* Accounting Date
*/
public void setDateAcct (Timestamp DateAcct);
/** Get Account Date.
* Accounting Date
*/
public Timestamp getDateAcct();
/** Column name GENERATE */
public static final String COLUMNNAME_GENERATE = "GENERATE";
/** Set GENERATE */
public void setGENERATE (boolean GENERATE);
/** Get GENERATE */
public boolean isGENERATE();
/** Column name IsActive */
public static final String COLUMNNAME_IsActive = "IsActive";
/** Set Active.
* The record is active in the system
*/
public void setIsActive (boolean IsActive);
/** Get Active.
* The record is active in the system
*/
public boolean isActive();
/** Column name M_Reposicion_ID */
public static final String COLUMNNAME_M_Reposicion_ID = "M_Reposicion_ID";
/** Set M_Reposicion_ID */
public void setM_Reposicion_ID (int M_Reposicion_ID);
/** Get M_Reposicion_ID */
public int getM_Reposicion_ID();
/** Column name Processed */
public static final String COLUMNNAME_Processed = "Processed";
/** Set Processed.
* The document has been processed
*/
public void setProcessed (boolean Processed);
/** Get Processed.
* The document has been processed
*/
public boolean isProcessed();
/** Column name Updated */
public static final String COLUMNNAME_Updated = "Updated";
/** Get Updated.
* Date this record was updated
*/
public Timestamp getUpdated();
/** Column name UpdatedBy */
public static final String COLUMNNAME_UpdatedBy = "UpdatedBy";
/** Get Updated By.
* User who updated this records
*/
public int getUpdatedBy();
}
| [
"fgonzalez@comercialwindsor.cl"
] | fgonzalez@comercialwindsor.cl |
309ca8851e7e8ed37ae31150ee2f48d1788348a4 | cf219bb05ec1e56b8f5c21bab61ed9bc29900ccc | /src/main/java/it/algos/vaadflow/modules/role/EARole.java | 8402c7004ff7314454d4c6883cb2fb50a0561273 | [] | no_license | OttoKaaij/vaadflow | f068d441c52f1a15452dd1fbea53b19c4c43d624 | 72734ebe772ea8575d6ec32136a8083444d6f71f | refs/heads/master | 2020-05-29T13:34:47.438143 | 2019-05-24T09:28:07 | 2019-05-24T09:28:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 237 | java | package it.algos.vaadflow.modules.role;
/**
* Project it.algos.vaadflow
* Created by Algos
* User: gac
* Date: gio, 22-mar-2018
* Time: 21:09
*/
public enum EARole {
developer, admin, user, guest;
}// end of enumeration class
| [
"gac@algos.it"
] | gac@algos.it |
3df64288614d9dc0b33978efadf8b545d1546028 | cca38b9f66678b1f54bd61dcb6f9a8baf9b4fc3d | /src/com/selcukcihan/xfacej/xengine/Geometry.java | 0af19b6cc19471d901c064eecb7dd44f3718ce36 | [] | no_license | selcukcihan/xface-j | deea91ed600b32332381098d57974c8c4be8cf45 | 146f06635895c7679ab3c55c583ec13dbc701c86 | refs/heads/master | 2021-01-21T19:28:18.477339 | 2009-01-23T14:08:00 | 2009-01-23T14:08:00 | 34,321,173 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,231 | java | /* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (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.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is XfaceApp Application Library.
*
* The Initial Developer of the Original Code is
* ITC-irst, TCC Division (http://tcc.fbk.eu) Trento / ITALY.
* For info, contact: xface-info@fbk.eu or http://xface.fbk.eu
* Portions created by the Initial Developer are Copyright (C) 2004 - 2008
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* - Koray Balci (koraybalci@gmail.com)
* ***** END LICENSE BLOCK ***** */
package com.selcukcihan.xfacej.xengine;
/*
* XEngine::Geometry
* bitti.
*/
import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.FloatBuffer;
import java.util.Vector;
import com.selcukcihan.xfacej.xmath.Vector3;
public abstract class Geometry extends NamedObj
{
public Vector3Buffer m_vertices = null; // std::vector<Vector3> m_vertices;
public Vertex2DBuffer m_texCoords = null; // std::vector<Vertex2D> m_texCoords;
public Vector3Buffer m_normals = null; // std::vector<Vector3> m_normals;
Geometry(final String name)
{
// Geometry(const std::string& name) : NamedObj(name){};
super(name);
m_vertices = new Vector3Buffer();
m_texCoords = new Vertex2DBuffer();
m_normals = new Vector3Buffer();
}
public Vector3 computeCentroid()
{
// Vector3 computeCentroid();
Vector3 mean = new Vector3(0, 0, 0);
Vector3 bMin = new Vector3(1000000, 1000000, 1000000);
Vector3 bMax = new Vector3(-1000000, -1000000, -1000000);
m_vertices.rewind();
while(m_vertices.hasRemaining())
{
Vector3 curVertex = m_vertices.get();
if(bMin.x > curVertex.x)
bMin.x = curVertex.x;
if(bMin.y > curVertex.y)
bMin.y = curVertex.y;
if(bMin.z > curVertex.z)
bMin.z = curVertex.z;
if(bMax.x < curVertex.x)
bMax.x = curVertex.x;
if(bMax.y < curVertex.y)
bMax.y = curVertex.y;
if(bMax.z < curVertex.z)
bMax.z = curVertex.z;
}
mean = (bMax.opAdd(bMin)).opDivideScalar(2.f);
return mean;
}
public Vector3 computeMeanOfVertices()
{
// Vector3 computeMeanOfVertices();
Vector3 mean = new Vector3(0, 0, 0);
m_vertices.rewind();
while(m_vertices.hasRemaining())
{
Vector3 curVertex = m_vertices.get();
mean = mean.opAdd(curVertex.opDivideScalar((float)m_vertices.size()));
}
return mean;
}
public void subtractMeanFromVertices(final Vector3 mean)
{
// void subtractMeanFromVertices(const Vector3& mean);
for(int i = 0; i < m_vertices.size(); i++)
{
Vector3 curVertex = m_vertices.get(i);
m_vertices.put(i, curVertex.opSubtract(mean));
}
}
public void readBinary(RandomAccessFile fp) throws IOException
{
// virtual void readBinary(FILE* fp);
int sz = BinaryModelBatchLoader.readUInt(fp);
if(sz == 0)
return;
m_vertices = new Vector3Buffer(sz);
/* fp.read(m_vertices.byteArray()); */
for(int i = 0; i < sz; i++)
{
Vector3 v = new Vector3();
v.x = Float.intBitsToFloat(BinaryModelBatchLoader.readUInt(fp));
v.y = Float.intBitsToFloat(BinaryModelBatchLoader.readUInt(fp));
v.z = Float.intBitsToFloat(BinaryModelBatchLoader.readUInt(fp));
m_vertices.put(v);
}
m_vertices.rewind();
sz = BinaryModelBatchLoader.readUInt(fp);
m_normals = new Vector3Buffer(sz);
/* fp.read(m_normals.byteArray()); */
for(int i = 0; i < sz; i++)
{
Vector3 v = new Vector3();
v.x = Float.intBitsToFloat(BinaryModelBatchLoader.readUInt(fp));
v.y = Float.intBitsToFloat(BinaryModelBatchLoader.readUInt(fp));
v.z = Float.intBitsToFloat(BinaryModelBatchLoader.readUInt(fp));
m_normals.put(v);
}
m_normals.rewind();
sz = BinaryModelBatchLoader.readUInt(fp);
m_texCoords = new Vertex2DBuffer(sz);
/* fp.read(m_texCoords.byteArray()); */
for(int i = 0; i < sz; i++)
{
Vertex2D v = new Vertex2D();
v.x = Float.intBitsToFloat(BinaryModelBatchLoader.readUInt(fp));
v.y = Float.intBitsToFloat(BinaryModelBatchLoader.readUInt(fp));
m_texCoords.put(v);
}
m_texCoords.rewind();
}
public void writeBinary(RandomAccessFile fp) throws IOException
{
// virtual void writeBinary(FILE* fp);
fp.writeInt(m_vertices.size());
fp.write(m_vertices.byteArray());
m_vertices.rewind();
fp.writeInt(m_normals.size());
fp.write(m_normals.byteArray());
m_normals.rewind();
fp.writeInt(m_texCoords.size());
fp.write(m_texCoords.byteArray());
m_texCoords.rewind();
}
public Geometry copyFrom(final Geometry rhs)
{
// virtual Geometry& copyFrom(const Geometry& rhs);
if(this == rhs)
return this;
m_vertices = new Vector3Buffer(rhs.m_vertices);
m_normals = new Vector3Buffer(rhs.m_normals);
m_texCoords = new Vertex2DBuffer(rhs.m_texCoords);
return this;
}
public void setVertices(final Vector3 [] pVert, int size)
{
// virtual void setVertices(const Vector3* pVert, unsigned int size);
throw new UnsupportedOperationException();
/*
m_vertices = new Vector<Vector3>(size);
for(int i = 0; i<size; i++)
m_vertices.add(i, new Vector3(pVert[i]));
*/
}
public void setVertices(final Vector<Vector3> vertices)
{
// virtual void setVertices(const std::vector<Vector3> &vertices);
/*
* m_vertices = VectorWrapper.WrapVector3(vertices);
*/
if(m_vertices.size() == vertices.size())
{
for(int i = 0; i < vertices.size(); i++)
{
m_vertices.put(i, vertices.get(i));
}
}
else
m_vertices = new Vector3Buffer(vertices);
}
public void setNormals(final Vector3 [] pNorm, int size)
{
// virtual void setNormals(const Vector3* pNorm, unsigned int size);
throw new UnsupportedOperationException();
/*
m_normals = new Vector<Vector3>(size);
for(int i = 0; i<size; i++)
m_normals.add(i, new Vector3(pNorm[i]));
*/
}
public void setNormals(final Vector<Vector3> normals)
{
// virtual void setNormals(const std::vector<Vector3> &normals);
/*
* m_normals = VectorWrapper.WrapVector3(normals);
*/
if(m_normals.size() == normals.size())
{
for(int i = 0; i < normals.size(); i++)
{
m_normals.put(i, normals.get(i));
}
}
else
m_normals = new Vector3Buffer(normals);
}
public void setTexCoords(final Vertex2D pTex, int size)
{
// virtual void setTexCoords(const Vertex2D* pTex, unsigned int size);
/*
m_texCoords = new Vector<Vertex2D>(size);
for(int i = 0; i<size; i++)
m_texCoords.add(i, new Vertex2D(pTex[i]));
*/
throw new UnsupportedOperationException();
}
public void setTexCoords(final Vector<Vertex2D> texCoords)
{
// virtual void setTexCoords(const std::vector<Vertex2D> &texCoords);
/*
* m_texCoords = VectorWrapper.WrapVertex2D(texCoords);
*/
if(m_texCoords.size() == texCoords.size())
{
for(int i = 0; i < texCoords.size(); i++)
{
m_texCoords.put(texCoords.get(i));
}
}
else
m_texCoords = new Vertex2DBuffer(texCoords);
}
public Vector3Buffer getVertices()
{
// const std::vector<Vector3>& getVertices() const {return m_vertices;}
m_vertices.rewind();
return m_vertices;
}
public Vector3Buffer getNormals()
{
// const std::vector<Vector3>& getNormals() const {return m_normals;}//{return m_normals.getRawPointer();}
m_normals.rewind();
return m_normals;
}
public FloatBuffer getNormalsGL()
{
// const std::vector<Vector3>& getNormals() const {return m_normals;}//{return m_normals.getRawPointer();}
m_normals.rewind();
return m_normals.floatBuffer();
}
public Vertex2DBuffer getTexCoords()
{
// const std::vector<Vertex2D>& getTexCoords() const {return m_texCoords;}
m_texCoords.rewind();
return m_texCoords;
}
public FloatBuffer getTexCoordsGL()
{
// const std::vector<Vertex2D>& getTexCoords() const {return m_texCoords;}
// gl fonksiyonlarina verebilmek icin yukaridakinin overloadedi
m_texCoords.rewind();
return m_texCoords.floatBuffer();
}
public int getVertexCount()
{
// size_t getVertexCount() const {return m_vertices.size();}
return m_vertices.size();
}
public static Vector3 computeFaceNormal(final Vector3 p1, final Vector3 p2, final Vector3 p3)
{
// static Vector3 computeFaceNormal(const Vector3& p1, const Vector3& p2, const Vector3& p3);
Vector3 u = new Vector3();
Vector3 v = new Vector3();
u.x = p2.x - p1.x; u.y = p2.y - p1.y; u.z = p2.z - p1.z;
v.x = p3.x - p1.x; v.y = p3.y - p1.y; v.z = p3.z - p1.z;
Vector3 facenormal = u.unitCross(v);
return facenormal;
}
}
| [
"selcukcihan@6813d0ae-2600-457a-978e-1d8144739083"
] | selcukcihan@6813d0ae-2600-457a-978e-1d8144739083 |
a8640d8710063b302a6edc78c0ba7de9a7b39ec2 | d17ff05e95b69e245c15c57d81fd162042f7649b | /src/rand/Random.java | dc1b7d285eeb18ab6654f49c572dc1cbf31023d4 | [] | no_license | SLRocks/IAP | 23c7217fa5e6a0dfa34623d36ccc769f658a3f1e | 658f1860fa10018350249cb29360343849afcdf1 | refs/heads/master | 2020-04-14T23:01:11.473097 | 2019-01-26T07:43:46 | 2019-01-26T07:43:46 | 164,186,925 | 0 | 0 | null | 2019-01-05T06:01:04 | 2019-01-05T06:01:03 | null | UTF-8 | Java | false | false | 186 | java | package rand;
public class Random {
public static double getRandom(double min, double max) {
double rand = Math.random();
return (rand * (max - min) + min);
}
}
| [
"stanfordlei@hotmail.com"
] | stanfordlei@hotmail.com |
001d0b0c7916abe19bd0220cdfb0e4c248b231ca | 34160e1b2603920ca895e33c81b5511d6c1f4b5a | /app/src/main/java/me/jfenn/alarmio/Alarmio.java | c32c390c79f1dc38e41a202db9f69b3bd27ac879 | [
"Apache-2.0"
] | permissive | yzqzss/Alarmio | 63237201004286429ae86bddad72e781d6b61ad9 | 56c5f043680093a1ab823499fe486555ada2fcf4 | refs/heads/master | 2021-06-17T04:32:44.207375 | 2019-08-05T07:36:07 | 2019-08-05T07:36:07 | 200,605,277 | 0 | 0 | Apache-2.0 | 2019-08-05T07:33:51 | 2019-08-05T07:33:50 | null | UTF-8 | Java | false | false | 19,655 | java | package me.jfenn.alarmio;
import android.Manifest;
import android.app.Application;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.pm.PackageManager;
import android.graphics.Color;
import android.location.Criteria;
import android.location.LocationManager;
import android.media.Ringtone;
import android.net.Uri;
import android.os.Build;
import android.preference.PreferenceManager;
import android.widget.Toast;
import com.afollestad.aesthetic.Aesthetic;
import com.afollestad.aesthetic.AutoSwitchMode;
import com.google.android.exoplayer2.ExoPlaybackException;
import com.google.android.exoplayer2.ExoPlayerFactory;
import com.google.android.exoplayer2.PlaybackParameters;
import com.google.android.exoplayer2.Player;
import com.google.android.exoplayer2.SimpleExoPlayer;
import com.google.android.exoplayer2.Timeline;
import com.google.android.exoplayer2.audio.AudioAttributes;
import com.google.android.exoplayer2.source.TrackGroupArray;
import com.google.android.exoplayer2.source.hls.HlsMediaSource;
import com.google.android.exoplayer2.trackselection.DefaultTrackSelector;
import com.google.android.exoplayer2.trackselection.TrackSelectionArray;
import com.google.android.exoplayer2.upstream.DefaultDataSourceFactory;
import com.google.android.exoplayer2.util.Util;
import com.luckycatlabs.sunrisesunset.SunriseSunsetCalculator;
import com.luckycatlabs.sunrisesunset.dto.Location;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.List;
import java.util.TimeZone;
import androidx.annotation.Nullable;
import androidx.core.content.ContextCompat;
import androidx.fragment.app.FragmentManager;
import me.jfenn.alarmio.data.AlarmData;
import me.jfenn.alarmio.data.PreferenceData;
import me.jfenn.alarmio.data.SoundData;
import me.jfenn.alarmio.data.TimerData;
import me.jfenn.alarmio.services.SleepReminderService;
import me.jfenn.alarmio.services.TimerService;
import me.jfenn.alarmio.utils.DebugUtils;
public class Alarmio extends Application implements Player.EventListener {
public static final int THEME_DAY_NIGHT = 0;
public static final int THEME_DAY = 1;
public static final int THEME_NIGHT = 2;
public static final int THEME_AMOLED = 3;
public static final String NOTIFICATION_CHANNEL_STOPWATCH = "stopwatch";
public static final String NOTIFICATION_CHANNEL_TIMERS = "timers";
private SharedPreferences prefs;
private SunriseSunsetCalculator sunsetCalculator;
private Ringtone currentRingtone;
private List<AlarmData> alarms;
private List<TimerData> timers;
private List<AlarmioListener> listeners;
private ActivityListener listener;
private SimpleExoPlayer player;
private HlsMediaSource.Factory mediaSourceFactory;
private String currentStream;
@Override
public void onCreate() {
super.onCreate();
DebugUtils.setup(this);
prefs = PreferenceManager.getDefaultSharedPreferences(this);
listeners = new ArrayList<>();
alarms = new ArrayList<>();
timers = new ArrayList<>();
player = ExoPlayerFactory.newSimpleInstance(this, new DefaultTrackSelector());
player.addListener(this);
DefaultDataSourceFactory dataSourceFactory = new DefaultDataSourceFactory(this, Util.getUserAgent(this, "exoplayer2example"), null);
mediaSourceFactory = new HlsMediaSource.Factory(dataSourceFactory);
int alarmLength = PreferenceData.ALARM_LENGTH.getValue(this);
for (int id = 0; id < alarmLength; id++) {
alarms.add(new AlarmData(id, this));
}
int timerLength = PreferenceData.TIMER_LENGTH.getValue(this);
for (int id = 0; id < timerLength; id++) {
TimerData timer = new TimerData(id, this);
if (timer.isSet())
timers.add(timer);
}
if (timerLength > 0)
startService(new Intent(this, TimerService.class));
SleepReminderService.refreshSleepTime(this);
}
public List<AlarmData> getAlarms() {
return alarms;
}
public List<TimerData> getTimers() {
return timers;
}
/**
* Create a new alarm, assigning it an unused preference id.
*
* @return The newly instantiated [AlarmData](./data/AlarmData).
*/
public AlarmData newAlarm() {
AlarmData alarm = new AlarmData(alarms.size(), Calendar.getInstance());
alarm.sound = SoundData.fromString(PreferenceData.DEFAULT_ALARM_RINGTONE.getValue(this, ""));
alarms.add(alarm);
onAlarmCountChanged();
return alarm;
}
/**
* Remove an alarm and all of its its preferences.
*
* @param alarm The alarm to be removed.
*/
public void removeAlarm(AlarmData alarm) {
alarm.onRemoved(this);
int index = alarms.indexOf(alarm);
alarms.remove(index);
for (int i = index; i < alarms.size(); i++) {
alarms.get(i).onIdChanged(i, this);
}
onAlarmCountChanged();
onAlarmsChanged();
}
/**
* Update preferences to show that the alarm count has been changed.
*/
public void onAlarmCountChanged() {
PreferenceData.ALARM_LENGTH.setValue(this, alarms.size());
}
/**
* Notify the application of changes to the current alarms.
*/
public void onAlarmsChanged() {
for (AlarmioListener listener : listeners) {
listener.onAlarmsChanged();
}
}
/**
* Create a new timer, assigning it an unused preference id.
*
* @return The newly instantiated [TimerData](./data/TimerData).
*/
public TimerData newTimer() {
TimerData timer = new TimerData(timers.size());
timers.add(timer);
onTimerCountChanged();
return timer;
}
/**
* Remove a timer and all of its preferences.
*
* @param timer The timer to be removed.
*/
public void removeTimer(TimerData timer) {
timer.onRemoved(this);
int index = timers.indexOf(timer);
timers.remove(index);
for (int i = index; i < timers.size(); i++) {
timers.get(i).onIdChanged(i, this);
}
onTimerCountChanged();
onTimersChanged();
}
/**
* Update the preferences to show that the timer count has been changed.
*/
public void onTimerCountChanged() {
PreferenceData.TIMER_LENGTH.setValue(this, timers.size());
}
/**
* Notify the application of changes to the current timers.
*/
public void onTimersChanged() {
for (AlarmioListener listener : listeners) {
listener.onTimersChanged();
}
}
/**
* Starts the timer service after a timer has been set.
*/
public void onTimerStarted() {
startService(new Intent(this, TimerService.class));
}
/**
* Get an instance of SharedPreferences.
*
* @return The instance of SharedPreferences being used by the application.
* @see [android.content.SharedPreferences Documentation](https://developer.android.com/reference/android/content/SharedPreferences)
*/
public SharedPreferences getPrefs() {
return prefs;
}
/**
* Update the application theme.
*/
public void updateTheme() {
if (isNight()) {
Aesthetic.Companion.get()
.isDark(true)
.lightStatusBarMode(AutoSwitchMode.OFF)
.colorPrimary(ContextCompat.getColor(this, R.color.colorNightPrimary))
.colorStatusBar(Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT ? Color.TRANSPARENT : ContextCompat.getColor(this, R.color.colorNightPrimaryDark))
.colorNavigationBar(ContextCompat.getColor(this, R.color.colorNightPrimaryDark))
.colorAccent(ContextCompat.getColor(this, R.color.colorNightAccent))
.colorCardViewBackground(ContextCompat.getColor(this, R.color.colorNightForeground))
.colorWindowBackground(ContextCompat.getColor(this, R.color.colorNightPrimaryDark))
.textColorPrimary(ContextCompat.getColor(this, R.color.textColorPrimaryNight))
.textColorSecondary(ContextCompat.getColor(this, R.color.textColorSecondaryNight))
.textColorPrimaryInverse(ContextCompat.getColor(this, R.color.textColorPrimary))
.textColorSecondaryInverse(ContextCompat.getColor(this, R.color.textColorSecondary))
.apply();
} else {
int theme = getActivityTheme();
if (theme == THEME_DAY || theme == THEME_DAY_NIGHT) {
Aesthetic.Companion.get()
.isDark(false)
.lightStatusBarMode(AutoSwitchMode.ON)
.colorPrimary(ContextCompat.getColor(this, R.color.colorPrimary))
.colorStatusBar(Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT ? Color.TRANSPARENT : ContextCompat.getColor(this, R.color.colorPrimaryDark))
.colorNavigationBar(ContextCompat.getColor(this, R.color.colorPrimaryDark))
.colorAccent(ContextCompat.getColor(this, R.color.colorAccent))
.colorCardViewBackground(ContextCompat.getColor(this, R.color.colorForeground))
.colorWindowBackground(ContextCompat.getColor(this, R.color.colorPrimaryDark))
.textColorPrimary(ContextCompat.getColor(this, R.color.textColorPrimary))
.textColorSecondary(ContextCompat.getColor(this, R.color.textColorSecondary))
.textColorPrimaryInverse(ContextCompat.getColor(this, R.color.textColorPrimaryNight))
.textColorSecondaryInverse(ContextCompat.getColor(this, R.color.textColorSecondaryNight))
.apply();
} else if (theme == THEME_AMOLED) {
Aesthetic.Companion.get()
.isDark(true)
.lightStatusBarMode(AutoSwitchMode.OFF)
.colorPrimary(Color.BLACK)
.colorStatusBar(Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT ? Color.TRANSPARENT : Color.BLACK)
.colorNavigationBar(Color.BLACK)
.colorAccent(Color.WHITE)
.colorCardViewBackground(Color.BLACK)
.colorWindowBackground(Color.BLACK)
.textColorPrimary(Color.WHITE)
.textColorSecondary(Color.WHITE)
.textColorPrimaryInverse(Color.BLACK)
.textColorSecondaryInverse(Color.BLACK)
.apply();
}
}
}
/**
* Determine if the theme should be a night theme.
*
* @return True if the current theme is a night theme.
*/
public boolean isNight() {
int time = Calendar.getInstance().get(Calendar.HOUR_OF_DAY);
return ((time < getDayStart() || time > getDayEnd()) && getActivityTheme() == THEME_DAY_NIGHT) || getActivityTheme() == THEME_NIGHT;
}
/**
* Get the theme to be used for activities and things. Despite
* what the name implies, it does not return a theme resource,
* but rather one of Alarmio.THEME_DAY_NIGHT, Alarmio.THEME_DAY,
* Alarmio.THEME_NIGHT, or Alarmio.THEME_AMOLED.
*
* @return The theme to be used for activites.
*/
public int getActivityTheme() {
return PreferenceData.THEME.getValue(this);
}
/**
* Determine if the sunrise/sunset stuff should occur automatically.
*
* @return True if the day/night stuff is automated.
*/
public boolean isDayAuto() {
return ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) == PackageManager.PERMISSION_GRANTED && (boolean) PreferenceData.DAY_AUTO.getValue(this);
}
/**
* @return the hour of the start of the day (24h), as specified by the user
*/
public int getDayStart() {
if (isDayAuto() && getSunsetCalculator() != null)
return getSunsetCalculator().getOfficialSunriseCalendarForDate(Calendar.getInstance()).get(Calendar.HOUR_OF_DAY);
else return PreferenceData.DAY_START.getValue(this);
}
/**
* @return the hour of the end of the day (24h), as specified by the user
*/
public int getDayEnd() {
if (isDayAuto() && getSunsetCalculator() != null)
return getSunsetCalculator().getOfficialSunsetCalendarForDate(Calendar.getInstance()).get(Calendar.HOUR_OF_DAY);
else return PreferenceData.DAY_END.getValue(this);
}
/**
* @return the hour of the calculated sunrise time, or null.
*/
@Nullable
public Integer getSunrise() {
if (getSunsetCalculator() != null)
return getSunsetCalculator().getOfficialSunsetCalendarForDate(Calendar.getInstance()).get(Calendar.HOUR_OF_DAY);
else return null;
}
/**
* @return the hour of the calculated sunset time, or null.
*/
@Nullable
public Integer getSunset() {
if (getSunsetCalculator() != null)
return getSunsetCalculator().getOfficialSunsetCalendarForDate(Calendar.getInstance()).get(Calendar.HOUR_OF_DAY);
else return null;
}
/**
* @return the current SunriseSunsetCalculator object, or null if it cannot
* be instantiated.
* @see [SunriseSunsetLib Repo](https://github.com/mikereedell/sunrisesunsetlib-java)
*/
@Nullable
private SunriseSunsetCalculator getSunsetCalculator() {
if (sunsetCalculator == null && ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) == PackageManager.PERMISSION_GRANTED) {
try {
LocationManager locationManager = (LocationManager) getSystemService(LOCATION_SERVICE);
android.location.Location location = locationManager.getLastKnownLocation(locationManager.getBestProvider(new Criteria(), false));
sunsetCalculator = new SunriseSunsetCalculator(new Location(location.getLatitude(), location.getLongitude()), TimeZone.getDefault().getID());
} catch (NullPointerException ignored) {
}
}
return sunsetCalculator;
}
/**
* Determine if a ringtone is currently playing.
*
* @return True if a ringtone is currently playing.
*/
public boolean isRingtonePlaying() {
return currentRingtone != null && currentRingtone.isPlaying();
}
/**
* Get the currently playing ringtone.
*
* @return The currently playing ringtone, or null.
*/
@Nullable
public Ringtone getCurrentRingtone() {
return currentRingtone;
}
public void playRingtone(Ringtone ringtone) {
if (!ringtone.isPlaying()) {
stopCurrentSound();
ringtone.play();
}
currentRingtone = ringtone;
}
/**
* Play a stream ringtone.
*
* @param url The URL of the stream to be passed to ExoPlayer.
* @see [ExoPlayer Repo](https://github.com/google/ExoPlayer)
*/
public void playStream(String url) {
stopCurrentSound();
player.prepare(mediaSourceFactory.createMediaSource(Uri.parse(url)));
player.setPlayWhenReady(true);
currentStream = url;
}
/**
* Play a stream ringtone.
*
* @param url The URL of the stream to be passed to ExoPlayer.
* @param attributes The attributes to play the stream with.
* @see [ExoPlayer Repo](https://github.com/google/ExoPlayer)
*/
public void playStream(String url, AudioAttributes attributes) {
player.stop();
player.setAudioAttributes(attributes);
playStream(url);
}
/**
* Stop the currently playing stream.
*/
public void stopStream() {
player.stop();
currentStream = null;
}
/**
* Determine if the passed url matches the stream that is currently playing.
*
* @param url The URL to match the current stream to.
* @return True if the URL matches that of the currently playing
* stream.
*/
public boolean isPlayingStream(String url) {
return currentStream != null && currentStream.equals(url);
}
/**
* Stop the currently playing sound, regardless of whether it is a ringtone
* or a stream.
*/
public void stopCurrentSound() {
if (isRingtonePlaying())
currentRingtone.stop();
stopStream();
}
public void addListener(AlarmioListener listener) {
listeners.add(listener);
}
public void removeListener(AlarmioListener listener) {
listeners.remove(listener);
}
public void setListener(ActivityListener listener) {
this.listener = listener;
if (listener != null)
updateTheme();
}
@Override
public void onTimelineChanged(Timeline timeline, Object manifest, int reason) {
}
@Override
public void onTracksChanged(TrackGroupArray trackGroups, TrackSelectionArray trackSelections) {
}
@Override
public void onLoadingChanged(boolean isLoading) {
}
@Override
public void onPlayerStateChanged(boolean playWhenReady, int playbackState) {
switch (playbackState) {
case Player.STATE_BUFFERING:
case Player.STATE_READY:
break;
default:
currentStream = null;
break;
}
}
@Override
public void onRepeatModeChanged(int repeatMode) {
}
@Override
public void onShuffleModeEnabledChanged(boolean shuffleModeEnabled) {
}
@Override
public void onPlayerError(ExoPlaybackException error) {
currentStream = null;
Exception exception;
switch (error.type) {
case ExoPlaybackException.TYPE_RENDERER:
exception = error.getRendererException();
break;
case ExoPlaybackException.TYPE_SOURCE:
exception = error.getSourceException();
break;
case ExoPlaybackException.TYPE_UNEXPECTED:
exception = error.getUnexpectedException();
break;
default:
return;
}
exception.printStackTrace();
Toast.makeText(this, exception.getClass().getName() + ": " + exception.getMessage(), Toast.LENGTH_SHORT).show();
}
@Override
public void onPositionDiscontinuity(int reason) {
}
@Override
public void onPlaybackParametersChanged(PlaybackParameters playbackParameters) {
}
@Override
public void onSeekProcessed() {
}
public void requestPermissions(String... permissions) {
if (listener != null)
listener.requestPermissions(permissions);
}
public FragmentManager getFragmentManager() {
if (listener != null)
return listener.gettFragmentManager();
else return null;
}
public interface AlarmioListener {
void onAlarmsChanged();
void onTimersChanged();
}
public interface ActivityListener {
void requestPermissions(String... permissions);
FragmentManager gettFragmentManager(); //help
}
}
| [
"18jafenn90@gmail.com"
] | 18jafenn90@gmail.com |
20ff927f95c541edcd7ead950b7d85c21196f2b4 | 38c4c438e2b9de59bbda71707fce45ada083db05 | /src/org/un/myworld/SplashScreen.java | 59d20744139c8905f4bf2ccac19078c760ef37df | [] | no_license | kdbz/MyWorld2015Android | c8badbc694d55c335331d078de1ebb0f4354b1f5 | 39e00b3020de32e01299b12e6c74657eab7c0405 | refs/heads/master | 2021-01-16T00:04:33.862614 | 2013-04-09T16:37:10 | 2013-04-09T16:37:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,192 | java | package org.un.myworld;
import android.app.Activity;
import android.content.Intent;
import android.graphics.drawable.AnimationDrawable;
import android.os.Bundle;
import android.view.Menu;
import android.view.MotionEvent;
import android.widget.ImageView;
public class SplashScreen extends Activity {
/**
* The thread to process splash screen events
*/
private Thread mSplashThread;
static final int START_ANY_ACTIVITY_REQUEST=450;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Splash screen view
setContentView(R.layout.splash);
// Start animating the image
final ImageView splashImageView = (ImageView) findViewById(R.id.splashImage);
splashImageView.setBackgroundResource(R.drawable.myworldsplash);
final AnimationDrawable frameAnimation = (AnimationDrawable)splashImageView.getBackground();
splashImageView.post(new Runnable(){
@Override
public void run() {
frameAnimation.start();
}
});
final SplashScreen sPlashScreen = this;
// The thread to wait for splash screen events
mSplashThread = new Thread(){
@Override
public void run(){
try {
synchronized(this){
// Wait given period of time or exit on touch
wait(5000);
}
}
catch(InterruptedException ex){
}
//finish();
// Now run the home activity
Intent intent = new Intent();
intent.setClass(sPlashScreen, HomeActivity.class);
startActivity(intent);
finish();
}
};
mSplashThread.start();
}
@Override
public boolean onCreateOptionsMenu(Menu menu){
super.onCreateOptionsMenu(menu);
return false;
}
/**
* Processes splash screen touch events
*/
@Override
public boolean onTouchEvent(MotionEvent evt)
{
if(evt.getAction() == MotionEvent.ACTION_DOWN)
{
synchronized(mSplashThread){
mSplashThread.notifyAll();
}
}
return true;
}
}
| [
"adams.opiyo@gmail.com"
] | adams.opiyo@gmail.com |
f98d07cd3a2f623a0ef8ca756ee94dfc8a1732ba | 1afe365941f32fa7f74df11e81135314225e3628 | /shengsiyuan_javase/src/com/shengsiyuan/thread/lock/TestDraw.java | 2850e802947189529af2902a8903bae230870163 | [] | no_license | suweirong/MyWorkspace | 21b13f186c71b26ed18dba50440d59db00c68601 | 181722833939ce14511d8e6bd47e701968492789 | refs/heads/master | 2020-05-19T21:22:03.173529 | 2015-05-05T14:29:01 | 2015-05-05T14:29:01 | 33,301,185 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 239 | java | package com.shengsiyuan.thread.lock;
public class TestDraw {
public static void main(String[] args) {
Account acct = new Account("jason",1000);
new DrawThread("jia ",acct,800).start();
new DrawThread("yi ",acct,800).start();
}
}
| [
"Administrator@PC201503242126"
] | Administrator@PC201503242126 |
afc66bcaab89e25a48a0e0367785482c5720f05e | 5598faaaaa6b3d1d8502cbdaca903f9037d99600 | /code_changes/Apache_projects/MAPREDUCE-5/9ae7f9eb7baeb244e1b95aabc93ad8124870b9a9/~JobEndNotifier.java | cf4b76c5dec1d92c7ea47f057b3f6ae96452933f | [] | no_license | SPEAR-SE/LogInBugReportsEmpirical_Data | 94d1178346b4624ebe90cf515702fac86f8e2672 | ab9603c66899b48b0b86bdf63ae7f7a604212b29 | refs/heads/master | 2022-12-18T02:07:18.084659 | 2020-09-09T16:49:34 | 2020-09-09T16:49:34 | 286,338,252 | 0 | 2 | null | null | null | null | UTF-8 | Java | false | false | 7,311 | 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.hadoop.mapreduce.v2.app;
import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.InetSocketAddress;
import java.net.MalformedURLException;
import java.net.Proxy;
import java.net.URL;
import org.apache.hadoop.conf.Configurable;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.mapred.JobContext;
import org.apache.hadoop.mapreduce.MRJobConfig;
import org.apache.hadoop.mapreduce.v2.api.records.JobReport;
import org.mortbay.log.Log;
/**
* <p>This class handles job end notification. Submitters of jobs can choose to
* be notified of the end of a job by supplying a URL to which a connection
* will be established.
* <ul><li> The URL connection is fire and forget by default.</li> <li>
* User can specify number of retry attempts and a time interval at which to
* attempt retries</li><li>
* Cluster administrators can set final parameters to set maximum number of
* tries (0 would disable job end notification) and max time interval and a
* proxy if needed</li><li>
* The URL may contain sentinels which will be replaced by jobId and jobStatus
* (eg. SUCCEEDED/KILLED/FAILED) </li> </ul>
* </p>
*/
public class JobEndNotifier implements Configurable {
private static final String JOB_ID = "$jobId";
private static final String JOB_STATUS = "$jobStatus";
private Configuration conf;
protected String userUrl;
protected String proxyConf;
protected int numTries; //Number of tries to attempt notification
protected int waitInterval; //Time (ms) to wait between retrying notification
protected int timeout; // Timeout (ms) on the connection and notification
protected URL urlToNotify; //URL to notify read from the config
protected Proxy proxyToUse = Proxy.NO_PROXY; //Proxy to use for notification
/**
* Parse the URL that needs to be notified of the end of the job, along
* with the number of retries in case of failure, the amount of time to
* wait between retries and proxy settings
* @param conf the configuration
*/
public void setConf(Configuration conf) {
this.conf = conf;
numTries = Math.min(
conf.getInt(MRJobConfig.MR_JOB_END_RETRY_ATTEMPTS, 0) + 1
, conf.getInt(MRJobConfig.MR_JOB_END_NOTIFICATION_MAX_ATTEMPTS, 1)
);
waitInterval = Math.min(
conf.getInt(MRJobConfig.MR_JOB_END_RETRY_INTERVAL, 5000)
, conf.getInt(MRJobConfig.MR_JOB_END_NOTIFICATION_MAX_RETRY_INTERVAL, 5000)
);
waitInterval = (waitInterval < 0) ? 5000 : waitInterval;
timeout = conf.getInt(JobContext.MR_JOB_END_NOTIFICATION_TIMEOUT,
JobContext.DEFAULT_MR_JOB_END_NOTIFICATION_TIMEOUT);
userUrl = conf.get(MRJobConfig.MR_JOB_END_NOTIFICATION_URL);
proxyConf = conf.get(MRJobConfig.MR_JOB_END_NOTIFICATION_PROXY);
//Configure the proxy to use if its set. It should be set like
//proxyType@proxyHostname:port
if(proxyConf != null && !proxyConf.equals("") &&
proxyConf.lastIndexOf(":") != -1) {
int typeIndex = proxyConf.indexOf("@");
Proxy.Type proxyType = Proxy.Type.HTTP;
if(typeIndex != -1 &&
proxyConf.substring(0, typeIndex).compareToIgnoreCase("socks") == 0) {
proxyType = Proxy.Type.SOCKS;
}
String hostname = proxyConf.substring(typeIndex + 1,
proxyConf.lastIndexOf(":"));
String portConf = proxyConf.substring(proxyConf.lastIndexOf(":") + 1);
try {
int port = Integer.parseInt(portConf);
proxyToUse = new Proxy(proxyType,
new InetSocketAddress(hostname, port));
Log.info("Job end notification using proxy type \"" + proxyType +
"\" hostname \"" + hostname + "\" and port \"" + port + "\"");
} catch(NumberFormatException nfe) {
Log.warn("Job end notification couldn't parse configured proxy's port "
+ portConf + ". Not going to use a proxy");
}
}
}
public Configuration getConf() {
return conf;
}
/**
* Notify the URL just once. Use best effort.
*/
protected boolean notifyURLOnce() {
boolean success = false;
try {
Log.info("Job end notification trying " + urlToNotify);
HttpURLConnection conn =
(HttpURLConnection) urlToNotify.openConnection(proxyToUse);
conn.setConnectTimeout(timeout);
conn.setReadTimeout(timeout);
conn.setAllowUserInteraction(false);
if(conn.getResponseCode() != HttpURLConnection.HTTP_OK) {
Log.warn("Job end notification to " + urlToNotify +" failed with code: "
+ conn.getResponseCode() + " and message \"" + conn.getResponseMessage()
+"\"");
}
else {
success = true;
Log.info("Job end notification to " + urlToNotify + " succeeded");
}
} catch(IOException ioe) {
Log.warn("Job end notification to " + urlToNotify + " failed", ioe);
}
return success;
}
/**
* Notify a server of the completion of a submitted job. The user must have
* configured MRJobConfig.MR_JOB_END_NOTIFICATION_URL
* @param jobReport JobReport used to read JobId and JobStatus
* @throws InterruptedException
*/
public void notify(JobReport jobReport)
throws InterruptedException {
// Do we need job-end notification?
if (userUrl == null) {
Log.info("Job end notification URL not set, skipping.");
return;
}
//Do string replacements for jobId and jobStatus
if (userUrl.contains(JOB_ID)) {
userUrl = userUrl.replace(JOB_ID, jobReport.getJobId().toString());
}
if (userUrl.contains(JOB_STATUS)) {
userUrl = userUrl.replace(JOB_STATUS, jobReport.getJobState().toString());
}
// Create the URL, ensure sanity
try {
urlToNotify = new URL(userUrl);
} catch (MalformedURLException mue) {
Log.warn("Job end notification couldn't parse " + userUrl, mue);
return;
}
// Send notification
boolean success = false;
while (numTries-- > 0 && !success) {
Log.info("Job end notification attempts left " + numTries);
success = notifyURLOnce();
if (!success) {
Thread.sleep(waitInterval);
}
}
if (!success) {
Log.warn("Job end notification failed to notify : " + urlToNotify);
} else {
Log.info("Job end notification succeeded for " + jobReport.getJobId());
}
}
}
| [
"archen94@gmail.com"
] | archen94@gmail.com |
7178035c90aa34f03f26c3d811c1a0ef5b1c9703 | 5d2450ae377cc8201df44958d128248cb9a4d123 | /day14/src/cn/itcast/abstractclass/Animal.java | 158b47036e4d440d226a5243df8c04c2b8391698 | [] | no_license | zql95/java-exmple | 59f8c1d055c5148f1dd8aba499742e8cb5e86cdc | f0228d91e415409ed8d1aa5aa17fd73ac46cc181 | refs/heads/master | 2023-02-06T11:15:51.188010 | 2020-12-24T08:32:57 | 2020-12-24T08:32:57 | 295,318,281 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 96 | java | package cn.itcast.abstractclass;
public abstract class Animal {
public abstract void eat();
}
| [
"1003215343@qq.com"
] | 1003215343@qq.com |
8983a6e10f83bb0223d66c6e9babaf8ab7741a7b | 7ed7ed4fe9fe1ec966ac22a18844b66764a78c74 | /PurchaseHistoryController.java | cc2c0d8fff2d64023d14cb5733b7f44f7d1882a4 | [] | no_license | Kouya58/team-ecsite | 21ddb0bd9fd1f27cd82d3351e66992f3b3debd8b | ff71e5e2b1b292063d4f5ad3c0548e8dc2e601c0 | refs/heads/main | 2023-04-26T02:33:54.445779 | 2021-05-27T09:00:21 | 2021-05-27T09:00:21 | 371,307,283 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,412 | java | package jp.co.internous.gaia.controller;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import jp.co.internous.gaia.model.domain.dto.PurchaseHistoryDto;
import jp.co.internous.gaia.model.mapper.TblPurchaseHistoryMapper;
import jp.co.internous.gaia.model.session.LoginSession;
@Controller
@RequestMapping("/gaia/history")
public class PurchaseHistoryController {
@Autowired
private TblPurchaseHistoryMapper purchaseHistoryMapper;
@Autowired
private LoginSession loginSession;
@RequestMapping("/")
public String index(Model m) {
int userId = loginSession.getUserId();
List<PurchaseHistoryDto> historyList = purchaseHistoryMapper.findByUserId(userId);
m.addAttribute("historyList", historyList);
// page_header.htmlでsessionの変数を表示させているため、loginSessionも画面に送る
m.addAttribute("loginSession", loginSession);
return "purchase_history";
}
@RequestMapping("/delete")
@ResponseBody
public boolean delete() {
int userId = loginSession.getUserId();
int result = purchaseHistoryMapper.logicalDeleteByUserId(userId);
return result > 0;
}
}
| [
"kouyatanaka.58@gmail.com"
] | kouyatanaka.58@gmail.com |
009af5a6c68f1f116a21ed984d6f1b26440e90c6 | 38046a6a33d06ca495056c5a56880efffb5592b5 | /app/src/main/java/com/example/extreme_dev_game/IntroduccionActivity.java | 11c59fe848cc69dc3b3adadfb2cbd82cab0ded17 | [] | no_license | CristobalR24/Extreme_dev_game | bae830e7e22427d89a223c3b9c026b0979c19204 | ffdf477cf0086d18c0c8a331bd84b1288d786d0a | refs/heads/main | 2023-06-27T23:33:52.009704 | 2021-07-26T15:26:17 | 2021-07-26T15:26:17 | 383,601,068 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 773 | java | package com.example.extreme_dev_game;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
public class IntroduccionActivity extends AppCompatActivity {
String _user;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_introduccion);
Intent i = getIntent();
_user=i.getStringExtra("usuario");
}
public void SalirJuego(View view) {
finish();
}
public void IrAMenu(View view) {
Intent i = new Intent(getApplicationContext(),MenuActivity.class);
i.putExtra("usuario",_user);
startActivity(i);
finish();
}
} | [
"cristobalr2400@gmail.com"
] | cristobalr2400@gmail.com |
b84cfe9995d6bca6350ac53747fcc7e03f11aa43 | ddcc60e234637afaedd0045294d3bc11d838dde9 | /app/src/main/java/com/adsun/testobserver/utils/UserTask.java | c8d6904ff63305452a63efc0e5e6a2799ca49e62 | [] | no_license | nghiango262/ObserverWithRetrofit | d15c2bbabeaadf6864b609e00e0dfa8219deb778 | 14b268f89e2354ba624b924e4a4088ca1b31e068 | refs/heads/master | 2020-06-27T19:10:43.360400 | 2019-08-01T10:08:18 | 2019-08-01T10:08:18 | 200,026,561 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,366 | java | package com.adsun.testobserver.utils;
import com.adsun.testobserver.callback.Callback;
import com.adsun.testobserver.model.User;
import com.adsun.testobserver.networking.utils.NetworkingUtils;
import java.util.List;
import io.reactivex.Observer;
import io.reactivex.android.schedulers.AndroidSchedulers;
import io.reactivex.disposables.Disposable;
import io.reactivex.schedulers.Schedulers;
public class UserTask {
public static void addUser(User user, final Callback<User> callback) {
NetworkingUtils.getUserApiInstance()
.addUser("bearer " + "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI1ZDQyOWNmNmUyOTU2YjA3ZGM2ZGZmYjYiLCJpYXQiOjE1NjQ2NDg3NTMsImV4cCI6MTU2NDY1MjM1M30.mM52KiX5K51agM-j-ZvYYBppX-M6f6VgDwn0FQH3upI", user)
.observeOn(AndroidSchedulers.mainThread())
.subscribeOn(Schedulers.io())
.subscribe(new Observer<User>() {
@Override
public void onSubscribe(Disposable d) {
}
@Override
public void onNext(User user) {
callback.returnResult(user);
}
@Override
public void onError(Throwable e) {
callback.returnError(e.getMessage());
}
@Override
public void onComplete() {
}
});
}
public static void getUsers(final Callback<List<User>> callback) {
NetworkingUtils.getUserApiInstance()
.getUsers()
.observeOn(AndroidSchedulers.mainThread())
.subscribeOn(Schedulers.io())
.subscribe(new Observer<List<User>>() {
@Override
public void onSubscribe(Disposable d) {
}
@Override
public void onNext(List<User> users) {
callback.returnResult(users);
}
@Override
public void onError(Throwable e) {
callback.returnError(e.getMessage());
}
@Override
public void onComplete() {
}
});
}
}
| [
"trongnghia204@gmail.com"
] | trongnghia204@gmail.com |
c29cf757126a43d24f284a601ab80e8517ec7c98 | ecc661f2a8b336e976041073310316559238aceb | /06022016/AndroidPlayground/com/google/gson/DefaultDateTypeAdapter.java | 3b2e078d2a99d18d7fabe9002988b4102eb34db9 | [] | no_license | dinghu/Zhong-Lin | a0030b575ef5cfbc74bc741563115abdb9a468d6 | 81e9f97c4108f2dbcc6069fca01fd2213f3ceb22 | refs/heads/master | 2021-01-13T04:58:48.163719 | 2016-07-01T23:21:23 | 2016-07-01T23:21:23 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,352 | java | package com.google.gson;
import java.lang.reflect.Type;
import java.sql.Timestamp;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Locale;
import java.util.TimeZone;
final class DefaultDateTypeAdapter
implements JsonSerializer<java.util.Date>, JsonDeserializer<java.util.Date>
{
private final DateFormat enUsFormat;
private final DateFormat iso8601Format;
private final DateFormat localFormat;
DefaultDateTypeAdapter()
{
this(DateFormat.getDateTimeInstance(2, 2, Locale.US), DateFormat.getDateTimeInstance(2, 2));
}
DefaultDateTypeAdapter(int paramInt)
{
this(DateFormat.getDateInstance(paramInt, Locale.US), DateFormat.getDateInstance(paramInt));
}
public DefaultDateTypeAdapter(int paramInt1, int paramInt2)
{
this(DateFormat.getDateTimeInstance(paramInt1, paramInt2, Locale.US), DateFormat.getDateTimeInstance(paramInt1, paramInt2));
}
DefaultDateTypeAdapter(String paramString)
{
this(new SimpleDateFormat(paramString, Locale.US), new SimpleDateFormat(paramString));
}
DefaultDateTypeAdapter(DateFormat paramDateFormat1, DateFormat paramDateFormat2)
{
this.enUsFormat = paramDateFormat1;
this.localFormat = paramDateFormat2;
this.iso8601Format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'", Locale.US);
this.iso8601Format.setTimeZone(TimeZone.getTimeZone("UTC"));
}
private java.util.Date deserializeToDate(JsonElement paramJsonElement)
{
java.util.Date localDate2;
synchronized (this.localFormat)
{
try
{
java.util.Date localDate1 = this.localFormat.parse(paramJsonElement.getAsString());
return localDate1;
}
catch (ParseException localParseException1) {}
}
}
public java.util.Date deserialize(JsonElement paramJsonElement, Type paramType, JsonDeserializationContext paramJsonDeserializationContext)
throws JsonParseException
{
if (!(paramJsonElement instanceof JsonPrimitive)) {
throw new JsonParseException("The date should be a string value");
}
paramJsonElement = deserializeToDate(paramJsonElement);
if (paramType == java.util.Date.class) {
return paramJsonElement;
}
if (paramType == Timestamp.class) {
return new Timestamp(paramJsonElement.getTime());
}
if (paramType == java.sql.Date.class) {
return new java.sql.Date(paramJsonElement.getTime());
}
throw new IllegalArgumentException(getClass() + " cannot deserialize to " + paramType);
}
public JsonElement serialize(java.util.Date paramDate, Type arg2, JsonSerializationContext paramJsonSerializationContext)
{
synchronized (this.localFormat)
{
paramDate = new JsonPrimitive(this.enUsFormat.format(paramDate));
return paramDate;
}
}
public String toString()
{
StringBuilder localStringBuilder = new StringBuilder();
localStringBuilder.append(DefaultDateTypeAdapter.class.getSimpleName());
localStringBuilder.append('(').append(this.localFormat.getClass().getSimpleName()).append(')');
return localStringBuilder.toString();
}
}
/* Location: C:\playground\dex2jar-2.0\dex2jar-2.0\classes-dex2jar.jar!\com\google\gson\DefaultDateTypeAdapter.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/ | [
"zhonglin@alien"
] | zhonglin@alien |
54bd46fb8958682a9c365a8319bdddfb385ccdf4 | 23031782b7e3df6cd605e2782153f2161167deb3 | /SpacelibShared/src/main/java/fr/miage/m1/spacelibshared/utilities/CapaciteNavetteInsuffisanteException.java | ca2094c4ba037348e8ab600d84cee80013b5ed4c | [] | no_license | valentin-chevalier/Spacelib | de79f0211bacc29096f129345f174f68f593659b | eca8f4eb44696dee480084bae1993c29c17c8396 | refs/heads/main | 2023-06-18T08:33:19.890369 | 2021-07-20T13:11:04 | 2021-07-20T13:11:04 | 356,277,440 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 492 | 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 fr.miage.m1.spacelibshared.utilities;
/**
*
* @author Flo
*/
public class CapaciteNavetteInsuffisanteException extends Exception{
public CapaciteNavetteInsuffisanteException(){
super("Les navettes de la station n'ont pas la capacité suffisante pour vous accueillir.");
}
}
| [
"grondinflore@gmail.com"
] | grondinflore@gmail.com |
3c00dcc2ce1f2e5375def94c36b865e7ac793eb7 | 3272570f2745456f0dd9312e7a75ce1646e69cf6 | /project/DataCompute/src/main/java/com/wondersgroup/compute/util/common/BaseResource.java | 6d03b6014c96425a22c9d3988c95e521286240e4 | [] | no_license | Amsss/BRMP | 9f6a6a86d4e280c8b2e123cacfacf0ecaebff24e | e331659b5a6cd0b5a40cf0883508ef1ce73c7e2c | refs/heads/master | 2023-05-08T21:02:49.456531 | 2020-07-31T06:34:12 | 2020-07-31T06:34:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 696 | java | package com.wondersgroup.compute.util.common;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
@Component
public class BaseResource {
@Value("${ComputeJobDate}")
private String ComputeJobDate;
public String getComputeJobDate() {
return ComputeJobDate;
}
public void setComputeJobDate(String computeJobDate) {
ComputeJobDate = computeJobDate;
}
@Value("${jdbc.driverClassName}")
private String jdbcDriverClassName;
public String getJdbcDriverClassName() {
return jdbcDriverClassName;
}
public void setJdbcDriverClassName(String jdbcDriverClassName) {
this.jdbcDriverClassName = jdbcDriverClassName;
}
}
| [
"wosisingle@163.com"
] | wosisingle@163.com |
3055a2c0cad5755273a061ef6d2141885368cac2 | 5024fef0141f9444f0b1aa78ce7f2826b339a294 | /recordAudio/src/main/java/br/com/verity/recordaudio/rest/CategoriaRestController.java | 102f96146ef04a932e5be00761e44957793157c4 | [] | no_license | cunha981/RecordAudio-CordovaRest | 5920831958463ee458a12dd8ac83c14608653985 | 962e0e2629be5cc1911a8ee80b4c3ac2e8e8e005 | refs/heads/master | 2021-05-08T07:14:06.378562 | 2017-10-12T17:45:40 | 2017-10-12T17:45:40 | 106,724,007 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 868 | java | package br.com.verity.recordaudio.rest;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import br.com.verity.recordaudio.bean.LojaBean;
import br.com.verity.recordaudio.business.LojaBusiness;
@RestController
public class CategoriaRestController {
@Autowired
private LojaBusiness lojaBusiness;
@CrossOrigin(origins = "*")
@GetMapping("/preencher-loja")
public ResponseEntity<List<LojaBean>> preencherLoja(Model model) {
return new ResponseEntity<List<LojaBean>>(lojaBusiness.getAll(), HttpStatus.OK);
}
}
| [
"cunha.981@gmail.com"
] | cunha.981@gmail.com |
fcf35acc6eb9e7505843c1cb264f6c460e9f60f1 | 0f92183c49cf5fa8a5dc4fac84562680f49a7e05 | /extensions/smallrye-graphql-client/deployment/src/test/java/io/quarkus/smallrye/graphql/client/deployment/TypesafeGraphQLClientInjectionTest.java | dd7aad3ab8a06f811ab995163ceec1d524901964 | [
"Apache-2.0"
] | permissive | kenfinnigan/quarkus | bce82c3b29928903e059345c9a1397290e0c407f | 2d4276fe02c7875400d23956fab752d03e37ce9b | refs/heads/main | 2023-03-17T07:49:58.780150 | 2021-05-24T13:27:39 | 2021-05-24T13:27:39 | 174,338,684 | 1 | 1 | Apache-2.0 | 2023-03-09T20:18:45 | 2019-03-07T12:19:00 | Java | UTF-8 | Java | false | false | 1,710 | java | package io.quarkus.smallrye.graphql.client.deployment;
import static org.junit.jupiter.api.Assertions.assertEquals;
import java.util.List;
import javax.inject.Inject;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.asset.EmptyAsset;
import org.jboss.shrinkwrap.api.asset.StringAsset;
import org.jboss.shrinkwrap.api.spec.JavaArchive;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.RegisterExtension;
import io.quarkus.smallrye.graphql.client.deployment.model.Person;
import io.quarkus.smallrye.graphql.client.deployment.model.TestingGraphQLApi;
import io.quarkus.smallrye.graphql.client.deployment.model.TestingGraphQLClientApi;
import io.quarkus.test.QuarkusUnitTest;
public class TypesafeGraphQLClientInjectionTest {
static String url = "http://" + System.getProperty("quarkus.http.host", "localhost") + ":" +
System.getProperty("quarkus.http.test-port", "8081") + "/graphql";
@RegisterExtension
static QuarkusUnitTest test = new QuarkusUnitTest()
.setArchiveProducer(() -> ShrinkWrap.create(JavaArchive.class)
.addClasses(TestingGraphQLApi.class, TestingGraphQLClientApi.class, Person.class)
.addAsResource(new StringAsset("typesafeclient/mp-graphql/url=" + url),
"application.properties")
.addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml"));
@Inject
TestingGraphQLClientApi client;
@Test
public void performQuery() {
List<Person> people = client.people();
assertEquals("John", people.get(0).getFirstName());
assertEquals("Arthur", people.get(1).getFirstName());
}
}
| [
"jmartisk@redhat.com"
] | jmartisk@redhat.com |
53e3bf010c2f2925131a322b0df6b279b661ce22 | c7dd0f28a00f60bb7cc3fc29e570ae7bfe6fc348 | /src/Sophie.java | 3e8279810754e0e7350bbccc2aa065dbb507dc29 | [] | no_license | Mac-Kett/ProyectoCoCode | 7756ca4c929cc68a802f34da121f89a160a9fd67 | 64ee8e5eab3529ab9722df05f0df706b5397a47d | refs/heads/master | 2023-03-31T07:55:32.849478 | 2021-04-14T00:13:53 | 2021-04-14T00:13:53 | 357,721,533 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 535 | java | import java.lang.reflect.Array;
import java.util.ArrayList;
public class Sophie {
private ArrayList<Programa> programas;
public Sophie(){
this.programas = new ArrayList<Programa>();
}
public ArrayList<Programa> programasPorDebajoDe(int calidadMinima){
ArrayList<Programa> auxiliar = new ArrayList<Programa>();
for(Programa p: this.programas){
if(p.indiceDeCalidad() >= calidadMinima){
auxiliar.add(p);
}
}
return auxiliar;
}
}
| [
"maca91@hotmail.com"
] | maca91@hotmail.com |
6e3ab32104d7daab1682e24983f04ac00fb859df | 05b3276dd299c1e969908bdb807b900fdaa4a190 | /src/main/java/lucaslsl/vehiclerental/api/controllers/VehicleClassController.java | 69e37b2624f29b6f0575151bf1fa83f57777c9cd | [] | no_license | lucaslsl/vehiclerental | 64bd033eb3fffcf1203fd01fde377d0f51432b2c | 4bb5620a8efe2a8194364b2433afe659d99164fa | refs/heads/master | 2021-01-17T17:58:53.138763 | 2016-06-24T22:15:51 | 2016-06-24T22:15:51 | 61,915,199 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 5,994 | 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 lucaslsl.vehiclerental.api.controllers;
import lucaslsl.vehiclerental.api.db.ConnectionProvider;
import lucaslsl.vehiclerental.api.models.VehicleClass;
import lucaslsl.vehiclerental.api.policies.HasValidContentType;
import lucaslsl.vehiclerental.api.util.JsonHelper;
import lucaslsl.vehiclerental.api.util.ModelVerificationContext;
import lucaslsl.vehiclerental.api.util.NotFoundVerification;
import lucaslsl.vehiclerental.api.util.ResourcePagination;
import lucaslsl.vehiclerental.api.util.ValidationErrorsVerification;
import org.javalite.activejdbc.Base;
import org.javalite.activejdbc.LazyList;
import spark.Request;
import spark.Response;
import spark.Route;
import static spark.Spark.before;
import static spark.Spark.delete;
import static spark.Spark.get;
import static spark.Spark.patch;
import static spark.Spark.post;
/**
*
* @author lucaslsl
*/
public class VehicleClassController implements ApiController{
@Override
public Route create(){
return (Request req, Response res) -> {
ModelVerificationContext ctx = new ModelVerificationContext();
ConnectionProvider cp = ConnectionProvider.getInstance();
Base.open(cp.getDataSource());
VehicleClass vehicleClass = new VehicleClass();
vehicleClass.fromMap(JsonHelper.toMap(req.body()));
vehicleClass.save();
Base.close();
ctx.setVerificationStrategy(new ValidationErrorsVerification());
ctx.executeStrategy(vehicleClass, VehicleClass.class.getSimpleName());
res.status(201);
return vehicleClass.toJson(false);
};
}
@Override
public Route read() {
return (Request req, Response res) -> {
ModelVerificationContext ctx = new ModelVerificationContext();
ConnectionProvider cp = ConnectionProvider.getInstance();
Base.open(cp.getDataSource());
VehicleClass vehicleClass = VehicleClass.findFirst("id=? and is_deleted=?",Long.valueOf(req.params(":vehicleClassId")),false);
Base.close();
ctx.setVerificationStrategy(new NotFoundVerification());
ctx.executeStrategy(vehicleClass, VehicleClass.class.getSimpleName());
res.status(200);
return vehicleClass.toJson(false);
};
}
@Override
public Route update() {
return (Request req, Response res) -> {
ModelVerificationContext ctx = new ModelVerificationContext();
ConnectionProvider cp = ConnectionProvider.getInstance();
Base.open(cp.getDataSource());
VehicleClass vehicleClass = VehicleClass.findFirst("id=? and is_deleted=?",Long.valueOf(req.params(":vehicleClassId")),false);
Base.close();
ctx.setVerificationStrategy(new NotFoundVerification());
ctx.executeStrategy(vehicleClass, VehicleClass.class.getSimpleName());
vehicleClass.fromMap(JsonHelper.toMap(req.body()));
Base.open(cp.getDataSource());
vehicleClass.save();
Base.close();
ctx.setVerificationStrategy(new ValidationErrorsVerification());
ctx.executeStrategy(vehicleClass, VehicleClass.class.getSimpleName());
res.status(200);
return vehicleClass.toJson(false);
};
}
@Override
public Route destroy() {
return (Request req, Response res) -> {
ModelVerificationContext ctx = new ModelVerificationContext();
ConnectionProvider cp = ConnectionProvider.getInstance();
Base.open(cp.getDataSource());
VehicleClass vehicleClass = VehicleClass.findFirst("id=? and is_deleted=?",Long.valueOf(req.params(":vehicleClassId")),false);
Base.close();
ctx.setVerificationStrategy(new NotFoundVerification());
ctx.executeStrategy(vehicleClass, VehicleClass.class.getSimpleName());
vehicleClass.setIsActive(false);
vehicleClass.setIsDeleted(true);
Base.open(cp.getDataSource());
vehicleClass.save();
Base.close();
res.status(204);
return "";
};
}
@Override
public Route list() {
return (Request req, Response res) -> {
ResourcePagination pagination = new ResourcePagination(req);
ConnectionProvider cp = ConnectionProvider.getInstance();
Base.open(cp.getDataSource());
LazyList<VehicleClass> vehicleClasses = VehicleClass
.find("is_deleted=?",false)
.limit(pagination.getLimit())
.offset(pagination.getOffset())
.orderBy("id desc");
Long totalCount = VehicleClass.count("is_deleted=?",false);
String vehicleClassesJson = vehicleClasses.toJson(false);
Base.close();
res.header("Total-Count", totalCount.toString());
res.header("Link",pagination.generateLinkHeader(totalCount.intValue()));
res.status(200);
return vehicleClassesJson;
};
}
@Override
public void initEndpoints(){
before("/api/v1/vehicle_classes", new HasValidContentType());
before("/api/v1/vehicle_classes/:vehicleClassId", new HasValidContentType());
post("/api/v1/vehicle_classes", this.create());
get("/api/v1/vehicle_classes/:vehicleClassId", this.read());
patch("/api/v1/vehicle_classes/:vehicleClassId", this.update());
delete("/api/v1/vehicle_classes/:vehicleClassId", this.destroy());
get("/api/v1/vehicle_classes", this.list());
}
}
| [
"lucas.lsl.lima@gmail.com"
] | lucas.lsl.lima@gmail.com |
27823e3454e148c1a602e6329f0d271aa7af164c | a63767f0e6b57c3bf949668f1c9c53a148a0fde5 | /mr-shop/mingrui-shop-service-api/mingrui-shop-service-api-user/src/main/java/com/baidu/shop/service/UserService.java | 83c2ed82c76e2ffea40450e07bdbe82346be72e0 | [] | no_license | liguanghan-git/mr-shop | 169cf9d07aa27c561846e0d7dd3062ef338a748f | 8ed84d67124d5bbc9c2fc477d96130d38cb49803 | refs/heads/master | 2023-01-09T04:04:25.052205 | 2020-10-16T11:26:43 | 2020-10-16T11:26:43 | 290,697,864 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,757 | java | package com.baidu.shop.service;
import com.alibaba.fastjson.JSONObject;
import com.baidu.shop.base.Result;
import com.baidu.shop.dto.UserDTO;
import com.baidu.shop.entity.UserEntity;
import com.baidu.shop.validate.group.MingruiOperation;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.validation.annotation.Validated;
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.RequestBody;
import java.util.List;
/**
* @ClassName TestEurekaFeignController
* @Description: TODO
* @Author liguanghan
* @Date 2020/10/14
* @Version V1.0
**/
@Api(tags = "用户接口")
public interface UserService{
@ApiOperation(value = "用户注册")
@PostMapping(value = "user/register")
Result<JSONObject> register(@Validated({MingruiOperation.add.class}) @RequestBody UserDTO userDTO);
@ApiOperation(value = "给手机号发送验证码")
@PostMapping(value = "user/sendValidCode")
Result<JSONObject> sendValidCode(@RequestBody UserDTO userDTO);
@ApiOperation(value = "检验用户名/手机号")
@GetMapping(value = "user/check/{value}/{type}")
//应该定义常量,并返回常量,前台判断常量的值就可以
// public static final Integer USERNAME_IS_EXIST="1";
Result<List<UserEntity>> checkUsernameOrPhone(@PathVariable(value = "value") String value, @PathVariable(value = "type") Integer type);
@GetMapping(value = "/user/checkCode")
@ApiOperation(value = "校验用户输入的手机验证码")
Result<JSONObject> checkCode(String phone ,String code);
}
| [
"l15500000031@163.com"
] | l15500000031@163.com |
68faa301f34fa20d2f0e0403bf55d58413ed9feb | 7e1511cdceeec0c0aad2b9b916431fc39bc71d9b | /flakiness-predicter/input_data/original_tests/wro4j-wro4j/nonFlakyMethods/ro.isdc.wro.http.handler.TestResourceProxyRequestHandler-shouldSetPNGContentType.java | 72d1d2b2e6911a55e893529c693cfbb81ae6f8e3 | [
"BSD-3-Clause"
] | permissive | Taher-Ghaleb/FlakeFlagger | 6fd7c95d2710632fd093346ce787fd70923a1435 | 45f3d4bc5b790a80daeb4d28ec84f5e46433e060 | refs/heads/main | 2023-07-14T16:57:24.507743 | 2021-08-26T14:50:16 | 2021-08-26T14:50:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 410 | java | @Test public void shouldSetPNGContentType() throws IOException {
final String resourceUri="classpath:" + packagePath + "/"+ "test.png";
when(mockAuthorizationManager.isAuthorized(resourceUri)).thenReturn(true);
when(request.getParameter(ResourceProxyRequestHandler.PARAM_RESOURCE_ID)).thenReturn(resourceUri);
victim.handle(request,response);
verify(response,times(1)).setContentType("image/png");
}
| [
"aalsha2@masonlive.gmu.edu"
] | aalsha2@masonlive.gmu.edu |
b9a938efb94ac19df67ecc34c8f886d272dd9de3 | 5b71335d90587826f5fb733f7de3b5e5439e3700 | /HibernateWork/src/address/util/DateUtil.java | 82a378d04ee93821823f17580117c05ff418ac4c | [] | no_license | helaiza/JavafxTimeManager | d1df943e2c363844e959a667df0fff2a29de375b | 6ae368cbee16c2ddc1748c2a697c806611e36e8e | refs/heads/master | 2021-05-31T13:37:46.678998 | 2016-06-09T20:57:46 | 2016-06-09T20:57:46 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,753 | java | package address.util;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.time.format.DateTimeParseException;
/**
* Helper functions for handling dates.
*
* @author Marco Jakob
*/
public class DateUtil {
/** The date pattern that is used for conversion. Change as you wish. */
private static final String DATE_PATTERN = "dd.MM.yyyy";
/** The date formatter. */
private static final DateTimeFormatter DATE_FORMATTER =
DateTimeFormatter.ofPattern(DATE_PATTERN);
/**
* Returns the given date as a well formatted String. The above defined
* {@link DateUtil#DATE_PATTERN} is used.
*
* @param date the date to be returned as a string
* @return formatted string
*/
public static String format(LocalDate date) {
if (date == null) {
return null;
}
return DATE_FORMATTER.format(date);
}
/**
* Converts a String in the format of the defined {@link DateUtil#DATE_PATTERN}
* to a {@link LocalDate} object.
*
* Returns null if the String could not be converted.
*
* @param dateString the date as String
* @return the date object or null if it could not be converted
*/
public static LocalDate parse(String dateString) {
try {
return DATE_FORMATTER.parse(dateString, LocalDate::from);
} catch (DateTimeParseException e) {
return null;
}
}
/**
* Checks the String whether it is a valid date.
*
* @param dateString
* @return true if the String is a valid date
*/
public static boolean validDate(String dateString) {
// Try to parse the String.
return DateUtil.parse(dateString) != null;
}
}
| [
"nealla95@gmail.com"
] | nealla95@gmail.com |
e4557f518d3b18847fd9a8eec8d2f4e334854d2b | 397a7713ee52b9d132877eeeae588bf3f0902d53 | /EVE_JPA/src/org/holtz/eve/jpa/entity/D01GdGiftCard.java | 460cbd01dedd375d69d12d5da31430c89e0fc26b | [] | no_license | rholtzjr/eve_j2ee | ab399b30bba7168be32df24624f15e2b27d684ab | 5e94faa78079092d75444d9adb754832186fbf06 | refs/heads/master | 2022-12-25T16:01:14.946883 | 2020-03-03T22:03:27 | 2020-03-03T22:03:27 | 100,038,635 | 0 | 0 | null | 2022-12-16T11:46:34 | 2017-08-11T14:12:49 | Java | UTF-8 | Java | false | false | 3,108 | java | package org.holtz.eve.jpa.entity;
// Generated Aug 4, 2017 9:16:24 AM by Hibernate Tools 4.0.1.Final
import javax.persistence.AttributeOverride;
import javax.persistence.AttributeOverrides;
import javax.persistence.Column;
import javax.persistence.EmbeddedId;
import javax.persistence.Entity;
import javax.persistence.Table;
/**
* D01GdGiftCard generated by hbm2java
*/
@Entity
@Table(name = "d01_GdGiftCard")
public class D01GdGiftCard implements java.io.Serializable {
private D01GdGiftCardId id;
public D01GdGiftCard() {
}
public D01GdGiftCard(D01GdGiftCardId id) {
this.id = id;
}
@EmbeddedId
@AttributeOverrides({
@AttributeOverride(name = "gdGiftCardId", column = @Column(name = "GdGiftCardID", nullable = false)),
@AttributeOverride(name = "gdGiftCardNoTx", column = @Column(name = "GdGiftCardNoTx", nullable = false)),
@AttributeOverride(name = "gdPurchasedById", column = @Column(name = "GdPurchasedByID", nullable = false)),
@AttributeOverride(name = "gdOwnedById", column = @Column(name = "GdOwnedByID", nullable = false)),
@AttributeOverride(name = "gdStoreId", column = @Column(name = "GdStoreID", nullable = false)),
@AttributeOverride(name = "gdCostCenterId", column = @Column(name = "GdCostCenterID", nullable = false)),
@AttributeOverride(name = "gdPurchasedInvoiceIdN", column = @Column(name = "GdPurchasedInvoiceID_N")),
@AttributeOverride(name = "gdCreationDate", column = @Column(name = "GdCreationDate", nullable = false, length = 23)),
@AttributeOverride(name = "gdEmpId", column = @Column(name = "GdEmpID", nullable = false)),
@AttributeOverride(name = "gdCreditMn", column = @Column(name = "GdCreditMn", nullable = false, precision = 53, scale = 0)),
@AttributeOverride(name = "gdCurrencyId", column = @Column(name = "GdCurrencyID", nullable = false)),
@AttributeOverride(name = "gdExchangeRateFl", column = @Column(name = "GdExchangeRateFl", nullable = false, precision = 24, scale = 0)),
@AttributeOverride(name = "gdLastUpdatedDate", column = @Column(name = "GdLastUpdatedDate", nullable = false, length = 23)),
@AttributeOverride(name = "gdPcid", column = @Column(name = "GdPCID", nullable = false)),
@AttributeOverride(name = "gdTransStatusId", column = @Column(name = "GdTransStatusID", nullable = false)),
@AttributeOverride(name = "gdNotesTxN", column = @Column(name = "GdNotesTx_N")),
@AttributeOverride(name = "gdVoidDateN", column = @Column(name = "GdVoidDate_N", length = 23)),
@AttributeOverride(name = "gdVoidReasonTxN", column = @Column(name = "GdVoidReasonTx_N")),
@AttributeOverride(name = "gdAccountingPeriodIdN", column = @Column(name = "GdAccountingPeriodID_N")),
@AttributeOverride(name = "gdGiftCardTypeId", column = @Column(name = "GdGiftCardTypeID", nullable = false)),
@AttributeOverride(name = "gcCloseCardOnCreditZeroBl", column = @Column(name = "GcCloseCardOnCreditZeroBl", nullable = false)) })
public D01GdGiftCardId getId() {
return this.id;
}
public void setId(D01GdGiftCardId id) {
this.id = id;
}
}
| [
"rholtzjr@yahoo.com"
] | rholtzjr@yahoo.com |
89401ada2b752d4b6bc13a1bd17179153d1ba2fe | 159c1eb74eb8c4b562c9407002a5a0578d5fea5c | /KnapSack.java | a969ef20672d4f2b284ac0299918ef674ed66e72 | [] | no_license | nahataamit/DataStructure | 31f49471e1985c31ab75a4758602162d3dcf9fd0 | 0ac40fc72c9a3fa712b61d2bf8c3cc12fe090ce5 | refs/heads/master | 2020-04-20T14:44:35.817023 | 2020-04-19T02:27:01 | 2020-04-19T02:27:01 | 168,908,522 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,100 | java | package otherProblems;
class Knapsack
{
// A utility function that returns maximum of two integers
static int max(int a, int b) { return (a > b)? a : b; }
// Returns the maximum value that can be put in a knapsack of capacity W
static int knapSack(int W, int wt[], int val[], int n)
{
int i, w;
int K[][] = new int[n+1][W+1];
// Build table K[][] in bottom up manner
for (i = 0; i <= n; i++)
{
for (w = 0; w <= W; w++)
{
if (i==0 || w==0)
K[i][w] = 0;
else if (wt[i-1] <= w)
K[i][w] = max(val[i-1] + K[i-1][w-wt[i-1]], K[i-1][w]);
else
K[i][w] = K[i-1][w];
}
}
return K[n][W];
}
// Driver program to test above function
public static void main(String args[])
{
int val[] = new int[]{60, 100, 120};
int wt[] = new int[]{10, 20, 30};
int W = 50;
int n = val.length;
System.out.println(knapSack(W, wt, val, n));
}
}
| [
"noreply@github.com"
] | nahataamit.noreply@github.com |
580e296b1c6a7de841124ac7bc22ed90f876a332 | bdada8dd2fee5ed621fb4663adf2ae91edf7f390 | /xc-gl/src/main/java/com/xzsoft/xc/gl/service/XCGLFetchDataService.java | 5f48aeb8e87fd0263ff76cc504d05741a8eea75e | [] | no_license | yl23250/xc | abaf7dbbdf1ec3b32abe16a1aeca19ee29568387 | 47877dc79e8ea8947f526bb21a1242cae5d70dd8 | refs/heads/master | 2020-09-16T20:49:54.040706 | 2018-06-23T13:25:56 | 2018-06-23T13:25:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,551 | java | package com.xzsoft.xc.gl.service;
import java.util.HashMap;
/**
*@fileName XCGLFetchDataService
*@desc (总账对内对外取数接口,包括账簿信息、科目辅助段信息、凭证、总账以及现金流等)
*@author tangxl
*@date 2016年3月16日
*/
public interface XCGLFetchDataService {
/**
* @desc 获取账簿信息
* @author tangxl
* @date 2016年3月16日
* @param lastUpdateDate
* @param userName
* @param userPwd
* @param fetchType
* @return HashMap<String, String> key:synchronizeDate -- 同步日期
* key:data -- 返回的数据
* @throws Exception
*/
public HashMap<String, String> fecthLedgerData(String lastUpdateDate, String userName, String userPwd,String fetchType) throws Exception;
/**
* @desc 获取科目段信息
* @author tangxl
* @date 2016年3月17日
* @param dimType
* @param lastUpdateDate
* @param ledgerId
* @param userName
* @param userPwd
* @param fetchType
* @return HashMap<String, String> key:synchronizeDate -- 同步日期
* key:data -- 返回的数据
* @throws Exception
*/
public HashMap<String, String> fecthDimensionsData(String dimType, String lastUpdateDate, String ledgerId, String userName, String userPwd,String fetchType) throws Exception;
/**
* @Title: fecthAccountData
* @Description: 科目信息同步处理
* @param dimType
* @param lastUpdateDate
* @param ledgerId
* @param userName
* @param userPwd
* @param fetchType
* @return
* @throws Exception 设定文件
*/
public HashMap<String, String> fecthAccountData(String lastUpdateDate, String hrcyCode, String userName, String userPwd,String fetchType) throws Exception;
/**
* @desc 获取余额信息
* @author tangxl
* @date 2016年3月17日
* @param lastUpdateDate
* @param ledgerCode
* @param userName
* @param userPwd
* @param fetchType
* @return HashMap<String, String> key:synchronizeDate -- 同步日期
* key:data -- 返回的数据
* @throws Exception
*/
public HashMap<String, String> fecthBalancesData(String lastUpdateDate, String ledgerCode, String userName, String userPwd,String fetchType) throws Exception;
/**
* @desc 获取科目组合信息
* @author tangxl
* @date 2016年3月17日
* @param lastUpdateDate
* @param ledgerCode
* @param userName
* @param userPwd
* @param fetchType
* @return HashMap<String, String> key:synchronizeDate -- 同步日期
* key:data -- 返回的数据
* @throws Exception
*/
public HashMap<String, String> fecthCcidData(String lastUpdateDate, String ledgerCode, String userName, String userPwd,String fetchType) throws Exception;
/**
* @desc 获取凭证信息
* @author tangxl
* @date 2016年3月17日
* @param lastUpdateDate
* @param ledgerId
* @param userName
* @param userPwd
* @param fetchType
* @return HashMap<String, String> key:synchronizeDate -- 同步日期
* key:data -- 返回的数据
* @throws Exception
*/
public HashMap<String, String> fecthVoucherData(String lastUpdateDate, String ledgerCode, String userName, String userPwd,String fetchType) throws Exception;
/**
* @desc 获取现金流信息
* @author tangxl
* @date 2016年3月17日
* @param lastUpdateDate
* @param ledgerId
* @param userName
* @param userPwd
* @param fetchType
* @return HashMap<String, String> key:synchronizeDate -- 同步日期
* key:data -- 返回的数据
* @throws Exception
*/
public HashMap<String, String> fecthCashSumData(String lastUpdateDate, String ledgerCode, String userName, String userPwd,String fetchType) throws Exception;
/**
* @desc 获取现金流项目信息
* @author tangxl
* @date 2016年3月16日
* @param lastUpdateDate
* @param userName
* @param userPwd
* @param fetchType
* @return HashMap<String, String> key:synchronizeDate -- 同步日期
* key:data -- 返回的数据
* @throws Exception
*/
public HashMap<String, String> fetchCashItemDate(String lastUpdateDate, String userName, String userPwd,String fetchType) throws Exception;
}
| [
"381666890@qq.com"
] | 381666890@qq.com |
3a9d9f355ef4d3b6ff4459b4fbdd36ad50d6d3c3 | 6242501e0519aeb6b89599a440ae7b4c1ce46834 | /app/src/main/java/gpovallas/app/medios/MeanTabListadosDetailTabUbicacionFragment.java | af48ebf99ddc8c6c8d3afa86146d12c1d1ed00b3 | [] | no_license | oscarhsanchez/app-comercial-android | 1abf0d5c3e19f0fe8c70d6ddc17f2093b36e7f76 | 33ece92ba6de469dcc68b566785d51e67ddf09b8 | refs/heads/master | 2021-01-23T10:39:12.800378 | 2016-07-04T15:11:58 | 2016-07-04T15:11:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,529 | java | package gpovallas.app.medios;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.text.Editable;
import android.text.TextUtils;
import android.text.TextWatcher;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.EditText;
import android.widget.Spinner;
import android.widget.TextView;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.OnMapReadyCallback;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.BitmapDescriptorFactory;
import com.google.android.gms.maps.model.CameraPosition;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.Marker;
import com.google.android.gms.maps.model.MarkerOptions;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import gpovallas.app.ApplicationStatus;
import gpovallas.app.R;
import gpovallas.app.constants.GPOVallasConstants;
import gpovallas.obj.Ubicacion;
import gpovallas.utils.Database;
public class MeanTabListadosDetailTabUbicacionFragment extends Fragment implements OnMapReadyCallback,AdapterView.OnItemSelectedListener {
private static final String TAG = MeanTabListadosDetailTabPosicionesFragment.class.getSimpleName();
private GoogleMap mMap;
private View mRoot;
private SQLiteDatabase db;
private Ubicacion ubicacion;
private String mPkListado;
private TextView mUbiacionText;
private String filter_categoria;
private EditText mTxtSearchFilter;
private ArrayList<HashMap<String, String>> mVenueList;
private HashMap<String, String> markers;
private Context mContext;
private Spinner spinner;
private ArrayList<HashMap<String, String>> arrCategoria;
private ArrayAdapter<String> dataAdapter;
@Override
@Nullable
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle saveInstanceState){
mRoot = inflater.inflate(R.layout.mean_tab_listados_detail_tab_ubicacion, container, false);
mUbiacionText = (TextView) mRoot.findViewById(R.id.mapa_ubicacion);
mContext = this.getContext();
markers = new HashMap<String, String>();
spinner =(Spinner) mRoot.findViewById(R.id.spinner_search_filter);
SupportMapFragment mapFragment = ((SupportMapFragment) getChildFragmentManager()
.findFragmentById(R.id.map));
mapFragment.getMapAsync(this);
Bundle bundle = getArguments();
if (bundle != null) {
mPkListado = bundle.getString(GPOVallasConstants.LISTADO_PK_INTENT);
Log.i(TAG, mPkListado);
}
db = ApplicationStatus.getInstance().getDb(getActivity());
init();
populate();
return mRoot;
}
public void init(){
loadCatalogoCategoria();
ubicacion = (Ubicacion) Database.getObjectBy(db, GPOVallasConstants.DB_TABLE_UBICACION,"pk_ubicacion = '" + mPkListado+"'", Ubicacion.class);
mUbiacionText.setText(ubicacion.ubicacion);
filter_categoria = "";
spinner.setOnItemSelectedListener(this);
// Spinner Drop down elements
List<String> categories = new ArrayList<String>();
for (HashMap<String, String> tipo : arrCategoria){
categories.add(tipo.get("name"));
}
dataAdapter = new ArrayAdapter<String>(this.getActivity(), android.R.layout.simple_spinner_item, categories);
dataAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinner.setAdapter(dataAdapter);
}
public void populate() {
mVenueList = new ArrayList<HashMap<String, String>>();
String sql = "SELECT m.name as titulo,m.phone as telefono,m.lat as latitud,m.lon as longitud,m.distance,c.name as categoria " +
"FROM META_VENUE m INNER JOIN META_CATEGORY c ON c.id = m.fk_category WHERE m.estado = 1 and fk_ubicacion='"+mPkListado+"'";
if (!TextUtils.isEmpty(filter_categoria)) {
sql += " AND m.fk_category = '"+filter_categoria+"'";
}
//sql += " ORDER BY c.name_social ASC";
Cursor c = db.rawQuery(sql, null);
Log.i(TAG, "" + c.getCount());
if (c.moveToFirst()) {
do {
HashMap<String, String> map = new HashMap<String, String>();
map.put("titulo", c.getString(c.getColumnIndex("titulo")));
map.put("telefono", c.getString(c.getColumnIndex("telefono")));
map.put("latitud", c.getString(c.getColumnIndex("latitud")));
map.put("longitud", c.getString(c.getColumnIndex("longitud")));
map.put("distance", c.getString(c.getColumnIndex("distance")));
map.put("categoria", c.getString(c.getColumnIndex("categoria")));
mVenueList.add(map);
} while (c.moveToNext());
}
c.close();
}
public void loadMarkerts(){
if(mMap != null){
mMap.clear();
Double latitud = ubicacion.latitud;
Double longitud = ubicacion.longitud;
//mMap.clear();
LatLng ubi= new LatLng(latitud, longitud);
Log.i(TAG, "latitud " + ubi.latitude + " longitud " + ubi.longitude);
Marker m=mMap.addMarker(new MarkerOptions().position(ubi).title(ubicacion.ubicacion)
.snippet("")
.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_RED)));
markers.put(m.getId(),"");
CameraPosition cameraPosition = new CameraPosition.Builder()
.target(ubi)
.zoom(17).build();
//Zoom in and animate the camera.
mMap.animateCamera(CameraUpdateFactory.newCameraPosition(cameraPosition));
for (HashMap<String, String> venue : mVenueList){
latitud = Double.valueOf(venue.get("latitud"));
longitud = Double.valueOf(venue.get("longitud"));
ubi= new LatLng(latitud, longitud);
Marker marker= mMap.addMarker(new MarkerOptions().position(ubi)
.title(venue.get("titulo")).snippet("Telefono: "+venue.get("telefono"))
.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_BLUE)));
markers.put(marker.getId(),"Categoria: "+venue.get("categoria"));
}
}
}
@Override
public void onMapReady(GoogleMap googleMap) {
mMap = googleMap;
mMap.setInfoWindowAdapter(new InfoWindowAdapterMarker(mContext));
loadMarkerts();
}
public void loadCatalogoCategoria(){
arrCategoria = new ArrayList<HashMap<String, String>>();
String sql = "SELECT c.id,c.name" +
" FROM META_CATEGORY c LEFT JOIN META_VENUE m ON c.id = m.fk_category WHERE m.fk_ubicacion='"+mPkListado+"' GROUP by c.id";
Cursor c = db.rawQuery(sql, null);
HashMap<String,String> map1 = new HashMap<String, String>();
map1.put("id", "");
map1.put("name","Todos");
arrCategoria.add(map1);
Log.i(TAG, "" + c.getCount());
if(c.moveToFirst()){
do {
Log.i(TAG, c.getString(c.getColumnIndex("name")));
HashMap<String,String> map = new HashMap<String, String>();
map.put("id", c.getString(c.getColumnIndex("id")));
map.put("name", c.getString(c.getColumnIndex("name")));
arrCategoria.add(map);
} while (c.moveToNext());
}
c.close();
}
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
HashMap<String, String> tipo =arrCategoria.get(position);
Log.i(TAG, "SELECT " + tipo.get("name"));
filter_categoria = tipo.get("id");
populate();
loadMarkerts();
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
}
public class InfoWindowAdapterMarker implements GoogleMap.InfoWindowAdapter {
private Marker markerShowingInfoWindow;
private Context mContext;
public InfoWindowAdapterMarker(Context context) {
mContext = context;
}
@Override
public View getInfoWindow(Marker marker) {
return null;
}
@Override
public View getInfoContents(Marker marker) {
markerShowingInfoWindow = marker;
LayoutInflater inflater = (LayoutInflater) mContext.getSystemService( Context.LAYOUT_INFLATER_SERVICE );
View popUp = inflater.inflate(R.layout.map_custom_view, null);
TextView tv = (TextView) popUp.findViewById(R.id.tv_title);
tv.setText(marker.getTitle());
tv = (TextView) popUp.findViewById(R.id.tv_telefono);
tv.setText(marker.getSnippet());
tv = (TextView) popUp.findViewById(R.id.tv_categoria);
String categoria = markers.get(marker.getId());
tv.setText(categoria);
return popUp;
}
}
}
| [
"horuhe90@gmail.com"
] | horuhe90@gmail.com |
36d105d1938d4d54b1fbf957cf9437c9c07bacfd | 1357f65c409bb431f1e8067085727a4766c5c99b | /src/bing/AdmAuthentication.java | 7bfcb9c6c5ca53d2ff74eb6ebeb9651c3adf970a | [] | no_license | vibhachugh93/Bing | 39d6bee070fcbb89f339a7613504c94fe0f9289c | 01f73215aad39109bfb7235c0eac819f569cdd68 | refs/heads/master | 2021-01-17T08:43:49.965068 | 2016-07-07T12:10:37 | 2016-07-07T12:10:37 | 62,801,847 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,972 | java | package bing;
import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.StringReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
public class AdmAuthentication
{
public static final String DatamarketAccessUri = "https://datamarket.accesscontrol.windows.net/v2/OAuth2-13";
public static final String txtFilePath="/home/vibhachugh/workspace/example1/src/testdataexamples";
public static final String languageCodeFilePath="/home/vibhachugh/workspace/example1/src/codes.txt";
private String clientId;
private String clientSecret;
private String request;
private AdmAccessToken token;
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public String getClientSecret() {
return clientSecret;
}
public void setClientSecret(String clientSecret) {
this.clientSecret = clientSecret;
}
public String getRequest() {
return request;
}
public void setRequest(String request) {
this.request = request;
}
public AdmAccessToken getToken() {
return token;
}
public void setToken(AdmAccessToken token) {
this.token = token;
}
public AdmAuthentication(String clientId, String clientSecret) throws IOException
{
this.clientId = clientId;
this.clientSecret = clientSecret;
this.clientId= URLEncoder.encode(this.clientId,"UTF-8");
this.clientSecret= URLEncoder.encode(this.clientSecret,"UTF-8");
//If clientid or client secret has special characters, encode before sending request
// this.request = String.Format("grant_type=client_credentials&client_id={0}&client_secret={1}&scope=http://api.microsofttranslator.com", HttpUtility.UrlEncode(clientId), HttpUtility.UrlEncode(clientSecret));
this.request= "grant_type=client_credentials&client_id="+ this.clientId +"&client_secret="+ this.clientSecret +"&scope=http://api.microsofttranslator.com";
}
public AdmAccessToken getAccessTokenUsingPost(String DatamarketAccessUri,String request) throws IOException, org.json.simple.parser.ParseException{
URL url= new URL(DatamarketAccessUri);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setDoOutput(true);
conn.setRequestMethod("POST");
conn.setRequestProperty("Accept-Language", "en-US,en;q=0.5");
DataOutputStream wr = new DataOutputStream(conn.getOutputStream());
wr.writeBytes(request);
wr.flush();
wr.close();
//int responseCode = conn.getResponseCode();
/*System.out.println("\nSending 'POST' request to URL : " + url);
System.out.println("Post parameters : " + request);
System.out.println("Response Code : " + responseCode);*/
BufferedReader in = new BufferedReader(
new InputStreamReader(conn.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
//print result
// System.out.println(response.toString());
JSONParser parser = new JSONParser();
JSONObject object= (JSONObject) parser.parse(response.toString());
AdmAccessToken admToken= new AdmAccessToken();
String tokenType= (String) object.get("token_type");
String accessToken=(String) object.get("access_token");
String expiresIn=(String)object.get("expires_in");
String scope= (String)object.get("scope");
admToken.setAccessToken(accessToken);
admToken.setTokenType(tokenType);
admToken.setExpiresIn(expiresIn);
admToken.setScope(scope);
setToken(admToken);
conn.disconnect();
return this.getToken();
}
public String translateText(String from,String to,String text) throws IOException, ParserConfigurationException, SAXException
{
if(from==null||to==null||text==null || from.equals(to)){
return null;
}
String uri = "http://api.microsofttranslator.com/v2/Http.svc/Translate?text="+URLEncoder.encode(text,"UTF-8")+ "&from=" + from + "&to=" + to;
String authToken = "Bearer" + " " + this.getToken().getAccessToken();
URL url= new URL(uri);
//System.out.println(authToken);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setRequestProperty("Authorization", authToken);
// int responseCode = conn.getResponseCode();
/* System.out.println("\nSending 'GET' request to URL : " + url);
System.out.println("Response Code : " + responseCode);*/
BufferedReader in = new BufferedReader(
new InputStreamReader(conn.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
conn.disconnect();
//print result
//System.out.println(response.toString());
//this.xmlToDataRetriever(response.toString());
return this.xmlToDataRetriever(response.toString());
}
public String xmlToDataRetriever(String xmlString) throws ParserConfigurationException, SAXException, IOException
{
DocumentBuilder db = DocumentBuilderFactory.newInstance().newDocumentBuilder();
InputSource is = new InputSource();
is.setCharacterStream(new StringReader(xmlString));
Document doc = (Document) db.parse(is);
Element e= doc.getDocumentElement();
String str= e.getTextContent();
return str;
}
public String autodetectTranslation(String to,String text)throws IOException, ParserConfigurationException, SAXException
{
String uri ="http://api.microsofttranslator.com/v2/Http.svc/Detect?text=" + URLEncoder.encode(text,"UTF-8");
String authToken = "Bearer" + " " + this.getToken().getAccessToken();
URL url= new URL(uri);
// System.out.println(authToken);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setRequestProperty("Authorization", authToken);
/* int responseCode = conn.getResponseCode();
System.out.println("\nSending 'GET' request to URL : " + url);
System.out.println("Response Code : " + responseCode);*/
BufferedReader in = new BufferedReader(
new InputStreamReader(conn.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
conn.disconnect();
String detectedXml= response.toString();
String detectedLanguage= this.xmlToDataRetriever(detectedXml);
return this.translateText(detectedLanguage, to, text);
}
public List<String> getLinesFromFile(String path) throws IOException
{
BufferedReader in = new BufferedReader(new FileReader(path));
String line;
List<String> fileStrings= new ArrayList<String>();
while((line = in.readLine()) != null)
{
fileStrings.add(line);
}
in.close();
return fileStrings;
}
public Map<String,String> getLanguageCodeMap()throws IOException{
BufferedReader in = new BufferedReader(new FileReader(languageCodeFilePath));
String line;
Map<String,String> languageCodesMap= new HashMap<String,String>();
while((line=in.readLine())!=null){
String []code= line.split(",");
languageCodesMap.put(code[1], code[0]);
}
in.close();
return languageCodesMap;
}
public static void main(String[] args) throws IOException, org.json.simple.parser.ParseException
{
String clientId="testNGDemoClient";
String clientSecret="jexBmJlYO56nXox8O0kcEiOEF9/M+ogSHOxgQ9q35sk=";
// AdmAuthentication authToken= new AdmAuthentication(clientId, clientSecret);
try {
AdmAuthentication authToken= new AdmAuthentication(clientId, clientSecret);
List<String> lines= authToken.getLinesFromFile(txtFilePath);
AdmAccessToken token= authToken.getAccessTokenUsingPost(DatamarketAccessUri, authToken.getRequest());
System.out.println(token);
// System.out.println(token.getAccessToken());
String text = null;
String from = null;
String to = null;
try {
for(int i=0;i<lines.size();i++){
String[] problem= lines.get(i).split(",");
from= problem[0];
to= problem[1];
text= problem[2];
// System.out.println(from+ "" + to + "" + text);
if(from==null || from.equals("")){
System.out.println(authToken.autodetectTranslation(to, text));
}
else{
System.out.println(authToken.translateText(from, to, text));
}
}
} catch (ParserConfigurationException e) {
e.printStackTrace();
} catch (SAXException e) {
e.printStackTrace();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
| [
"chughvibha91@gmail.com"
] | chughvibha91@gmail.com |
7683b0cf9a661259989410f0c88ee7150faea1e3 | cd7db4fd25b84879f27d51fc7813b19d5843086c | /VRProject/src/main/java/com/vr/pojos/CImages.java | 0d4783918d319f6a0894a804c5094a4b5033d171 | [] | no_license | vedisoftbpl/vrproject | 840baebdd74e2eb71dd5110478cdea8e47977134 | 6697c411cdc98f7ad5ef67e8fa90f82102f592da | refs/heads/master | 2020-03-31T16:41:29.036097 | 2018-11-21T07:06:26 | 2018-11-21T07:06:26 | 152,386,398 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,771 | java | package com.vr.pojos;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "Cimage")
@XmlAccessorType(XmlAccessType.FIELD)
public class CImages {
int ciId;
int caId;
String image;
public CImages() {
super();
}
public CImages(int ciId, int caId, String image) {
super();
this.ciId = ciId;
this.caId = caId;
this.image = image;
}
public CImages(int caId, String image) {
super();
this.caId = caId;
this.image = image;
}
public int getCiId() {
return ciId;
}
public void setCiId(int ciId) {
this.ciId = ciId;
}
public int getCaId() {
return caId;
}
public void setCaId(int caId) {
this.caId = caId;
}
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + caId;
result = prime * result + ciId;
result = prime * result + ((image == null) ? 0 : image.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
CImages other = (CImages) obj;
if (caId != other.caId)
return false;
if (ciId != other.ciId)
return false;
if (image == null) {
if (other.image != null)
return false;
} else if (!image.equals(other.image))
return false;
return true;
}
@Override
public String toString() {
return "Cimage [ciId=" + ciId + ", caId=" + caId + ", image=" + image + "]";
}
}
| [
"MayanK@Mayank-HP"
] | MayanK@Mayank-HP |
2291072630b69bb10633a10b47df60969f591070 | 9cec99718d01473366545926b71063ccf3578e40 | /4_Harjoitustyo/backend-fullstack-skeleton-java-spring-maven/src/main/java/fi/dev/academy/vaccinationdatabase/common_components/utilis/SetUpDB.java | 326b51ecba274fd9337d8987759ebe224e2ae79e | [
"MIT"
] | permissive | bcy569/SWD4TA020-3008 | e6c1b0ea1950744729721453ca05ff87ac68b478 | 061acc89829281d39d817488931279656377fe97 | refs/heads/master | 2023-08-26T00:30:37.670940 | 2021-11-05T12:04:42 | 2021-11-05T12:04:42 | 402,053,080 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,118 | java | package fi.dev.academy.vaccinationdatabase.common_components.utilis;
import com.fasterxml.jackson.core.JsonProcessingException;
import fi.dev.academy.vaccinationdatabase.common_components.base_model_bean.Status;
import fi.dev.academy.vaccinationdatabase.domain_class_pojo_orm.order.Order;
import fi.dev.academy.vaccinationdatabase.domain_class_pojo_orm.vaccination.Vaccination;
import fi.dev.academy.vaccinationdatabase.domain_class_pojo_orm.interfaces.IOrderDAO;
import fi.dev.academy.vaccinationdatabase.domain_class_pojo_orm.interfaces.IVaccinationDAO;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import java.util.List;
@Component
public class SetUpDB {
private static final Logger log = LoggerFactory.getLogger(SetUpDB.class);
// https://docs.spring.io/spring-data/jpa/docs/current/reference/html/#repositories
@Autowired
private IOrderDAO orderRepository;
@Autowired
private IVaccinationDAO vaccinationRepository;
public void initDB() throws JsonProcessingException {
List<Order> orders = null;
List<Vaccination> vaccinations = null;
ReadFiles readFiles = new ReadFiles();
orders = readFiles.readOrders();
log.info("Start to save order ORMs from JSON order files into PostreSQL");
if (orders != null) {
for (Order order : orders) {
order.setStatus(Status.COMPLETED);
orderRepository.save(order);
}
log.info("Ready, all order ORMs saved into PostreSQL");
}
vaccinations = readFiles.readVaccinations();
log.info("Start to map vaccinations into orders and then save vaccination ORMs from JSON file into PostreSQL");
if (vaccinations != null) {
for (Vaccination vaccination : vaccinations) {
// Create DataBase relation @ManyToOne
// Get the order where this vaccination belongs to
List<Order> linkedOrder = orderRepository.findByOrderedAmpuleBottleId(vaccination.getSourceBottle());
if (linkedOrder != null) {
// In this vaccination set the Order-object where this vaccination belongs to)
vaccination.setWhichOrderIncludesTheseVaccinationsLinked(linkedOrder.get(0));
vaccination.setStatus(Status.COMPLETED);
vaccinationRepository.save(vaccination);
} else {
Order tempOrder = new Order();
tempOrder.setResponsiblePerson("No order for this 'Ordered Ampule Bottle Id' aka 'Source Bottle'");
vaccination.setWhichOrderIncludesTheseVaccinationsLinked(tempOrder);
vaccination.setStatus(Status.COMPLETED);
vaccinationRepository.save(vaccination);
}
}
log.info("Ready, all vaccination ORMs saved into PostreSQL");
}
}
}
| [
"bcy569@myy.haaga-helia.fi"
] | bcy569@myy.haaga-helia.fi |
0ba05deabf3c881c500131beb485a86372ef062e | 339f0f393e1b1a631e0ba60c8b92a547b13301b0 | /cas-api/src/main/java/com/msjf/finance/cas/facade/register/domain/RegisterDomain.java | a0894130ea5ba5beae62a494e6e102c1cb88ca90 | [] | no_license | msfj/msjf-cas | e87fde3a13f62ac0feeeb33de6c45df50b0114ee | 547486aa189aa43988cef525ea8751a3984429e6 | refs/heads/master | 2020-04-12T22:06:31.547948 | 2019-02-02T12:55:44 | 2019-02-02T12:55:44 | 162,781,730 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,667 | java | package com.msjf.finance.cas.facade.register.domain;
import com.msjf.finance.msjf.core.domian.BaseDomain;
/**
* Created by chengjunping on 2019/1/15.
*/
public class RegisterDomain extends BaseDomain {
/**
* 用户类型
*/
private String membertype;
/**
* 注册来源 0-web 1-app
*/
private String registersource;
/**
* 用户名称
*/
private String membername;
/**
* 证件类型 0-身份证 1-护照 A-营业执照
*/
private String certificatetype;
/**
* 证件号码
*/
private String certificateno;
/**
* 手机号码
*/
private String mobile;
/**
* 银行卡号
*/
private String cardno;
/**
* 银行
*/
private String bank;
/**
* 验证码
*/
private String msgcode;
/**
* 密码
*/
private String password;
/**
* 就职单位
*/
private String companyname;
/**
* 法人名称
*/
private String corname;
/**
* 法人证件类型
*/
private String corcardtype;
/**
* 法人证件号码
*/
private String corcardno;
/**
* 法注册步骤
*/
private String step;
public String getMembertype() {
return membertype;
}
public void setMembertype(String membertype) {
this.membertype = membertype;
}
public String getRegistersource() {
return registersource;
}
public void setRegistersource(String registersource) {
this.registersource = registersource;
}
public String getMembername() {
return membername;
}
public void setMembername(String membername) {
this.membername = membername;
}
public String getCertificatetype() {
return certificatetype;
}
public void setCertificatetype(String certificatetype) {
this.certificatetype = certificatetype;
}
public String getCertificateno() {
return certificateno;
}
public void setCertificateno(String certificateno) {
this.certificateno = certificateno;
}
public String getMobile() {
return mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public String getCardno() {
return cardno;
}
public void setCardno(String cardno) {
this.cardno = cardno;
}
public String getBank() {
return bank;
}
public void setBank(String bank) {
this.bank = bank;
}
public String getMsgcode() {
return msgcode;
}
public void setMsgcode(String msgcode) {
this.msgcode = msgcode;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getCompanyname() {
return companyname;
}
public void setCompanyname(String companyname) {
this.companyname = companyname;
}
public String getCorname() {
return corname;
}
public void setCorname(String corname) {
this.corname = corname;
}
public String getCorcardtype() {
return corcardtype;
}
public void setCorcardtype(String corcardtype) {
this.corcardtype = corcardtype;
}
public String getCorcardno() {
return corcardno;
}
public void setCorcardno(String corcardno) {
this.corcardno = corcardno;
}
public String getStep() {
return step;
}
public void setStep(String step) {
this.step = step;
}
}
| [
"153449986@qq.com"
] | 153449986@qq.com |
6361b021b14434b97d03be7464b8824617a17172 | 8936fc6298c18d1dc9a75c177c061d4fbdd8838d | /app/src/main/java/com/apps/chattingapp/Models/Status.java | a51aed2331f3f5d2b259e3ea4569e6a473f752b8 | [] | no_license | ArifTarp/ChattingApp-Android-Java | 2a88878dc87ebd7ce7654afaeefcf1f61a7c81c5 | b12f7347bd5da0e61fe14a0696b8b95f2762a618 | refs/heads/main | 2023-06-22T18:11:10.276119 | 2021-07-24T16:25:09 | 2021-07-24T16:25:09 | 349,824,492 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 588 | java | package com.apps.chattingapp.Models;
public class Status {
private String imageUrl;
private long timeStamp;
public Status() {
}
public Status(String imageUrl, long timeStamp) {
this.imageUrl = imageUrl;
this.timeStamp = timeStamp;
}
public String getImageUrl() {
return imageUrl;
}
public void setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
}
public long getTimeStamp() {
return timeStamp;
}
public void setTimeStamp(long timeStamp) {
this.timeStamp = timeStamp;
}
}
| [
"arifoklh@gmail.com"
] | arifoklh@gmail.com |
f76f06f2cf9580ac12e8c9c00fe0852884ac0a21 | 3ecaef5c3de6edfabae247d63eebbbb69cfcca2c | /engine/src/main/java/pl/edu/platinum/archiet/jchess3man/engine/FromTo.java | 7f8ac893ac810ea4a9c6307a50db4d8f10c0a759 | [] | no_license | mkf/jchess3man | d757d15cc80d9d55c0a9183f43e13694ee715506 | 71ef3999233f3e0ab325f0bbc37b900228ac678a | refs/heads/master | 2023-01-02T12:44:02.915157 | 2017-06-27T16:20:22 | 2017-06-27T16:20:22 | 80,241,774 | 1 | 0 | null | 2020-10-29T13:12:50 | 2017-01-27T20:05:15 | Java | UTF-8 | Java | false | false | 1,698 | java | package pl.edu.platinum.archiet.jchess3man.engine;
/**
* Created by Michał Krzysztof Feiler on 18.03.17.
* FromTo is a struct of [from] and [to]
*/
public class FromTo {
/**
* the starting position
*/
public final Pos from;
/**
* the destination position
*/
public final Pos to;
protected static final int finalBitSizeOfAPos = Integer
.toBinaryString(
new Pos(5, 23).toInt())
.length();
/**
* Just a simple constructor for FromTo
*
* @param from the starting position
* @param to the destination position
*/
public FromTo(Pos from, Pos to) {
this.from = from;
this.to = to;
}
/**
* @return from.toInt() with bitwise left-shifted to.toInt()
*/
@Override
public int hashCode() {
return from.toInt() | (to.toInt() << finalBitSizeOfAPos);
}
/**
* @param obj object tested
* @return returns whether obj is instanceof FromTo and this.equals((FromTo) obj)
*/
@Override
public boolean equals(Object obj) {
return obj instanceof FromTo && equals((FromTo) obj);
}
/**
* @param b FromTo tested
* @return whether from.equals(b.from) and to.equals(b.to)
*/
public boolean equalsNoProm(FromTo b) {
return from.equals(b.from) && to.equals(b.to);
}
/**
* @param b FromTo or Desc tested
* @return whether equalsNoProm(b) and
* if b is FromToPro whether b.pawnPromotion is null
*/
public boolean equals(FromTo b) {
return equalsNoProm(b) &&
!(b instanceof Desc && ((Desc) b).pawnPromotion != null);
}
}
| [
"archiet@platinum.edu.pl"
] | archiet@platinum.edu.pl |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.