blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 4
410
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
51
| license_type
stringclasses 2
values | repo_name
stringlengths 5
132
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
80
| visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 5.85k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 22
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 131
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 3
9.45M
| extension
stringclasses 32
values | content
stringlengths 3
9.45M
| authors
sequencelengths 1
1
| author_id
stringlengths 0
313
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
758aa3a70aefee698dfa5e30491a40fc29a0e658 | 93875cd7f56793cbd10204c30c537388dab16b90 | /app/src/main/java/com/example/vatsal/memorableplaces/MainActivity.java | 2575ad3bf875bb1148e8f918a422a7872a7fc97e | [] | no_license | vatsalkhemani/MemorablePlcaes | e08ab84d46f53e8aec003bb5eee4e4a20ea8983f | ddf4a7f01c97da240e78c4e739303f66dd85c111 | refs/heads/master | 2022-10-28T01:43:14.813305 | 2020-06-08T21:18:12 | 2020-06-08T21:18:12 | 270,831,588 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,862 | java | package com.example.vatsal.memorableplaces;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.Toast;
import com.google.android.gms.maps.model.LatLng;
import java.util.ArrayList;
import java.util.List;
public class MainActivity extends AppCompatActivity {
static ArrayList<String> places=new ArrayList<String>();
static ArrayList<LatLng> locations =new ArrayList<LatLng>();
static ArrayAdapter arrayAdapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
SharedPreferences sharedPreferences=this.getSharedPreferences("com.example.vatsal.memorableplaces", Context.MODE_PRIVATE);
ArrayList<String> latitudes=new ArrayList<String>();
ArrayList<String> longitudes=new ArrayList<String>();
places.clear();latitudes.clear();
longitudes.clear();locations.clear();
try{
places = (ArrayList<String>)ObjectSerializer.deserialize(sharedPreferences.getString("places",ObjectSerializer.serialize(new ArrayList<String>())));
latitudes = (ArrayList<String>)ObjectSerializer.deserialize(sharedPreferences.getString("lats",ObjectSerializer.serialize(new ArrayList<String>())));
longitudes = (ArrayList<String>)ObjectSerializer.deserialize(sharedPreferences.getString("lons",ObjectSerializer.serialize(new ArrayList<String>())));
}catch(Exception e){
e.printStackTrace();
}
if(places.size()>0 && latitudes.size() > 0 && longitudes.size()>0){
if(places.size()==latitudes.size() && places.size()==longitudes.size()){
for(int i=0;i<places.size();i++){
locations.add(new LatLng(Double.parseDouble(latitudes.get(i)),Double.parseDouble(longitudes.get(i))));
}
}
}else{
places.add("Add a new place...");
locations.add(new LatLng(0,0));
}
ListView listView=findViewById(R.id.listView);
arrayAdapter=new ArrayAdapter(this,android.R.layout.simple_list_item_1,places);
listView.setAdapter(arrayAdapter);
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
Intent intent=new Intent(getApplicationContext(),MapsActivity.class);
intent.putExtra("placeNumber",i);
startActivity(intent);
}
});
}
}
| [
"43574951+vatsalkhemani@users.noreply.github.com"
] | 43574951+vatsalkhemani@users.noreply.github.com |
66adf62c0c7a409b00a8011f3149ccd0a8188e15 | 03fac8fe67f7ea728152927bd8d4ea2392b689a7 | /Exercicio02.java | d68a0787d7a413d4d3e2d8137cfe1d5131faa8b3 | [] | no_license | JoseOscarJr/ListaMatriz | 649eb4cb7234a2a3fddc1cbc88309da82fc4f827 | ab32d3d94088d74318fd774e880302395ff92a18 | refs/heads/master | 2020-07-08T13:27:29.650930 | 2019-08-22T01:07:20 | 2019-08-22T01:07:20 | 203,688,532 | 0 | 0 | null | null | null | null | WINDOWS-1252 | Java | false | false | 1,059 | java | package listaExerciciosMatriz;
import java.util.Scanner;
public class Exercicio02 {
public static void main(String[] args) {
Scanner ler = new Scanner(System.in);
int TAM = 3;
double[] produto = new double[TAM];
double[][] matriz = new double[TAM][TAM];
for (int i = 0; i < matriz.length; i++) {
System.out.print("Mercado "+i+" \n");
for (int j = 0; j < matriz.length; j++) {
System.out.print(j+"° item R$ ");
matriz[i][j] = ler.nextInt();
}
System.out.println();
}
for (int i = 0; i < matriz.length; i++) {
for (int j = 0; j < matriz.length; j++) {
produto[i] += matriz[j][i];
}
}
for (int i = 0; i < matriz.length; i++) {
System.out.print("Mercado "+i+" \n");
for (int j = 0; j < matriz.length; j++) {
System.out.println(j+" Item R$ "+matriz[i][j]+" ");
}
System.out.println();
}
for (int i = 0; i < produto.length; i++) {
System.out.println("Mercado"+i+" Soma "+produto[i]+" Media "+ produto[i]/TAM );
}
ler.close();
}
}
| [
"noreply@github.com"
] | JoseOscarJr.noreply@github.com |
1937c15da8ab4bf29d19980782cf501ee8ff711b | 3f81e55c0a8d79bf755a983b0cd4f9846ed1b9e6 | /src/main/java/com/puzhen/in28minutes/todo/rest/TodoRestController.java | e50b58a4ff313c9765c8953e5b1b3feb2482f282 | [] | no_license | Clifnich/Learning-SpringMVC | f1c0f95594245203b62c04de1fae02cc799ecc00 | 9f7447138fe3c8e1b08fc2adc0d8f1e3fccd6984 | refs/heads/master | 2021-04-26T23:58:05.995915 | 2018-03-13T07:54:37 | 2018-03-13T07:54:37 | 123,886,607 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 870 | java | package com.puzhen.in28minutes.todo.rest;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import com.puzhen.in28minutes.todo.Todo;
import com.puzhen.in28minutes.todo.TodoService;
@RestController
public class TodoRestController {
@Autowired
TodoService service;
@RequestMapping(value = "/todos", method = RequestMethod.GET)
public List<Todo> retrieveAllTodos() {
return service.retrieveTodos("in28Minutes");
}
@RequestMapping(value = "/todos/{id}", method = RequestMethod.GET)
public Todo retrieveTodo(@PathVariable int id) {
return service.retrieveTodo(id);
}
}
| [
"puzhenq@gmail.com"
] | puzhenq@gmail.com |
e533728da7460032b601456331a1da9e5310a2bb | e35ec8447606f8539bfc3f7b4129e0469a5ca430 | /TEST/src/org/usfirst/frc1719/TEST/subsystems/FishingRod.java | 64af630945cf54c24917ff4d5b2ed3f8e335cc5d | [] | no_license | FRCTeam1719/Robotbuilder-Testing | 6b85ec617b98d47c9dcba3cbb900363aad33c6eb | e548ab2982aba91e7742cc81ee3821dbf69222d3 | refs/heads/master | 2021-01-01T19:15:37.863357 | 2015-01-20T17:12:40 | 2015-01-20T17:12:40 | 28,785,088 | 1 | 0 | null | 2015-01-10T16:11:32 | 2015-01-04T20:27:08 | Java | UTF-8 | Java | false | false | 787 | java | package org.usfirst.frc1719.TEST.subsystems;
import org.usfirst.frc1719.TEST.Robot;
import org.usfirst.frc1719.TEST.RobotMap;
import edu.wpi.first.wpilibj.Relay;
import edu.wpi.first.wpilibj.command.Subsystem;
/**
*
*/
public class FishingRod extends Subsystem {
Relay extensionMotor = RobotMap.frExtensionMotor;
public void initDefaultCommand() {
// Set the default command for a subsystem here.
//setDefaultCommand(new MySpecialCommand());
}
public boolean getExtended() {
return Robot.sensors.getLimitSwitchSpringStringThing(1).get();
}
public boolean getRetracted() {
return Robot.sensors.getLimitSwitchSpringStringThing(2).get();
}
public Relay getExtMotor() {
return extensionMotor;
}
}
| [
"dgolddragon28@gmail.com"
] | dgolddragon28@gmail.com |
58d684915766ea30eecb3109f35fe667d5d89a14 | fde2b39c0cc6b118c1cc9bed6a81f7d5e6ab0fc2 | /src/main/java/co/com/bancolombia/diandalu/adapter/SubdominioAdapter.java | bb9126ea6bbfde474a339f69998945631972876a | [] | no_license | davidpolaniaac/diandalu | 24e9786b87d9b892e18ff2ed3b9b0c891a76952b | 11d6652b29b0783ba8180d04b2f73776b340fde8 | refs/heads/master | 2020-04-19T14:21:07.576428 | 2017-03-16T22:11:52 | 2017-03-16T22:11:52 | 168,242,119 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,862 | java | package co.com.bancolombia.diandalu.adapter;
import java.util.ArrayList;
import java.util.List;
import javax.inject.Inject;
import co.com.bancolombia.diandalu.dto.SubdominioDTO;
import co.com.bancolombia.diandalu.entidades.Subdominio;
public class SubdominioAdapter {
@Inject
private IntegranteAdapter integranteAdapter;
public Subdominio subdominioDtoToSubdominio(SubdominioDTO subdominioDTO){
Subdominio subdominio = new Subdominio();
subdominio.setIdSubdominio(subdominioDTO.getIdSubdominio());
subdominio.setNombre(subdominioDTO.getNombre());
subdominio.setDescripcion(subdominioDTO.getDescripcion());
subdominio.setIntegrantes(integranteAdapter.listIntegranteDtoToListIntegrante(subdominioDTO.getIntegrantes()));
return subdominio;
}
public SubdominioDTO subdominioToSubdominioDto(Subdominio subdominio){
SubdominioDTO subdominioDTO = new SubdominioDTO();
subdominioDTO.setIdSubdominio(subdominio.getIdSubdominio());
subdominioDTO.setNombre(subdominio.getNombre());
subdominioDTO.setDescripcion(subdominio.getDescripcion());
subdominioDTO.setIntegrantes(integranteAdapter.listIntegranteToListIntegranteDTO(subdominio.getIntegrantes()));
return subdominioDTO;
}
public List<SubdominioDTO> listSubdominioToListSubdominioDTO(List<Subdominio> listaSubdominio){
List<SubdominioDTO> listaSubdominioDTO = new ArrayList<>();
for (Subdominio subdominio : listaSubdominio) {
listaSubdominioDTO.add(subdominioToSubdominioDto(subdominio));
}
return listaSubdominioDTO;
}
public List<Subdominio> listSubdominioDtoToListSubdominio(List<SubdominioDTO> listaSubdominioDTO){
List<Subdominio> listaSubdominio= new ArrayList<>();
for (SubdominioDTO subdominioDTO : listaSubdominioDTO) {
listaSubdominio.add(subdominioDtoToSubdominio(subdominioDTO));
}
return listaSubdominio;
}
}
| [
"davidpolaniaac@users.noreply.github.com"
] | davidpolaniaac@users.noreply.github.com |
4ca813342003b6e8968189929ca597d44e1a20ff | 98587409b208acf68b79598ba4f48668e9af5b36 | /src/test/java/runners/Runner.java | f08ef36bcc68337fbde5dec415644d849a5aa5fa | [] | no_license | sengulali/CucumberProje | a04b4e320f536f0a8fd25af0166fd649e1c1285b | 9fb68ddd6d060e092bc2cc309fabec0058fd76ef | refs/heads/master | 2022-12-26T17:10:44.249754 | 2020-10-02T20:17:17 | 2020-10-02T20:17:17 | 298,388,086 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,029 | java | package runners;
import io.cucumber.junit.Cucumber;
import io.cucumber.junit.CucumberOptions;
import org.junit.runner.RunWith;
@RunWith(Cucumber.class)
@CucumberOptions(
plugin = {"html:target/default-cucumber-reports",
"json:target/json-reports/cucumber.json",
"junit:target/xml-report/cucumber.xml"}, // rapor oluşturmak için
features = "src/test/resources/features", // features klasörünün adresini
glue = "stepdefinitions", // testlerinin içerisinde olduğu paketin ismi
tags = "@birdenfazlaexample", // seçtiğiniz tag'a ait testler çalıştırılır.
dryRun = false // senaryoda oluşturduğumuz anca henüz test methodu yazılmamış
// olan adımların(steps) methodlarını consol'da görmek için "dryRun = true"
// şeklinde kullanıyoruz.
// dryRun = false olursa, testleri çalıştırır.
// dryRun = true olursa, eksik olan methodları bulur ve size öneride bulunur.
)
public class Runner {
} | [
"aslandamla46@gmail.com"
] | aslandamla46@gmail.com |
94bf10f9e492bbd05a4d5763c09e925ea7347953 | c5d77e3543ff56d524e81a33e3a409f85c20b08f | /week4/games_backlog_manager/app/src/main/java/cz/sucharda/gamesbacklogmanager/AddGameActivity.java | 6b1899b53b61b647727c017a402417d0bd7a43de | [] | no_license | Del-S/HvA-MAD | 3ff81ebfa46dae65570ab9b82022ce6a831620f5 | 712a163635cd0a85c8da5cd22867ed540d6868a0 | refs/heads/master | 2021-01-22T03:44:28.027594 | 2017-03-18T13:52:06 | 2017-03-18T13:52:06 | 81,454,933 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,947 | java | package cz.sucharda.gamesbacklogmanager;
import android.content.Context;
import android.graphics.Color;
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.text.SpannableStringBuilder;
import android.text.style.ForegroundColorSpan;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.EditText;
import android.widget.Spinner;
import android.widget.Toast;
import java.text.SimpleDateFormat;
import java.util.Date;
import cz.sucharda.gamesbacklogmanager.Model.DB.DBCRUD;
import cz.sucharda.gamesbacklogmanager.Model.Game;
public class AddGameActivity extends AppCompatActivity {
private EditText mTitle, mPlatform, mNotes;
private Spinner mStatus;
private static final String TIME_FORMAT = "dd/MM/yyyy";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_add_game);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
loadWidgets();
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
saveGame();
}
});
}
private void loadWidgets() {
mTitle = (EditText) findViewById(R.id.cag_title);
mPlatform = (EditText) findViewById(R.id.cag_platform);
mNotes = (EditText) findViewById(R.id.cag_notes);
mStatus = (Spinner) findViewById(R.id.cag_status);
// Create an ArrayAdapter using the string array and a default spinner layout
ArrayAdapter statusAdapter = ArrayAdapter.createFromResource(this,
R.array.game_status, android.R.layout.simple_spinner_item);
//Set the adapter to the spinner
mStatus.setAdapter(statusAdapter);
}
private void saveGame() {
String curDate = getSimpleCurrentDate();
String title = mTitle.getText().toString();
String platform = mPlatform.getText().toString();
String gameStatus = mStatus.getSelectedItem().toString();
String notes = mNotes.getText().toString();
if ((title != null) && title.isEmpty()) {
AddGameActivity.setErrorText(mTitle, getString(R.string.title_is_required));
showToast(getString(R.string.title_field_is_empty));
} else if ((platform != null) && platform.isEmpty()) {
AddGameActivity.setErrorText(mPlatform, getString(R.string.platform_is_required));
showToast(getString(R.string.platform_field_is_empty));
} else {
DBCRUD dbcrud = new DBCRUD(this);
Game game = new Game(-1, title, platform, curDate, gameStatus, notes);
dbcrud.saveGame(game);
showToast(getString(R.string.game_has_been_added));
finish();
}
}
private static String getSimpleCurrentDate() {
SimpleDateFormat format = new SimpleDateFormat(MainActivity.TIME_FORMAT);
Date today = new Date();
return format.format(today);
}
private void showToast(String message) {
Context context = getApplicationContext();
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, message, duration);
toast.show();
}
private static void setErrorText(EditText editText, String message) {
int RGB = Color.argb(255, 255, 0, 0);
ForegroundColorSpan fgcspan = new ForegroundColorSpan(RGB);
SpannableStringBuilder ssbuilder = new SpannableStringBuilder(message);
ssbuilder.setSpan(fgcspan, 0, message.length(), 0);
editText.setError(ssbuilder);
}
}
| [
"david@sucharda.cz"
] | david@sucharda.cz |
4dce7a5e7ef57387685ad754500ef4a47065cfe5 | 8e4ae270ccff8b6943ca4812526096efdc4a4223 | /src/main/java/org/zhangyc/test/thread/SynchronizedTest.java | f2b5633e73895739c583998b0f48c66487e1b5c7 | [] | no_license | zhangyicou/test | 59d81fa43b58bbce2a9b890897b1d099ee5414e4 | 50f5087dc89f8d4138110b1c35b33c6a433e7d2e | refs/heads/master | 2022-11-27T12:00:57.756057 | 2019-09-19T06:20:15 | 2019-09-19T06:20:15 | 46,244,420 | 0 | 0 | null | 2022-11-16T04:55:56 | 2015-11-16T01:23:20 | Java | UTF-8 | Java | false | false | 807 | java | package org.zhangyc.test.thread;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
/**
* @Author: yichu.zhang
* @Date: 2019-08-15 18:59
*/
public class SynchronizedTest {
public static void main(String[] args) {
SynchronizedInfo synchronizedInfo = new SynchronizedInfo();
int corePoolSize = Runtime.getRuntime().availableProcessors() * 2;
ThreadPoolExecutor poolExecutor = new ThreadPoolExecutor(corePoolSize, corePoolSize, 0, TimeUnit.SECONDS, new LinkedBlockingQueue<>(1000));
for(int i = 1; i < 10000; i++){
final Long userId = i % 2L;
final int index = i;
poolExecutor.submit(() -> synchronizedInfo.cal(userId, index));
}
}
}
| [
"yichu.zhang"
] | yichu.zhang |
74b077c5651bb0038e40b1230c3481d78268e328 | fe93732f9acde7501f6979b96cdc5f0e79d385b9 | /app/src/test/java/com/johanlund/stat_classes/RatingTimePointMakerTests.java | bf1ac55136d139e3599bb5867c049c33e1a3b830 | [] | no_license | lundjohan/IBSFoodAnalyzer | 49eeece9799ae6bc45b8007a17686ff62a6e7054 | fe22728f25f463a5c5438620ac5292195834eb75 | refs/heads/master | 2020-04-03T02:10:02.807140 | 2018-12-29T08:43:14 | 2018-12-29T08:43:14 | 154,948,780 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,146 | java | package com.johanlund.stat_classes;
import com.johanlund.stat_backend.makers.TimePointMaker;
import com.johanlund.stat_backend.point_classes.TimePoint;
import com.johanlund.stat_backend.stat_util.ScoreTime;
import org.junit.Test;
import org.threeten.bp.LocalDateTime;
import org.threeten.bp.Month;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import static junit.framework.Assert.assertEquals;
public class RatingTimePointMakerTests {
final static LocalDateTime newYear = LocalDateTime.of(2018, Month.JANUARY, 1, 0, 0);
/*
---------
*/
@Test
public void shouldReturnEmptyList() {
//empty ratings list
List<TimePoint> tps = TimePointMaker.doRatingTimePoints(new ArrayList<ScoreTime>(),
newYear, 1, 6);
assertEquals(0, tps.size());
}
//this should never happen and will not be tested
//public void testChunkEnd < firstRating(){
/*
>>>>>------>>>>>
*/
@Test
public void shouldReturnFirstAndThirdPartOnly() {
ScoreTime r1 = new ScoreTime(newYear, 6);
ScoreTime r2 = new ScoreTime(newYear.plusHours(3), 3);
ScoreTime r3 = new ScoreTime(newYear.plusHours(10), 6);
List<TimePoint> tps = TimePointMaker.doRatingTimePoints(Arrays.asList(r1, r2, r3),
newYear.plusHours(20), 6, 6);
assertEquals(2, tps.size());
assertEquals(newYear, tps.get(0).getStartTime());
assertEquals(newYear.plusHours(3), tps.get(0).getStopTime());
assertEquals(3, tps.get(0).getDurationInHours()); //check getDuration is working
assertEquals(newYear.plusHours(10), tps.get(1).getStartTime());
assertEquals(newYear.plusHours(20), tps.get(1).getStopTime());
}
/*
------>>>>>>------
*/
@Test
public void shouldReturnMiddlePartOnly() {
ScoreTime r1 = new ScoreTime(newYear, 6);
ScoreTime r2 = new ScoreTime(newYear.plusHours(3), 3);
ScoreTime r3 = new ScoreTime(newYear.plusHours(10), 6);
List<TimePoint> tps = TimePointMaker.doRatingTimePoints(Arrays.asList(r1, r2, r3),
newYear.plusHours(20), 1, 4);
assertEquals(1, tps.size());
assertEquals(newYear.plusHours(3), tps.get(0).getStartTime());
assertEquals(newYear.plusHours(10), tps.get(0).getStopTime());
}
/*
>>>>>>>>>>>>>------
*/
@Test
public void shouldReturnFirstAndSecondPartAsOne() {
ScoreTime r1 = new ScoreTime(newYear, 6);
ScoreTime r2 = new ScoreTime(newYear.plusHours(3), 5);
ScoreTime r3 = new ScoreTime(newYear.plusHours(10), 3);
List<TimePoint> tps = TimePointMaker.doRatingTimePoints(Arrays.asList(r1, r2, r3),
newYear.plusHours(20), 5, 6);
assertEquals(1, tps.size());
assertEquals(newYear, tps.get(0).getStartTime());
assertEquals(newYear.plusHours(10), tps.get(0).getStopTime());
}
/*
------>>>>>>>>>>>>>
*/
@Test
public void shouldReturnSecondAndThirdPartAsOne() {
ScoreTime r1 = new ScoreTime(newYear, 6);
ScoreTime r2 = new ScoreTime(newYear.plusHours(3), 5);
ScoreTime r3 = new ScoreTime(newYear.plusHours(10), 3);
List<TimePoint> tps = TimePointMaker.doRatingTimePoints(Arrays.asList(r1, r2, r3),
newYear.plusHours(20), 3, 5);
assertEquals(1, tps.size());
assertEquals(newYear.plusHours(3), tps.get(0).getStartTime());
assertEquals(newYear.plusHours(20), tps.get(0).getStopTime());
}
/*
>>>>>>>>>>>>>>>>>>>>
*/
@Test
public void shouldReturnEverythingAsOne() {
ScoreTime r1 = new ScoreTime(newYear, 6);
ScoreTime r2 = new ScoreTime(newYear.plusHours(3), 5);
ScoreTime r3 = new ScoreTime(newYear.plusHours(10), 3);
List<TimePoint> tps = TimePointMaker.doRatingTimePoints(Arrays.asList(r1, r2, r3),
newYear.plusHours(20), 3, 6);
assertEquals(1, tps.size());
assertEquals(newYear, tps.get(0).getStartTime());
assertEquals(newYear.plusHours(20), tps.get(0).getStopTime());
}
}
| [
"jolu1207@student.miun.se"
] | jolu1207@student.miun.se |
ac8d72c0ab6e0b60657a6a3251054f2af1eba52c | 13d6ae76d53a4d4ed87c2172a8f31ac810c51861 | /question 2 shopping .java | 1c4780d8365c1d5982a6bde969c2482d2fa32ca5 | [] | no_license | Amankumar-bit/JAVA-SOLVED-QUESTIONS | 1a3d3e3fbb2c86e7760a8995fc375507ecefe30c | 109ed73fbd8bbb046cecf46f5ef5049e2f45143d | refs/heads/master | 2020-07-10T06:40:19.391055 | 2019-08-24T18:31:44 | 2019-08-24T18:31:44 | 204,195,703 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,043 | java | package work1;
import java.util.Scanner;
public class shopping {
public static void main(String[] args) {
// TODO Auto-generated method stub
int a;
int u=0;
int h=0;
Scanner s = new Scanner(System.in);
int T = s.nextInt();
for(int l=1;l<=T;l++)
{
int M = s.nextInt();
int N = s.nextInt();
if(M>N)
{
a=M;
}
else
{
a=N;
}
u=0;
h=0;
for(int i=0;i<a;i++)
{
u=u+(2*i)+1;
h=h+(2*i)+2;
//System.out.println("u="+u);
//System.out.println("h="+h);
if((u<=M)&&(h<=N))
{
continue;
}
else if(u>M&&h<=N)
{
System.out.println("Harshit");
break;
}
else if(u>M&&h>N)
{
if(M>N)
{
System.out.println("Aayush");
break;
}
else
{
System.out.println("Harshit");
break;
}
}
else
{
System.out.println("Aayush");
break;
}
}
}
}
}
| [
"noreply@github.com"
] | Amankumar-bit.noreply@github.com |
68be5259b941a45d0e7de76ccc8620e17c5f5285 | 24e9d2be79c65b68b8c0ae1c3c6422b904226928 | /restful-web-services/src/main/java/com/sept/rest/webservices/restfulwebservices/user/User.java | 8cbe7bc07f557a6f6b6a0c4236020bb2fd9a89db | [] | no_license | DonneyDucka/Social-Media-App | 0d517bdd22da92f51362ee6b2cb8568f7b19c796 | 49722d26dcb9a15f9271bcb9f3f1362ab02d73bf | refs/heads/master | 2021-07-22T22:34:33.027038 | 2020-01-15T02:04:24 | 2020-01-15T02:04:24 | 233,974,754 | 0 | 0 | null | 2021-01-05T19:22:39 | 2020-01-15T01:51:11 | JavaScript | UTF-8 | Java | false | false | 2,004 | java | package com.sept.rest.webservices.restfulwebservices.user;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Lob;
import javax.persistence.Table;
import com.fasterxml.jackson.annotation.JsonIgnore;
// User entity definition for database storage
@Entity
@Table(name = "user") // specifies which table this will be stored.
public class User {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private long id;
@Column
private String username;
@Column
@JsonIgnore
private String password;
@Column
private String role;
@Column
private String email;
@Column
private String firstName;
@Column
private String lastName;
@Lob
@Column
private String profilePicture;
@Column
private String major;
@Lob
@Column
private String aboutMe;
public String getProfilePicture() {
return profilePicture;
}
public String getFirstName(){
return firstName;
}
public String getLastName(){
return lastName;
}
public String getMajor(){
return major;
}
public String getAboutMe(){
return aboutMe;
}
public void setProfilePicture(String profilePicture){
this.profilePicture = profilePicture;
}
public void setFirstName(String firstName){
this.firstName = firstName;
}
public void setLastName(String lastName){
this.lastName = lastName;
}
public void setMajor(String major){
this.major = major;
}
public void setAboutMe(String aboutMe){
this.aboutMe = aboutMe;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public void setRole(String role) {
this.role = role;
}
} | [
"noreply@github.com"
] | DonneyDucka.noreply@github.com |
13a5959b80609539824b994196125e13c1d3d25b | 47982a1f83b410610196b330ce15a89587462b78 | /src/main/java/br/edu/univas/si/lab6/bmi/controller/BMIController.java | af3446b421dfafad2e9da4723b41295a7f178848 | [] | no_license | GuilhermeSanches/2015-java-bmi | 82890e0652ff56488861bf0c438935994507cba6 | cf2522c82fa90b7b0292b7aed7cadbb11c0a4391 | refs/heads/master | 2020-12-30T09:58:21.851969 | 2015-09-16T00:55:07 | 2015-09-16T00:55:07 | 42,147,367 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,059 | java | package br.edu.univas.si.lab6.bmi.controller;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import br.edu.univas.si.lab6.bmi.service.BMIService;
/**
* Servlet implementation class BMIController
*/
public class BMIController extends HttpServlet {
private static final long serialVersionUID = 1L;
/**
* @see HttpServlet#HttpServlet()
*/
public BMIController() {
super();
// TODO Auto-generated constructor stub
}
/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse
* response)
*/
protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
Float weight = Float.valueOf(request.getParameter("weight"));
Float height = Float.valueOf(request.getParameter("height"));
Float bmiIndex = BMIService.getIndex(weight, height);
response.getWriter().append(bmiIndex.toString());
}
}
| [
"guilherme_1993pa@hotmail.com"
] | guilherme_1993pa@hotmail.com |
7cb470e4987f0570048597a658e7c6226a0d7e3c | 7e7bb2735dc4a464cfd2c333a44b458b33657489 | /ForumGier/src/gameforum/encje/Wpis.java | 456c6f12886ea2c3ec4ec9e9e72f27208b8a7372 | [] | no_license | bugi353/Training | 25fb24015cafe264b268e4a8133e8f2b2755c500 | 08b2ea0330260e2be14a51047135c8cc93b16c84 | refs/heads/master | 2020-03-16T18:20:33.955756 | 2018-05-22T17:03:00 | 2018-05-22T17:03:00 | 132,868,833 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,152 | java | package gameforum.encje;
import java.sql.Timestamp;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.Lob;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
@Entity
@Table(name="wpis")
public class Wpis {
@Id
@GeneratedValue
private int id;
private Timestamp data;
@Lob()
private String tresc;
@ManyToOne
@JoinColumn(name="uzytkownik")
private Uzytkownik uzytkownik;
@ManyToOne
@JoinColumn(name="temat")
private Temat temat;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public Timestamp getData() {
return data;
}
public void setData(Timestamp data) {
this.data = data;
}
public String getTresc() {
return tresc;
}
public void setTresc(String tresc) {
this.tresc = tresc;
}
public Uzytkownik getUzytkownik() {
return uzytkownik;
}
public void setUzytkownik(Uzytkownik uzytkownik) {
this.uzytkownik = uzytkownik;
}
public Temat getTemat() {
return temat;
}
public void setTemat(Temat temat) {
this.temat = temat;
}
}
| [
"32601187+bugi353@users.noreply.github.com"
] | 32601187+bugi353@users.noreply.github.com |
b6871e6dc2a7d1c5201bb183ea2a56b689e6c07d | 0615adaaf0c0c565cb8e88fa2b99dea0f9726d81 | /src/main/java/edu/csula/datascience/acquisition/TwitterCollector.java | a05da378131124304621c9103b7e74620788506e | [] | no_license | jsoni2/Twitter-Sentiment-Analysis | 42d67262098c71f60326e6121a4860ce50dc0abd | b8ecb01e64e878022ec5543c579726bbd013243b | refs/heads/master | 2021-05-31T20:16:42.073574 | 2016-04-25T06:00:06 | 2016-04-25T06:00:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,388 | java | package edu.csula.datascience.acquisition;
import com.mongodb.MongoClient;
import com.mongodb.client.MongoCollection;
import com.mongodb.client.MongoDatabase;
import org.bson.Document;
import twitter4j.Status;
/**
* An example of Collector implementation using Twitter4j with MongoDB Java driver
*/
public class TwitterCollector implements Collector<Status, Status> {
MongoClient mongoClient;
MongoDatabase database;
MongoCollection<Document> collection;
public TwitterCollector() {
// establish database connection to MongoDB
mongoClient = new MongoClient();
// select `Valkyrie-BigData` as database
database = mongoClient.getDatabase("Valkyrie-BigData");
// select collection by name `Tweetstreams`
collection = database.getCollection("Tweetstreams");
}
// MUNGEE implementation
@Override
public Boolean mungee(String src) {
if(src.equals(null))
{
return true;
}
else return false;
}
// Saving document in MongoDB
@Override
public void save(String username, String profilelocation, long tweetId, String post) {
Document document = new Document();
document.put("TweetId", tweetId);
document.put("Username", username);
document.put("ProfileLocation", profilelocation);
document.put("Content", post);
collection.insertOne(document);
}
}
| [
"rahulrapatwar@yahoo.com"
] | rahulrapatwar@yahoo.com |
dd50183d6d67280058d7cedbf043f3721a42fd17 | 420c9c712f2bf78a493760a8018ff6a2e8368bcf | /portal-template/src/main/java/org/itboys/portal/tools/FileManager.java | 8df7dddfb9396bdebc20111f8ad9217d526609b2 | [] | no_license | shadowdaw/ITboysFramework | 04315f11d9ecfa832020f28c3eeb68681eec9dc9 | d438fb2d300818b614a55896dfccc5aeba9d69ec | refs/heads/master | 2020-05-17T03:25:19.972045 | 2014-12-10T11:45:37 | 2014-12-10T11:45:37 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,710 | java | package org.itboys.portal.tools;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import org.apache.commons.io.IOUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* 文件管理器
* @author ChenJunhui
*
*/
public class FileManager {
private static Logger logger = LoggerFactory.getLogger(FileManager.class);
public static final String fileUploadTmpPath = "D:/images/pretty/temp";
public static final String fileUploadPath = "D:/images/pretty";
/**
* 删除临时文件 copy 到正式文件夹
* @param path
*/
public static void chageFile(String filepath){
InputStream in = null;
OutputStream out = null;
try{
File file = new File(fileUploadTmpPath+filepath);
if(file.exists()){
in = new FileInputStream(file);
String fileDir = fileUploadPath+filepath;
int idx = fileDir.lastIndexOf("/");
String dirPath = fileDir.substring(0,idx);
File f = new File(dirPath);
if(!f.exists()){
f.mkdir();
}
out = new FileOutputStream(fileDir) ;
IOUtils.copy(in,out);
file.delete();
}
}catch(Exception e){
logger.error("delete tmp file error path="+filepath,e);
}finally{
IOUtils.closeQuietly(in);
IOUtils.closeQuietly(out);
File file = new File(fileUploadTmpPath+filepath);
if(file.exists()){
file.delete();
}
}
}
/**
* 根据路径删除文件
* @param path
*/
public static void deleteFile(String path){
try{
File file = new File(fileUploadPath+path);
if(file.exists()){
file.delete();
}
}catch(Exception e){
logger.error("deleteFile error path="+path,e);
}
}
}
| [
"showcai1991@gmail.com"
] | showcai1991@gmail.com |
4c734bbd475a8476b72ba257188f76b1f8ed6059 | fcf223971914b92bb6c36f5200dca392c0fe0d77 | /ucd-msc/JavaProfProg/Part2/code/src/ie/ucd/cs/neilgrogan13204052/papers/nov12/Q25.java | f59c18fa09207d2d93b2b6d506af432f8822a1de | [] | no_license | dueyfinster/uni | f73615f047856bcb474f60f1d2239f6a7b5cdde0 | 7d937943aeb5686fdf80de829fdd8b51a342879c | refs/heads/master | 2023-01-18T20:24:35.487118 | 2020-11-19T13:33:07 | 2020-11-19T13:33:07 | 314,239,849 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 316 | java | package ie.ucd.cs.neilgrogan13204052.papers.nov12;
public class Q25 {
public static void main(String[] args) {
// code here
}
/**
* The HashSet class is used to directly implement which collection interface?
*
* A. Set
* B. SortedSet
* C. List
* D. Map
*/
}
| [
"neil@grogan.ie"
] | neil@grogan.ie |
6ee74629aed7a7c4eea4243265ca5e06e9cef109 | ea328f82affcd99ee5fb7d91ddbfbf5154973be7 | /mobile/src/main/java/com/alexstyl/specialdates/contact/DeviceContactFactory.java | 6ab40eae7b478ad291cf69c042611593d309d671 | [
"MIT"
] | permissive | relaxar/Memento-Calendar | e5a9005577bc5bbe0d8bd893ea3dc5d904258687 | 41d8434818d6a2b5f7537c83a12b95ae7e1293ad | refs/heads/master | 2020-06-27T19:11:13.908818 | 2016-11-07T19:15:16 | 2016-11-07T19:15:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,354 | java | package com.alexstyl.specialdates.contact;
import android.content.ContentResolver;
import android.database.Cursor;
import android.provider.ContactsContract;
import com.alexstyl.specialdates.DisplayName;
import com.alexstyl.specialdates.ErrorTracker;
import com.alexstyl.specialdates.Optional;
import com.alexstyl.specialdates.date.Date;
import com.alexstyl.specialdates.date.DateParseException;
import com.alexstyl.specialdates.util.DateParser;
class DeviceContactFactory {
private final ContentResolver resolver;
private final DateParser dateParser;
DeviceContactFactory(ContentResolver contentResolver, DateParser dateParser) {
resolver = contentResolver;
this.dateParser = dateParser;
}
public DeviceContact createContactWithId(long contactID) throws ContactNotFoundException {
String selection = ContactsContract.Data.CONTACT_ID + " = " + contactID;
String birthdayRow = "(" + ContactsContract.Data.MIMETYPE + " = ? AND " + ContactsContract.CommonDataKinds.Event.TYPE + "=" +
ContactsContract.CommonDataKinds.Event.TYPE_BIRTHDAY + ")";
String nameRow = ContactsContract.Data.MIMETYPE + " = ?";
String str = selection + " AND (" + birthdayRow + " OR " + nameRow + ")";
Cursor cursor = resolver.query(ContactsQuery.CONTENT_URI, ContactsQuery.PROJECTION, str, new String[]{
ContactsContract.CommonDataKinds.Event.CONTENT_ITEM_TYPE,
ContactsContract.CommonDataKinds.StructuredName.CONTENT_ITEM_TYPE
}, ContactsQuery.SORT_ORDER);
if (isInvalid(cursor)) {
throw new RuntimeException("Cursor was invalid");
}
String lookupKey = null;
DisplayName displayName = null;
Optional<Date> birthday = Optional.absent();
boolean found = false;
while (cursor.moveToNext()) {
if (ContactsQuery.isBirthdayRow(cursor)) {
birthday = getBirthdayFrom(cursor);
found = true;
}
if (displayName == null) {
displayName = getDisplayNameFrom(cursor);
lookupKey = getLookupKeyFrom(cursor);
found = true;
}
}
if (!found) {
throw new ContactNotFoundException(contactID);
}
DeviceContact contact = new DeviceContact(contactID, displayName, lookupKey, birthday);
cursor.close();
return contact;
}
private boolean isInvalid(Cursor cursor) {
return cursor == null || cursor.isClosed();
}
private String getLookupKeyFrom(Cursor cursor) {
return cursor.getString(ContactsQuery.LOOKUP_KEY);
}
private DisplayName getDisplayNameFrom(Cursor cursor) {
return DisplayName.from(cursor.getString(ContactsQuery.DISPLAY_NAME));
}
private Optional<Date> getBirthdayFrom(Cursor cursor) {
String birthdayRaw = cursor.getString(ContactsQuery.BIRTHDAY);
try {
Date birthday = getBirthdayFrom(birthdayRaw);
return new Optional<>(birthday);
} catch (DateParseException e) {
ErrorTracker.track(e);
return Optional.absent();
}
}
private Date getBirthdayFrom(String birthdayRaw) throws DateParseException {
return dateParser.parse(birthdayRaw);
}
}
| [
"alexanderstyl@gmail.com"
] | alexanderstyl@gmail.com |
72b93b39f47964353f167dceb92f6f5b9f6d43b0 | 915304e493de3f8e4165c420c4842b75a7198386 | /javaee/persistence/tom-domain-appengine/src/main/java/org/sgodden/tom/jpa/EntityManagerFactory.java | 5d91e70a06631c3f4d7ae2e6cc3315c4eb10811a | [] | no_license | sgodden/sandbox | 5beb6e7499355a936f872c2b17a3186b45871698 | d9e26e39e7885f1589d715a315bf0e6f24a1c5a4 | refs/heads/master | 2020-04-15T05:01:33.558280 | 2013-09-23T18:13:14 | 2013-09-23T18:13:14 | 964,513 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 238 | java | package org.sgodden.tom.jpa;
import javax.persistence.EntityManager;
public interface EntityManagerFactory {
public EntityManager create();
public javax.persistence.EntityManagerFactory getJpaEntityManagerFactory();
}
| [
"G106AHE@ICSLA560.ics.express.tnt"
] | G106AHE@ICSLA560.ics.express.tnt |
ac2491a179e7827549d7b22262c2c668cb9fa834 | ed3cb95dcc590e98d09117ea0b4768df18e8f99e | /project_1_3/src/j/i/Calc_1_3_984.java | f11e9cfb5a405b2598d1bac7c4cc6dc28aae4e01 | [] | no_license | chalstrick/bigRepo1 | ac7fd5785d475b3c38f1328e370ba9a85a751cff | dad1852eef66fcec200df10083959c674fdcc55d | refs/heads/master | 2016-08-11T17:59:16.079541 | 2015-12-18T14:26:49 | 2015-12-18T14:26:49 | 48,244,030 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 128 | java | package j.i;
public class Calc_1_3_984 {
/** @return the sum of a and b */
public int add(int a, int b) {
return a+b;
}
}
| [
"christian.halstrick@sap.com"
] | christian.halstrick@sap.com |
bfef2d87cfbc8b2adcace4c88b6861941cd6500e | 9a9b4e8747ac943871b6128be6651fa40cb77180 | /jtests/ua/gradsoft/termwaretests/systems/ListSystemTest.java | 6a54f42c5024d58e5aa31d24fea06def8e7943e4 | [] | no_license | rssh/termware2 | 8fa72f07f8f7874547bab9242276c15b29f7e0e4 | 95e6b312aa868758eeb1d5096db87049adbf0009 | refs/heads/master | 2021-01-23T08:38:32.274836 | 2012-09-20T05:29:37 | 2012-09-20T05:29:37 | 2,424,293 | 2 | 1 | null | null | null | null | UTF-8 | Java | false | false | 3,541 | java | /*
* ListSystemTest.java
*
* Copyright (c) 2006 GradSoft Ukraine
* All Rights Reserved
*/
package ua.gradsoft.termwaretests.systems;
import junit.framework.TestCase;
import ua.gradsoft.termware.Term;
import ua.gradsoft.termware.TermSystem;
import ua.gradsoft.termware.TermWare;
import ua.gradsoft.termware.TermWareException;
/**
*
* @author Ruslan Shevchenko
*/
public class ListSystemTest extends TestCase
{
protected void setUp()
{ TermWare.getInstance().init(); }
public void testResolution() throws TermWareException
{
TermSystem listSystem=TermWare.getInstance().resolveSystem("List");
assertTrue(listSystem!=null);
}
/**
* append(NIL,NIL) -> NIL
*/
public void testAppend1() throws TermWareException
{
TermSystem listSystem=TermWare.getInstance().resolveSystem("List");
Term l = TermWare.getInstance().getTermFactory().createNil();
Term e = TermWare.getInstance().getTermFactory().createNil();
Term t = TermWare.getInstance().getTermFactory().createTerm("append",e,l);
t=listSystem.reduce(t);
assertTrue(t.isNil());
}
/**
* append(NIL,q) -> cons(q,NIL)
*/
public void testAppend2() throws TermWareException
{
TermSystem listSystem=TermWare.getInstance().resolveSystem("List");
Term l = TermWare.getInstance().getTermFactory().createNil();
Term e = TermWare.getInstance().getTermFactory().createAtom("q");
Term t = TermWare.getInstance().getTermFactory().createTerm("append",e,l);
t=listSystem.reduce(t);
assertTrue(t.getName().equals("cons"));
Term q=t.getSubtermAt(0);
assertTrue(q.getName().equals("q"));
Term n=t.getSubtermAt(1);
assertTrue(n.isNil());
}
/**
* append(cons(a,NIL),q) -> cons(a,cons(q,NIL))
*/
public void testAppend3() throws TermWareException
{
TermSystem listSystem=TermWare.getInstance().resolveSystem("List");
Term l = TermWare.getInstance().getTermFactory().createParsedTerm("cons(a,NIL)");
Term e = TermWare.getInstance().getTermFactory().createAtom("q");
Term t = TermWare.getInstance().getTermFactory().createTerm("append",e,l);
t=listSystem.reduce(t);
assertTrue(t.getName().equals("cons"));
Term a=t.getSubtermAt(0);
assertTrue(a.getName().equals("a"));
t=t.getSubtermAt(1);
assertTrue(t.getName().equals("cons"));
Term q=t.getSubtermAt(0);
assertTrue(q.getName().equals("q"));
Term n=t.getSubtermAt(1);
assertTrue(n.isNil());
}
/**
* append(q,q) must be unchanged
*/
public void testAppend4() throws TermWareException
{
TermSystem listSystem=TermWare.getInstance().resolveSystem("List");
Term l = TermWare.getInstance().getTermFactory().createAtom("q");
Term e = TermWare.getInstance().getTermFactory().createAtom("q");
Term t = TermWare.getInstance().getTermFactory().createTerm("append",e,l);
t=listSystem.reduce(t);
assertTrue(t.getName().equals("append"));
}
public void testLength1() throws TermWareException
{
TermSystem listSystem=TermWare.getInstance().resolveSystem("List");
Term l = TermWare.getInstance().getTermFactory().createNil();
Term t = TermWare.getInstance().getTermFactory().createTerm("length",l);
t=listSystem.reduce(t);
assertTrue(t.getInt()==0);
}
}
| [
"rssh@e6263924-d73c-0410-abf9-b8ad5fbdd136"
] | rssh@e6263924-d73c-0410-abf9-b8ad5fbdd136 |
a9e1c4a1f61bd30abf5b89dd6628aff100dd0ce3 | 674a97b2ca43065b2843e8c5aff76d8f867300bc | /src/Presentation/JPanelCadre.java | a48c01f2943a5b77504006360db2f18fa644e09a | [] | no_license | Guemache/ImagesViz | 6df68d08b20e1d3197c9c5121c795d19c3d43431 | 0c25db8f3f4d202a2e687faf3e8e2d225c4b5e0a | refs/heads/master | 2021-01-01T20:35:40.661233 | 2014-02-04T14:07:03 | 2014-02-04T14:07:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 338 | java | package Presentation;
import java.awt.Color;
import javax.swing.BorderFactory;
import javax.swing.JPanel;
@SuppressWarnings("serial")
public class JPanelCadre extends JPanel {
public JPanelCadre(){
this.setBorder(BorderFactory.createTitledBorder(BorderFactory.createLineBorder(Color.BLUE, 1), "Vignettes"));
}
}
| [
"larbi.guemache@gmail.com"
] | larbi.guemache@gmail.com |
74df47ce690bb8abf0060376652eabaff5e3294b | 45c9aec65591ae8f0b492e17308c7740f49d16c0 | /src/com/_13_POO/_10_CrudDAOGenerics/Main.java | 19b322183a55e310e670f79d014c591774de2dcd | [] | no_license | DanielFernandoYepezVelez/Fundamentos-Java | 6f4524f2db1b7854e6173650de9352feba9496ac | dca0fe505e30e7f2cbb59c447de71ba95d7461a1 | refs/heads/main | 2023-05-16T08:12:20.047399 | 2023-05-11T02:43:37 | 2023-05-11T02:43:37 | 328,040,970 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,361 | java | package com._13_POO._10_CrudDAOGenerics;
import com._13_POO._10_CrudDAOGenerics.Repositorio.List.ClienteList;
import com._13_POO._10_CrudDAOGenerics.Repositorio.Direccion;
import com._13_POO._10_CrudDAOGenerics.Repositorio.IAllInterfaces;
import com._13_POO._10_CrudDAOGenerics.Repositorio.IOrdenable;
import com._13_POO._10_CrudDAOGenerics.Repositorio.List.ProductoList;
import com._13_POO._10_CrudDAOGenerics.modelo.Cliente;
import com._13_POO._10_CrudDAOGenerics.modelo.Producto;
import java.util.List;
public class Main {
public static void main(String[] args) {
IAllInterfaces<Cliente> repositorio = new ClienteList();
repositorio.crear(new Cliente("Daniel", "Yepez"));
repositorio.crear(new Cliente("Fernando", "Vèlez"));
repositorio.crear(new Cliente("Luci", "Martinez"));
repositorio.crear(new Cliente("Andres", "Gùzman"));
System.out.println("===== CREAR CLIENTES =====");
List<Cliente> clientes = repositorio.listar();
//clientes.forEach(c -> System.out.println(c));
clientes.forEach(System.out::println);
System.out.println("\n===== PAGINACIÒN DE CLIENTES =====");
List<Cliente> paginable = repositorio.listar(1,3);
paginable.forEach(System.out::println);
System.out.println("\n===== ORDENAR CLIENTES ASC =====");
List<Cliente> clientesOrdenAsc = repositorio.listar("nombre", Direccion.ASC);
List<Cliente> clientesOrdenDesc = ((IOrdenable) repositorio).listar("nombre", Direccion.DESC);
for (Cliente cli: clientesOrdenAsc) {
System.out.println(cli);
}
System.out.println("\n===== ORDENAR CLIENTES DESC =====");
for (Cliente cli: clientesOrdenDesc) {
System.out.println(cli);
}
System.out.println("\n===== ACTUALIZAR CLIENTE =====");
Cliente updateClient = new Cliente("Nuevo Fernando", "Nuevo Vélez");
updateClient.setId(2);
repositorio.editar(updateClient);
System.out.println(updateClient);
System.out.println("-----------------");
repositorio.listar("nombre", Direccion.ASC).forEach(System.out::println);
System.out.println("\n===== ELIMINAR CLIENTE =====");
repositorio.eliminar(2);
repositorio.listar().forEach(System.out::println);
System.out.println("-----------");
System.out.println("Total Registros: " + repositorio.total());
System.out.println("\n========================= PRODUCTOS ===============================");
IAllInterfaces<Producto> repo = new ProductoList();
repo.crear(new Producto("Mesa", 50.53));
repo.crear(new Producto("Silla", 12.4));
repo.crear(new Producto("Lampara", 34.56));
repo.crear(new Producto("NoteBook", 400.89));
System.out.println("\n===== CREAR PRODUCTOS =====");
List<Producto> productos = repo.listar();
//clientes.forEach(c -> System.out.println(c));
productos.forEach(System.out::println);
System.out.println("\n===== PAGINACIÒN DE PRODUCTOS =====");
List<Producto> paginable2 = repo.listar(1,3);
paginable2.forEach(System.out::println);
System.out.println("\n===== ORDENAR PRODUCTOS ASC =====");
List<Producto> productosOrdenAsc = repo.listar("descripcion", Direccion.ASC);
List<Producto> productosOrdenDesc = ((IOrdenable) repo).listar("descripcion", Direccion.DESC);
for (Producto pro: productosOrdenAsc) {
System.out.println(pro);
}
System.out.println("\n===== ORDENAR PRODUCTOS DESC =====");
for (Producto pro: productosOrdenDesc) {
System.out.println(pro);
}
System.out.println("\n===== ACTUALIZAR PRODUCTOS =====");
Producto updateProducto = new Producto("Nuevo Producto", 23.45);
updateProducto.setId(7);
repo.editar(updateProducto);
System.out.println(updateProducto);
System.out.println("-----------------");
repo.listar("nombre", Direccion.ASC).forEach(System.out::println);
System.out.println("\n===== ELIMINAR PRODUCTO =====");
repo.eliminar(9);
repo.listar().forEach(System.out::println);
System.out.println("-----------");
System.out.println("Total Registros: " + repo.total());
}
}
| [
"danipez.02@gmail.com"
] | danipez.02@gmail.com |
8c2c81aa2d0bf069c38cbb948e0f48a056dc7c91 | 0b657fbc76dcbb2544b01e8dbbe83e30289c142f | /403/20210620.java | f063f6287046eddf6c52dadf13bfee9f3cce9916 | [] | no_license | MaCoredroid/leetcode | 68cbd343ea4a99067a497d9c034e5ab1ca3525e6 | 58080590f3a4f4d1f8082474a3ec344b87b18b4d | refs/heads/master | 2022-03-11T07:17:45.908007 | 2022-02-08T01:41:24 | 2022-02-08T01:41:24 | 227,243,204 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 685 | java | class Solution {
public boolean canCross(int[] stones) {
int n = stones.length;
boolean[][] dp = new boolean[n][n];
dp[0][0] = true;
for (int i = 1; i < n; ++i) {
if (stones[i] - stones[i - 1] > i) {
return false;
}
}
for(int i=1;i<n;i++){
for(int j=i-1;j>=0;j--){
int k=stones[i]-stones[j];
if(k>j+1){
break;
}
dp[i][k]=dp[j][k-1]||dp[j][k]||dp[j][k+1];
if(i==n-1&&dp[i][k]){
return true;
}
}
}
return false;
}
} | [
"coredroid0401@gmail.com"
] | coredroid0401@gmail.com |
044610576ff120650130f63fa60a34388a725a6f | fee773dcb1a932315c9ca25ff2ca58587eb5c8fa | /demo4-statemachine/src/main/java/com/example/statemachine/AppController.java | fec7a9fa9eb3c62480457d3ef84a1697c96ec434 | [] | no_license | domahidizoltan/presentation-this-is-not-a-pipe | c3cc687151eb44384dda32871fe679bf41e7f948 | 720bbc8ff7a9e5edebb19247cf4766fcc8b540ac | refs/heads/master | 2020-04-17T05:31:18.654564 | 2019-03-16T05:55:14 | 2019-03-16T05:55:14 | 166,283,117 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,514 | java | package com.example.statemachine;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.http.ResponseEntity;
import org.springframework.mail.javamail.JavaMailSender;
import org.springframework.mail.javamail.MimeMessageHelper;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.HttpClientErrorException;
import org.springframework.web.client.RestTemplate;
import javax.mail.MessagingException;
import javax.mail.internet.MimeMessage;
import java.time.Instant;
@RestController
public class AppController {
@Value("${remote-api-url}")
private String url;
private RestTemplate restTemplate;
private JavaMailSender mailSender;
AppController(RestTemplate restTemplate, JavaMailSender mailSender) {
this.restTemplate = restTemplate;
this.mailSender = mailSender;
}
@PostMapping("/start/{id}")
public ResponseEntity<String> start(@PathVariable("id") Integer id, @RequestBody String body) {
String startUrl = url + "/start/" + id;
return exchangeRequest(startUrl, body);
}
@PostMapping("/stop/{id}")
public ResponseEntity<String> stop(@PathVariable("id") Integer id) {
String stopUrl = url + "/stop/" + id;
return exchangeRequest(stopUrl, null);
}
@PostMapping("/send-mail/{id}")
public void sendMail(@PathVariable("id") Integer id) throws MessagingException {
System.out.println("Sending mail to " + id);
MimeMessage message = mailSender.createMimeMessage();
MimeMessageHelper helper = new MimeMessageHelper(message);
helper.setFrom("machine@mail.com");
helper.setTo(id + "@mail.com");
helper.setText(id + " stopped at " + Instant.now());
mailSender.send(message);
}
private ResponseEntity<String> exchangeRequest(String url, String body) {
try {
ResponseEntity<String> response = restTemplate.postForEntity(url, body, String.class);
return ResponseEntity
.status(response.getStatusCode())
.body(response.getBody());
} catch (HttpClientErrorException ex) {
return ResponseEntity
.status(ex.getStatusCode())
.body(ex.getResponseBodyAsString());
}
}
}
| [
"domahidizoltan@gmail.com"
] | domahidizoltan@gmail.com |
4c6c923ea86acde7d5dfd8279e7835a499cf21df | 59d074e8f3119b1048a30b20101e721c686b2183 | /app/swagger/generated/src/main/java/com/marvel/auth/ApiKeyAuth.java | 2985853175ad4c17676c4263c18610a3cba5c154 | [] | no_license | alenz316/rxMarvel | a803a58d74b210b7eae6e7272e108a0d05f8f2ad | 651e325d482a902116955b5cb9fbd1417490220c | refs/heads/master | 2021-01-01T19:18:19.890599 | 2017-07-27T21:26:50 | 2017-07-27T21:26:50 | 98,562,426 | 0 | 0 | null | 2017-07-27T21:26:51 | 2017-07-27T17:13:27 | Java | UTF-8 | Java | false | false | 1,853 | java | package com.marvel.auth;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import okhttp3.Interceptor;
import okhttp3.Request;
import okhttp3.Response;
public class ApiKeyAuth implements Interceptor {
private final String location;
private final String paramName;
private String apiKey;
public ApiKeyAuth(String location, String paramName) {
this.location = location;
this.paramName = paramName;
}
public String getLocation() {
return location;
}
public String getParamName() {
return paramName;
}
public String getApiKey() {
return apiKey;
}
public void setApiKey(String apiKey) {
this.apiKey = apiKey;
}
@Override
public Response intercept(Chain chain) throws IOException {
String paramValue;
Request request = chain.request();
if ("query".equals(location)) {
String newQuery = request.url().uri().getQuery();
paramValue = paramName + "=" + apiKey;
if (newQuery == null) {
newQuery = paramValue;
} else {
newQuery += "&" + paramValue;
}
URI newUri;
try {
newUri = new URI(request.url().uri().getScheme(), request.url().uri().getAuthority(),
request.url().uri().getPath(), newQuery, request.url().uri().getFragment());
} catch (URISyntaxException e) {
throw new IOException(e);
}
request = request.newBuilder().url(newUri.toURL()).build();
} else if ("header".equals(location)) {
request = request.newBuilder()
.addHeader(paramName, apiKey)
.build();
}
return chain.proceed(request);
}
}
| [
"alenz316@gmail.com"
] | alenz316@gmail.com |
6ce55d58cffdca7a364fc4b3443cf3ed1a8ed74e | ff026f7189dc7127c99bddf2067b67f2aeba9363 | /erian/src/main/java/com/rambo/mysql/service/city/CityService.java | f42405e1097ece6e9edf61a997548a9f522d7abd | [] | no_license | freerambo/rambo | 41e383c7b94d078de884f44af38387f317e5ba49 | 4e7d710c9a01e0ecb7e38480c4041cd902c022ae | refs/heads/master | 2022-12-20T20:13:37.196253 | 2020-09-12T10:42:13 | 2020-09-12T10:42:13 | 25,810,606 | 1 | 2 | null | 2022-12-16T03:23:01 | 2014-10-27T08:53:33 | JavaScript | UTF-8 | Java | false | false | 2,797 | java | /*******************************************************************************
* Copyright (c) 2005, 2014 springside.github.io
*
* Licensed under the Apache License, Version 2.0 (the "License");
*******************************************************************************/
package com.rambo.mysql.service.city;
import java.util.List;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Sort;
import org.springframework.data.domain.Sort.Direction;
import org.springframework.data.jpa.domain.Specification;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;
import com.rambo.mysql.entity.City;
import com.rambo.mysql.repository.CityDao;
import org.springside.modules.persistence.DynamicSpecifications;
import org.springside.modules.persistence.SearchFilter;
import org.springside.modules.persistence.SearchFilter.Operator;
// Spring Bean的标识.
@Component
// 类中所有public函数都纳入事务管理的标识.
@Transactional(value="mysqlEM")
public class CityService {
private CityDao cityDao;
public City getCity(Long id) {
return cityDao.findOne(id);
}
public void saveCity(City entity) {
cityDao.save(entity);
}
public void deleteCity(Long id) {
cityDao.delete(id);
}
public List<City> getAllCity() {
return (List<City>) cityDao.findAll();
}
public Page<City> getUserCity(Long userId, Map<String, Object> searchParams, int pageNumber, int pageSize,
String sortType) {
PageRequest pageRequest = buildPageRequest(pageNumber, pageSize, sortType);
Specification<City> spec = buildSpecification(userId, searchParams);
return cityDao.findAll(spec, pageRequest);
}
/**
* 创建分页请求.
*/
private PageRequest buildPageRequest(int pageNumber, int pagzSize, String sortType) {
Sort sort = null;
if ("auto".equals(sortType)) {
sort = new Sort(Direction.DESC, "id");
} else if ("title".equals(sortType)) {
sort = new Sort(Direction.ASC, "title");
}
return new PageRequest(pageNumber - 1, pagzSize, sort);
}
/**
* 创建动态查询条件组合.
*/
private Specification<City> buildSpecification(Long userId, Map<String, Object> searchParams) {
Map<String, SearchFilter> filters = SearchFilter.parse(searchParams);
filters.put("user.id", new SearchFilter("user.id", Operator.EQ, userId));
Specification<City> spec = DynamicSpecifications.bySearchFilter(filters.values(), City.class);
return spec;
}
@Autowired
public void setCityDao(CityDao cityDao) {
this.cityDao = cityDao;
}
}
| [
"zhuyb@ntu.edu.sg"
] | zhuyb@ntu.edu.sg |
190cc115f7dc154bc8a871397f3b041f4182844b | 67dc6eda198c39f4a1f0dbaa5ca5da3592753db5 | /hors-impl/src/main/java/org/hors/impl/resolver/pattern/RequestPatterns.java | 7a317aaaa35ba6d2dfd76c15edab40529a5d389a | [] | no_license | alexsmirnov/hors | 0c807c4a2e8947d3403ce95b50e1b00985ab03a6 | 497946442d816b524aeb1710aaf2eb7404b6cb00 | refs/heads/master | 2016-09-06T05:52:41.482707 | 2011-07-15T23:52:00 | 2011-07-15T23:52:00 | 1,456,535 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 315 | java | package org.hors.impl.resolver.pattern;
public class RequestPatterns {
private RequestPatterns() {
// static methods only
}
public static RequestPattern pathPattern(String path){
return new RequestPathPattern(path);
}
public static RequestPattern anyRequest(){
return AnyPathPattern.INSTANCE;
}
}
| [
"alsmirnnov@gmail.com"
] | alsmirnnov@gmail.com |
dea6d2056a93737ad9efe6fb1e4db25d6603ad6f | 6de7be4b1482a29c703e7d5a60fb86638f6955ae | /src/main/java/com/github/AllenDuke/redisTest/RedisWithReentrantLock.java | d5f0dbdae2c30f4ead44a1ce8257defe406407a7 | [] | no_license | AllenDuke/Core | 0d228d5ddc611a52844b0a1ccefb15562b2bad66 | c7e17ce53095bdfb5e281ae9c122b62fe68afe74 | refs/heads/master | 2022-06-23T17:58:09.141440 | 2021-07-26T02:37:39 | 2021-07-26T02:37:39 | 248,463,495 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,046 | java | package com.github.AllenDuke.redisTest;
import redis.clients.jedis.Jedis;
import redis.clients.jedis.params.SetParams;
import java.util.HashMap;
import java.util.Map;
/**
* @author 杜科
* @description
* @contact AllenDuke@163.com
* @date 2020/8/23
*/
public class RedisWithReentrantLock {
/* 记录当前线程持有的锁及其进入次数 */
private ThreadLocal<Map<String,Integer>> lockers = new ThreadLocal<>();
private Jedis jedis;
public RedisWithReentrantLock(Jedis jedis) {
this.jedis = jedis;
}
private boolean lock0(String key) {
/**
* 为了避免进程在 setnx 和 expire 之间服务器突然挂掉了, expire 得不到执行,造成死锁,所以有了将这二者合二为一的命令。
*/
SetParams params = new SetParams();
params.nx();
params.ex(5);
return jedis.set(key, "", params) != null;
}
private void unlock0(String key) {
jedis.del(key);
}
private Map<String, Integer> currentLockers() {
Map<String, Integer> refs = lockers.get();
if (refs != null) {
return refs;
}
lockers.set(new HashMap<>());
return lockers.get();
}
public boolean lock(String key) {
Map refs = currentLockers();
Integer refCnt = (Integer) refs.get(key);
if (refCnt != null) { /* 锁重入 */
refs.put(key, refCnt + 1);
return true;
}
boolean ok = this.lock0(key);
if (!ok) {
return false;
}
refs.put(key, 1);
return true;
}
public boolean unlock(String key) {
Map refs = currentLockers();
if(!refs.containsKey(key)) return false; /* 当前线程并非锁的持有者 */
Integer refCnt = (Integer) refs.get(key);
refCnt -= 1;
if (refCnt > 0) {
refs.put(key, refCnt);
} else {
refs.remove(key);
this.unlock0(key);
}
return true;
}
}
| [
"1264310546@qq.com"
] | 1264310546@qq.com |
7ac8e590c17f4aa420d6a75d2c6c8d8e6b879824 | fbfcb88a9bfdc2868077a7035a74c98dc3eb25a0 | /src/combiz/domain/workflow/Wfinstance.java | 6b895d1b176853dd0a9e7b5d3d889383e34b74d5 | [] | no_license | jackwysxw/combiz | 817af9399251ff286d2a4c1d525953e8f66c8e06 | 9a84f3b4e8866a5030462eafa683bf5d7ad4bf40 | refs/heads/master | 2020-04-25T14:46:23.301900 | 2016-09-26T07:04:16 | 2016-09-26T07:04:16 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | Java | false | false | 3,872 | java | package combiz.domain.workflow;
import combiz.system.IBOBaseObject;
public class Wfinstance extends IBOBaseObject
implements java.io.Serializable
{
private Long id;
//Fields
private java.lang.String active;
private java.lang.Long curnodeid;
private java.lang.String description;
private java.lang.Long ownerid;
private java.lang.String ownertable;
private java.lang.String startor;
private java.util.Date starttime;
private java.lang.String wfname;
private java.lang.Long wfrevision;
/** default constructor */
public Wfinstance(){}
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
//Property accessors
/**
* ×Ö¶ÎACTIVE
* @return java.lang.String
*/
public java.lang.String getActive() {
if(this.active==null || this.active.length()<=0)
return null;
else
return this.active;
}
/**
* ×Ö¶ÎACTIVE
* @return java.lang.String
*/
public void setActive(java.lang.String active) {
this.active = active;
}
/**
* µ±Ç°½ÚµãID
* @return java.lang.Long
*/
public java.lang.Long getCurnodeid() {
return this.curnodeid;
}
/**
* µ±Ç°½ÚµãID
* @return java.lang.Long
*/
public void setCurnodeid(java.lang.Long curnodeid) {
this.curnodeid = curnodeid;
}
/**
* Á÷³ÌʵÀýÃèÊö
* @return java.lang.String
*/
public java.lang.String getDescription() {
if(this.description==null || this.description.length()<=0)
return null;
else
return this.description;
}
/**
* Á÷³ÌʵÀýÃèÊö
* @return java.lang.String
*/
public void setDescription(java.lang.String description) {
this.description = description;
}
/**
* ×Ö¶ÎOWNERID
* @return java.lang.Long
*/
public java.lang.Long getOwnerid() {
return this.ownerid;
}
/**
* ×Ö¶ÎOWNERID
* @return java.lang.Long
*/
public void setOwnerid(java.lang.Long ownerid) {
this.ownerid = ownerid;
}
/**
* ×Ö¶ÎOWNERTABLE
* @return java.lang.String
*/
public java.lang.String getOwnertable() {
if(this.ownertable==null || this.ownertable.length()<=0)
return null;
else
return this.ownertable;
}
/**
* ×Ö¶ÎOWNERTABLE
* @return java.lang.String
*/
public void setOwnertable(java.lang.String ownertable) {
this.ownertable = ownertable;
}
/**
* ×Ö¶ÎSTARTOR
* @return java.lang.String
*/
public java.lang.String getStartor() {
if(this.startor==null || this.startor.length()<=0)
return null;
else
return this.startor;
}
/**
* ×Ö¶ÎSTARTOR
* @return java.lang.String
*/
public void setStartor(java.lang.String startor) {
this.startor = startor;
}
/**
* ×Ö¶ÎSTARTTIME
* @return java.util.Date
*/
public java.util.Date getStarttime() {
return this.starttime;
}
/**
* ×Ö¶ÎSTARTTIME
* @return java.util.Date
*/
public void setStarttime(java.util.Date starttime) {
this.starttime = starttime;
}
/**
* ×Ö¶ÎWFNAME
* @return java.lang.String
*/
public java.lang.String getWfname() {
if(this.wfname==null || this.wfname.length()<=0)
return null;
else
return this.wfname;
}
/**
* ×Ö¶ÎWFNAME
* @return java.lang.String
*/
public void setWfname(java.lang.String wfname) {
this.wfname = wfname;
}
/**
* ×Ö¶ÎWFREVISION
* @return java.lang.Long
*/
public java.lang.Long getWfrevision() {
return this.wfrevision;
}
/**
* ×Ö¶ÎWFREVISION
* @return java.lang.Long
*/
public void setWfrevision(java.lang.Long wfrevision) {
this.wfrevision = wfrevision;
}
} | [
"876301469@qq.com"
] | 876301469@qq.com |
49f5f6f5a0fce8c3b49586ce479a141693af46e9 | c89da0067f3de3ff509f4a56b21b55cccca349f9 | /team_AK/src/main/java/internet_store/user_interface/administrator_menu/create_product_menu/add_product_menu/AddProductPrice.java | c648b3155de2c50f1e39cf9202d80f74544c0526 | [] | no_license | Marxjava/java2_thursday_online_2020_autumn | 7827628d40c10a00a14991791f4b01f2eaddc3f2 | f86709f6b8b8d9f020a6495a348528885efc366d | refs/heads/master | 2023-02-04T02:42:56.611839 | 2020-12-25T19:33:27 | 2020-12-25T19:33:27 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 859 | java | package internet_store.user_interface.administrator_menu.create_product_menu.add_product_menu;
import lombok.Getter;
import java.math.BigDecimal;
import java.util.InputMismatchException;
import java.util.Scanner;
public class AddProductPrice {
@Getter
private BigDecimal userProductPriceInput = new BigDecimal("0.00");
public void showMenuProductPrice() {
boolean errorInput;
System.out.println("Enter product price:");
do {
try {
userProductPriceInput = new Scanner(System.in).nextBigDecimal();
errorInput = false;
} catch (InputMismatchException e) {
System.out.println("Wrong input. Try again.");
System.out.println("Enter product price:");
errorInput = true;
}
} while (errorInput);
}
}
| [
"aleksejs.kodins@gmail.com"
] | aleksejs.kodins@gmail.com |
944d4e7fe06efd63a8600ac57632983f79fe4ebf | 107de17ce96a7e7a6daf68e6320c969c311022db | /Eproject/src/test/java/com/niit/Eproject/BillingTest.java | 407e53b6c744766918b14dfe2616013a2567aa45 | [] | no_license | harshavm1/EPROJECT | 0417ad3e3fadb9cae81cd13b7749f1728c714573 | dc9e9ad4a463a3c82b0becf7e1fcfe6600983def | refs/heads/master | 2022-12-24T08:09:08.782615 | 2019-06-12T06:03:42 | 2019-06-12T06:03:42 | 191,486,862 | 0 | 0 | null | 2022-12-16T09:42:42 | 2019-06-12T02:59:55 | Java | UTF-8 | Java | false | false | 1,543 | java | package com.niit.Eproject;
import java.util.List;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import com.niit.Eproject.Dao.BillingDao;
import com.niit.Eproject.Model.Billing;
public class BillingTest {
public static void main(String args[])
{
AnnotationConfigApplicationContext ctx= new AnnotationConfigApplicationContext();
ctx.scan("com.niit.*");
ctx.refresh();
Billing bill=(Billing)ctx.getBean("billing");
BillingDao billingDao=(BillingDao)ctx.getBean("billingDao");
bill.setBillId("b101");
bill.setAddress("india");
bill.setBillName("rohit");
bill.setEmail("rohit#@gmail.com");
if(billingDao.saveorupdatebilling(bill)==true)
{
System.out.println("bill is saved");
}
else
{
System.out.println("bill not saved");
}
bill.setBillId("b102");
bill.setAddress("afg");
bill.setBillName("mohit");
bill.setEmail("mohit#@gmail.com");
if(billingDao.saveorupdatebilling(bill)==true)
{
System.out.println("bill is saved");
}
else
{
System.out.println("bill not saved");
}
bill=billingDao.getBilling("b101");
if(bill==null)
{
System.out.println("bill not exists");
}
else
{
System.out.println("billid:"+bill.getBillId());
System.out.println("billaddress:"+bill.getAddress());
}
List<Billing> billingList=billingDao.billingList();
for(Billing b:billingList)
{
System.out.println("billid:"+b.getBillId());
System.out.println("billaddress:"+b.getAddress());
}
}
}
| [
"harshav53@gmail.com"
] | harshav53@gmail.com |
8d8d235f816ee5b91bb5463ac0f42c93c0a6ecd3 | a2881dfb3246eebda78c695ede7f5aa0b426aec9 | /1.7.10 obfuscated/a/ads.java | 49e46af4fda321fe97366eb346ebefa342eca672 | [] | no_license | Jckf/mc-dev | ca03c1907b4b33c94a7bcb7a2067e3963bbf05d2 | 128dae1fe7e2b7772d89dcf130a49210bfd06aa3 | refs/heads/master | 2016-09-05T11:14:19.324416 | 2014-10-01T00:53:05 | 2014-10-01T00:53:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 940 | java |
public class ads extends adb {
public ads() {
this.a(abt.d);
}
public boolean a(add var1, yz var2, ahb var3, int var4, int var5, int var6, int var7, float var8, float var9, float var10) {
if(var3.a(var4, var5, var6) != ajn.aC) {
if(var7 == 0) {
--var5;
}
if(var7 == 1) {
++var5;
}
if(var7 == 2) {
--var6;
}
if(var7 == 3) {
++var6;
}
if(var7 == 4) {
--var4;
}
if(var7 == 5) {
++var4;
}
if(!var3.c(var4, var5, var6)) {
return false;
}
}
if(!var2.a(var4, var5, var6, var7, var1)) {
return false;
} else {
if(ajn.af.c(var3, var4, var5, var6)) {
--var1.b;
var3.b(var4, var5, var6, (aji)ajn.af);
}
return true;
}
}
}
| [
"jckf@jckf.no"
] | jckf@jckf.no |
fc040058cce9d848b141f1c4388dfad93d9bebc2 | e1c1a89dd5386e8dba954e133af61b6e281598d6 | /src/main/java/rentcar/services/AddCustomerDataService.java | 5c4c30e1a66dddaa02d0c0264d744fa2e61b5247 | [] | no_license | tudorbutiri/RentCarApp | 6f392a8ceac81880f93f6c0737cca551ab343321 | b1147162f9afb8ba4ba421cad4beda2b925ea06a | refs/heads/master | 2020-06-28T03:43:30.826947 | 2017-06-13T22:29:15 | 2017-06-13T22:29:15 | 94,258,902 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 706 | java | package rentcar.services;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import rentcar.dao.CustomerAddressDataDAO;
import rentcar.dao.CustomerDataDAO;
import rentcar.data.CustomerAddressData;
import rentcar.data.CustomerData;
import rentcar.dto.CustomerDataDTO;
@Service
public class AddCustomerDataService {
@Autowired
CustomerDataDAO customerDataDAO;
public void addCustomerData(CustomerData customerData)
{
customerDataDAO.customerDataDAOSave(customerData);
}
public CustomerData getCustomerAfterEmail(String email)
{
return customerDataDAO.customerDataDAOSelectAfterEmail(email);
}
}
| [
"tudor.butiri@gmail.com"
] | tudor.butiri@gmail.com |
28bfd057ed46da409007d6de8e5cbf6cde9dff14 | c7da13b3c0b8b53bc627c0d7b1555fedd64c18b8 | /mooncore-Security/src/main/java/mooncoreSecurity/mooncore_Security/App.java | dfd9f34d6dcf55738c7d2b66c7aa727dc512874c | [] | no_license | mushtaque87/SecurityTesting | 7fffe53a98b3a087658721dfdf20b7d146f75e06 | 85d590ce50795834d8e1f6c74151fb28086f8c85 | refs/heads/master | 2021-08-18T23:31:02.466166 | 2017-11-24T06:30:29 | 2017-11-24T06:30:29 | 107,225,714 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 828 | java | package mooncoreSecurity.mooncore_Security;
import java.io.IOException;
import java.net.URL;
import java.util.HashMap;
import org.testng.annotations.Test;
import com.philips.request.RequestClass;
import com.philips.restservices.GenericObjectMapper;
import com.philips.restservices.JsonPayloadCreator;
import com.philips.restservices.MdsLoginResponse;
import com.philips.restservices.ResponseObject;
import com.philips.restservices.RestService;
import com.philips.request.RequestClass;
/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
}
// @Test
// public void login() throws Exception
// {
// RequestClass.getInstance().loginHHGW("shabana1@mailinator.com", "Philips@1");
// }
//
}
| [
"mushtaque.ahmed@philips.com"
] | mushtaque.ahmed@philips.com |
081d15d51282fa35ef29a4b0b461b843c975ad9d | 6a39e4dcb9059b04656da1cad216443c167da58d | /src/com/tsy/algorithm/chapter01/StaticSETofInts.java | 7ca4f530524d5047ce07b2567068c6708dba7ae2 | [] | no_license | fonias333666/algorithm | f29902fee2fdbec4d824c4573d10188f2b72ee50 | b2dcb8d53f8b68ed77684f8c872011e12a812613 | refs/heads/master | 2020-12-11T09:15:27.873225 | 2013-06-25T14:58:13 | 2013-06-25T14:58:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,089 | java | package com.tsy.algorithm.chapter01;
/*************************************************************************
* Compilation: javac StaticSetOfInts.java
*
* Data type to store a set of integers.
*
*************************************************************************/
import java.util.Arrays;
public class StaticSETofInts {
private int[] a;
public StaticSETofInts(int[] keys) {
// defensive copy
a = new int[keys.length];
for (int i = 0; i < keys.length; i++)
a[i] = keys[i];
Arrays.sort(a);
// probably should check that no duplicates
}
public boolean contains(int key) {
return rank(key) != -1;
}
// Binary search.
public int rank(int key) {
int lo = 0;
int hi = a.length - 1;
while (lo <= hi) {
// Key is in a[lo..hi] or not present.
int mid = lo + (hi - lo) / 2;
if (key < a[mid]) hi = mid - 1;
else if (key > a[mid]) lo = mid + 1;
else return mid;
}
return -1;
}
}
| [
"taolin@taolins-MacBook-Pro.local"
] | taolin@taolins-MacBook-Pro.local |
b8ce2f08dfd16f533727fc30f2fb3cdb1c15aea1 | f3c58dccbc55101d6302634852aac8994874d3d3 | /src/main/java/org/elasql/sql/Key.java | 8c51e45a90d85c1cd2c86cc05255ef1d56c624e8 | [
"Apache-2.0"
] | permissive | elasql/elasql | 1dda91e044a19e8e6e881d44549b5cb99e40fe41 | f92e6393437f01b04e8e682a1467c90b9550a7ce | refs/heads/master | 2023-02-09T08:20:58.300962 | 2022-10-13T18:09:51 | 2022-10-13T18:09:51 | 61,373,806 | 25 | 13 | Apache-2.0 | 2022-10-13T18:09:52 | 2016-06-17T13:00:38 | Java | UTF-8 | Java | false | false | 5,469 | java | package org.elasql.sql;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Iterator;
import java.util.List;
import org.vanilladb.core.sql.Constant;
import org.vanilladb.core.sql.Type;
import org.vanilladb.core.sql.predicate.ConstantExpression;
import org.vanilladb.core.sql.predicate.Expression;
import org.vanilladb.core.sql.predicate.FieldNameExpression;
import org.vanilladb.core.sql.predicate.Predicate;
import org.vanilladb.core.sql.predicate.Term;
import org.vanilladb.core.storage.index.SearchKey;
public abstract class Key implements Serializable {
private static final long serialVersionUID = 20200819002L;
private String tableName;
private String[] fields;
// We serialize this field manually
// because a Constant is non-serializable.
private transient Constant[] values;
private int hashCode;
protected Key(String tableName, String fld, Constant val) {
this.tableName = tableName;
this.fields = new String[] { fld };
this.values = new Constant[] { val };
genHashCode();
}
protected Key(String tableName, String[] fields, Constant[] values) {
if (fields.length != values.length)
throw new IllegalArgumentException();
this.tableName = tableName;
this.fields = fields;
this.values = values;
genHashCode();
}
protected Key(Key otherKey) {
this.tableName = otherKey.tableName;
this.fields = Arrays.copyOf(otherKey.fields, otherKey.fields.length);
this.values = Arrays.copyOf(otherKey.values, otherKey.values.length);
genHashCode();
}
public String getTableName() {
return tableName;
}
public boolean containsField(String fld) {
for (int i = 0; i < fields.length; i++) {
if (fields[i].equals(fld))
return true;
}
return false;
}
public int getNumOfFlds() {
return fields.length;
}
public String getField(int index) {
return fields[index];
}
public Constant getVal(int index) {
return values[index];
}
public Constant getVal(String fld) {
for (int i = 0; i < fields.length; i++) {
if (fields[i].equals(fld))
return values[i];
}
return null;
}
public Predicate toPredicate() {
Predicate pred = new Predicate();
for (int i = 0; i < fields.length; i++) {
Expression k = new FieldNameExpression(fields[i]);
Expression v = new ConstantExpression(values[i]);
pred.conjunctWith(new Term(k, Term.OP_EQ, v));
}
return pred;
}
public SearchKey toSearchKey(List<String> indexedFields) {
Constant[] vals = new Constant[indexedFields.size()];
Iterator<String> fldNameIter = indexedFields.iterator();
for (int i = 0; i < vals.length; i++) {
String fldName = fldNameIter.next();
vals[i] = getVal(fldName);
if (vals[i] == null)
throw new NullPointerException("there is no value for '" + fldName + "'");
}
return new SearchKey(vals);
}
// @Override
// public int compareTo(RecordKey rk) {
// if (tableName.compareTo("item") == 0) {
// if ((int)getVal("i_id").asJavaVal() < (int)rk.getVal("i_id").asJavaVal())
// return -1;
// else if ((int)getVal("i_id").asJavaVal() > (int)rk.getVal("i_id").asJavaVal())
// return 1;
// }
//// else if (tableName.compareTo("ycsb") == 0) {
//// if ((String)getKeyVal("i_id").asJavaVal() < (int)rk.getKeyVal("i_id").asJavaVal())
//// return -1;
//// else if ((int)getKeyVal("i_id").asJavaVal() > (int)rk.getKeyVal("i_id").asJavaVal())
//// return 1;
//// }
// return 0;
// }
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
sb.append(tableName);
sb.append(": ");
for (int i = 0; i < fields.length; i++) {
sb.append(fields[i]);
sb.append(" -> ");
sb.append(values[i]);
sb.append(", ");
}
sb.delete(sb.length() - 2, sb.length());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (obj == this)
return true;
if (obj == null)
return false;
if (obj.getClass() != PrimaryKey.class)
return false;
Key k = (Key) obj;
return k.tableName.equals(this.tableName) && Arrays.equals(k.fields, this.fields)
&& Arrays.equals(k.values, this.values);
}
@Override
public int hashCode() {
return hashCode;
}
private void genHashCode() {
hashCode = 17;
hashCode = 31 * hashCode + tableName.hashCode();
for (int i = 0; i < fields.length; i++) {
hashCode = 31 * hashCode + fields[i].hashCode();
hashCode = 31 * hashCode + values[i].hashCode();
}
}
private void writeObject(ObjectOutputStream out) throws IOException {
out.defaultWriteObject();
out.writeInt(values.length);
// Write out all elements in the proper order
for (int i = 0; i < values.length; i++) {
Constant val = values[i];
byte[] bytes = val.asBytes();
out.writeInt(val.getType().getSqlType());
out.writeInt(val.getType().getArgument());
out.writeInt(bytes.length);
out.write(bytes);
}
}
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
in.defaultReadObject();
int numberOfVals = in.readInt();
this.values = new Constant[numberOfVals];
// Read in all values
for (int i = 0; i < numberOfVals; i++) {
int sqlType = in.readInt();
int argument = in.readInt();
byte[] bytes = new byte[in.readInt()];
in.read(bytes);
Constant val = Constant.newInstance(Type.newInstance(sqlType, argument), bytes);
values[i] = val;
}
}
}
| [
"sam123456777@gmail.com"
] | sam123456777@gmail.com |
789b2fe422f4efba863226c9276d611397d472cf | 34aa72626229f6976469fb2600ff1d5aa15f73ed | /src/main/java/com/wenlan/ems_vue/EmsVueApplication.java | 1c81a1e393c15dc4f01fb9d1618d0b41a1dbb8b9 | [] | no_license | ActiveSoul8231/ems_vue | 9638169107d4ea580171d2b977a8b3397b6d5663 | 50fb5fdf0f53da901c27defe2c6a5281cc40a2a6 | refs/heads/master | 2022-12-08T02:40:46.106718 | 2020-09-02T14:59:51 | 2020-09-02T14:59:51 | 292,292,951 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 323 | java | package com.wenlan.ems_vue;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class EmsVueApplication {
public static void main(String[] args) {
SpringApplication.run(EmsVueApplication.class, args);
}
}
| [
"1846038231@qq.com"
] | 1846038231@qq.com |
bcd27f2a3cf859f2255cad0dd7baef090fd7ad5e | b51900525a318a6a79843c062d7b8d9be275f6c4 | /string/string_replace.java | d809a9229d4b222b4c008add50ede9f573ca16a4 | [] | no_license | XuqiuyeLi/LeetCode-Coding-Problems | 5a8bd969181e7b5b688724f68673a8417711e49c | 36bc9f2a3bfe466b3c6c1c7f172e19e0e2e36dd2 | refs/heads/master | 2020-04-17T18:28:19.981162 | 2019-03-30T02:17:00 | 2019-03-30T02:17:00 | 166,827,951 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,479 | java | /*
* Given an original string input, and two strings source and target
* replace all occurrences of source input with target
*
*/
public class Solution {
public String replace(String input, String source, String target) {
char[] array = input.toCharArray();
if(source.length() >= target.length()){
return replaceShorter(array, source, target);
}
else{
return replaceLonger(array, source, target);
}
}
private String replaceShorter(char[] array, String source, String target){
int slow = 0, fast = 0;
// two pointers from left to right
while(fast < array.length){
if(fast <= array.length - source.length() && equalString(array, fast, source)){
copySubstring(array, slow, target);
slow += target.length();
fast += source.length();
}
else{
array[slow++] = array[fast++];
}
}
return new String(array, 0, slow);
}
private String replaceLonger(char[] array, String source, String target){
// all the matching end positions for source in array
ArrayList<Integer> allMatches = findMatches(array, source);
char[] result = new char[array.length + allMatches.size() * (target.length() - source.length())];
int slow = result.length - 1;
int fast = array.length - 1;
int lastIndex = allMatches.size() - 1;
while(fast >= 0){
if(lastIndex >= 0 && allMatches.get(lastIndex) == fast){
copySubstring(result, slow - target.length() + 1, target);
fast -= source.length();
slow -= target.length();
lastIndex--;
}
else{
result[slow--] = array[fast--];
}
}
return new String(result);
}
private ArrayList<Integer> findMatches(char[] array, String source){
ArrayList<Integer> matches = new ArrayList<Integer>();
int i = 0;
while(i <= array.length - source.length()){
if(equalString(array, i, source)){
matches.add(i + source.length() - 1);
i += source.length();
}
else{
i++;
}
}
return matches;
}
private boolean equalString(char[] array, int index, String source){
for(int i = 0; i < source.length(); i++){
if(array[i + index] != source.charAt(i)){
return false;
}
}
return true;
}
private void copySubstring(char[] array, int index, String target){
for(int i = 0; i < target.length(); i++){
array[i + index] = target.charAt(i);
}
}
}
| [
"xl1029@nyu.edu"
] | xl1029@nyu.edu |
c07e4e89b52575a496e9e6311010edb3aa6e161c | 8fd68e2e2dc9a0a9d23d0727d6856e9d4ee865a9 | /tinkerforge/examples/Bricklet/Current25/ExampleThreshold.java | e74bf7a74410752aaa5bac9a204aee49d022323a | [] | no_license | LzyPanda/PollerBot | b0fc8a7327a9714f496341b73eb9e1a05041ed6d | 2dbcac29cc38922748ed17260bd805dc05871092 | refs/heads/master | 2021-01-13T02:19:20.870595 | 2014-06-18T10:50:03 | 2014-06-18T10:50:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,352 | java | import com.tinkerforge.BrickletCurrent25;
import com.tinkerforge.IPConnection;
public class ExampleThreshold {
private static final String host = "localhost";
private static final int port = 4223;
private static final String UID = "ABC"; // Change to your UID
// Note: To make the example code cleaner we do not handle exceptions. Exceptions you
// might normally want to catch are described in the documentation
public static void main(String args[]) throws Exception {
IPConnection ipcon = new IPConnection(); // Create IP connection
BrickletCurrent25 c25 = new BrickletCurrent25(UID, ipcon); // Create device object
ipcon.connect(host, port); // Connect to brickd
// Don't use device before ipcon is connected
// Get threshold callbacks with a debounce time of 10 seconds (10000ms)
c25.setDebouncePeriod(10000);
// Configure threshold for "greater than 5A" (unit is mA)
c25.setCurrentCallbackThreshold('>', (short)(5*1000), (short)0);
// Add and implement current reached listener (called if current is greater than 5A)
c25.addCurrentReachedListener(new BrickletCurrent25.CurrentReachedListener() {
public void currentReached(short current) {
System.out.println("Current is greater than 5A: " + current/1000.0);
}
});
System.console().readLine("Press key to exit\n");
ipcon.disconnect();
}
}
| [
"barz.seb@gmail.com"
] | barz.seb@gmail.com |
2b6785b6250389a99b90a94c7599013c0d72306a | 038f6e30c0177ef6f002ba9a60340ed0f87a2b96 | /springboot(领域设计)/src/main/java/com/xakj/util/Constant.java | 17f12315b199edb6ccbde9995710de3bae071d3b | [] | no_license | GitHubyc/Generating | b68053229c32e0a6ae455b232c1109fed02683c3 | 3039fcbae13d870ad8f6ed0eff42814fc1faa615 | refs/heads/master | 2020-03-15T04:13:15.569323 | 2018-05-03T08:03:42 | 2018-05-03T08:03:42 | 131,960,221 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,448 | java | package com.xakj.util;
/**
* 项目常量 施先锋
*/
public final class Constant {
// 配置数据源
public final static String URL = "jdbc:oracle:thin:@192.168.1.18:1521/orcl";
public final static String USER = "userdb";
public final static String PASSWORD = "userdb";
public final static String DRIVER = "oracle.jdbc.driver.OracleDriver";
// 项目包文件路径
public final static String packageName = "com.xakj";
//public final static String CONTROLLER_PACKAGE = packageName + ".api";// controller所在包
public final static String CONTROLLER_PACKAGE = packageName + ".controller";// controller所在包
public final static String ENTITY_PACKAGE = packageName + ".model";// entity所在包
public final static String DTO_PACKAGE = packageName + ".service.dto";// dto所在包
public final static String DAO_PACKAGE = packageName + ".dao";// dao所在包
public final static String DAO_IMPL_PACKAGE = DAO_PACKAGE + ".impl";// daoImpl所在包
public final static String SERVICE_PACKAGE = packageName + ".service";// Service所在包
public final static String SERVICE_IMPL_PACKAGE = SERVICE_PACKAGE + ".impl";// ServiceImpl所在包
public final static String UTIL_PACKAGE = packageName + ".util";// entity所在包
// public final static String CONTROLLER_PACKAGE = packageName + ".test";// controller所在包
// public final static String ENTITY_PACKAGE = packageName + ".test";// entity所在包
// public final static String DTO_PACKAGE = packageName + ".test";// dto所在包
// public final static String DAO_PACKAGE = packageName + ".test";// dao所在包
// public final static String DAO_IMPL_PACKAGE = DAO_PACKAGE + ".test";// daoImpl所在包
// public final static String SERVICE_PACKAGE = packageName + ".test";// Service所在包
// public final static String SERVICE_IMPL_PACKAGE = SERVICE_PACKAGE + ".test";// ServiceImpl所在包
// public final static String UTIL_PACKAGE = packageName + ".test";// entity所在包
// 磁盘文件根路径D:\intellij-work\new\build-service
public final static String projectPath = "D://idea//service//layer-tagging-service";
//public final static String projectPath = "C://Users//Administrator//Desktop//code//unit-service";
//public final static String projectPath = "D://intellij-work//fire-self-inspection-service";
public final static String javaPath = projectPath + "//src//main//java//";
public final static String PACKAGE_PATH_ENTITY = javaPath
+ packageConvertPath(ENTITY_PACKAGE);// 生成的Entity存放路径
public final static String PACKAGE_PATH_DTO = javaPath
+ packageConvertPath(DTO_PACKAGE);// 生成的Entity存放路径
public final static String PACKAGE_PATH_DAO = javaPath
+ packageConvertPath(DAO_PACKAGE);
public final static String PACKAGE_PATH_DAO_IMPL = javaPath
+ packageConvertPath(DAO_IMPL_PACKAGE);
public final static String PACKAGE_PATH_SERVICE = javaPath
+ packageConvertPath(SERVICE_PACKAGE);// 生成的Service存放路径
public final static String PACKAGE_PATH_SERVICE_IMPL = javaPath
+ packageConvertPath(SERVICE_IMPL_PACKAGE);// 生成的Service实现存放路径
public final static String PACKAGE_PATH_CONTROLLER = javaPath
+ packageConvertPath(CONTROLLER_PACKAGE);// 生成的Controller存放路径
public static String packageConvertPath(String packageName) {
return String.format("/%s/",
packageName.contains(".") ? packageName.replaceAll("\\.", "/")
: packageName);
}
}
| [
"326831169@qq.com"
] | 326831169@qq.com |
0af35aa92de5ecdc63d588a54e681e3a4625d236 | 2cf4bcb991e8aee12cf8c94ebbd8f4048974578e | /gestionCinemas/src/main/java/emsi/jebji/entities/TicketProj.java | 40a7377a75026488fa0ec4229c74b39ae1033f58 | [] | no_license | jebjiayoub/Micro-Services-Backend | fd14591dce0125b7ad18042b16505eef739094f0 | 080ee724b0b693b75b2586ae915eddd748aa65fa | refs/heads/main | 2023-02-10T16:05:50.319859 | 2020-12-31T02:17:58 | 2020-12-31T02:17:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 370 | java | package emsi.jebji.entities;
import org.springframework.data.rest.core.config.Projection; //personaliser data rest
@Projection(name = "t1", types = Ticket.class)
public interface TicketProj {
public Long getId();
public String getNomClient();
public double getPrix();
public Integer getCodePayement();
public boolean getReserve();
public Place getPlace();
}
| [
"jebji.ayoub@emsi-edu.ma"
] | jebji.ayoub@emsi-edu.ma |
e2a559ea6b2a0573bd42cc885a7ef229e8066952 | 3bcfd84e932597f91a9a19d6decff02bca416c6c | /zshop_service/src/main/java/com/zte/zshop/service/SysuserService.java | 267d3310e49c8e308032ce615caddd6b8f980763 | [] | no_license | calvinlinardy/ZTE-Shop | d8f69df79a1ae65166e82da46d709a4e66851b79 | 39f1ea87949c5d9b2660cac5945ed9c0a2fa6c3a | refs/heads/main | 2023-01-19T14:10:41.081377 | 2020-11-24T11:30:08 | 2020-11-24T11:30:08 | 315,611,190 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 853 | java | package com.zte.zshop.service;
import com.zte.zshop.common.exception.SysuserNotExistException;
import com.zte.zshop.entity.Sysuser;
import com.zte.zshop.params.SysuserParam;
import com.zte.zshop.vo.SysuserVo;
import java.util.List;
/**
* Author:helloboy
* Date:2020-11-04 15:52
* Description:<描述>
*/
public interface SysuserService
{
public List<Sysuser> findAll();
//根据id查找记录
public Sysuser findById(Integer id);
//新增
public void addSysuser(SysuserVo sysuserVo);
//修改
public void modifySysuser(SysuserVo sysuserVo);
//更新状态
public void modifyStatus(Integer id);
public boolean checkName(String loginName);
public List<Sysuser> findByParams(SysuserParam sysuserParam);
public Sysuser login(String loginName, String password) throws SysuserNotExistException;
}
| [
"calvin.linardy@yahoo.com"
] | calvin.linardy@yahoo.com |
8af9c0706a2d7cc7849970527ad19325ef37c105 | d7f53349c634481eb0f08001af36398c650551dc | /src/InMemory/IRemoteCompute.java | 084e498b326849e1e3135e6d32a875eb3d5efd4b | [] | no_license | HenryGeorgist/RMI | 5617c720164dd94ac4ecb60e6ce1286b6daa23da | 672b52b6eb2fd5bdb8e2b6a89d9b532e0182baa3 | refs/heads/master | 2020-05-20T16:59:58.536351 | 2019-05-08T20:41:39 | 2019-05-08T20:41:39 | 185,677,342 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 455 | 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 InMemory;
import java.rmi.Remote;
import java.rmi.RemoteException;
/**
*
* @author Q0HECWPL
*/
public interface IRemoteCompute extends Remote {
public String name() throws RemoteException;
public double compute(double input) throws RemoteException;
}
| [
"willyplehman@gmail.com"
] | willyplehman@gmail.com |
c7a571d22e5f62141da5b80827a52ae588c61c26 | 0413a62c4ec3d07074ed9dc25a89308621ab2002 | /springboot-aws-lambda/src/main/java/com/springimplant/awslambda/SpringbootAwsLambdaApplication.java | e8f5cb447a171de91cc5e2fc1bf157492064dd33 | [] | no_license | gauravmatta/springmvc | 38ae8288732bfc4c3f86ba796919ce72658f884f | d6cf16bbf95c4d4cf4934d13c30520e707b63b96 | refs/heads/master | 2023-08-30T21:33:23.310678 | 2023-08-23T04:34:30 | 2023-08-23T04:34:30 | 134,175,952 | 0 | 0 | null | 2023-07-07T15:09:32 | 2018-05-20T18:28:27 | Java | UTF-8 | Java | false | false | 1,599 | java | package com.springimplant.awslambda;
import java.util.List;
import java.util.function.Function;
import java.util.function.Supplier;
import java.util.stream.Collectors;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import com.springimplant.awslambda.domain.Order;
import com.springimplant.awslambda.domain.Student;
import com.springimplant.awslambda.repository.OrderDao;
import com.springimplant.awslambda.repository.StudentRepository;
@SpringBootApplication
public class SpringbootAwsLambdaApplication {
@Autowired
private OrderDao orderDao;
@Autowired
private StudentRepository studentRepository;
@Bean
public MyConsumer myConsumerBean() {
return new MyConsumer();
}
@Bean
public Supplier<List<Student>> studentSupplier(){
return ()->studentRepository.list();
}
@Bean
public Function<String, List<Student>> findByNameFunction() {
return (input) -> studentRepository.list().stream().filter(student -> student.getNameString().equals(input)).collect(Collectors.toList());
}
@Bean
public Supplier<List<Order>> orders(){
return ()->orderDao.buildOrders();
}
@Bean
public Function<String, List<Order>> orderByName(){
return (input) -> orderDao.buildOrders().stream().filter(order->order.getNameString().equals(input)).collect(Collectors.toList());
}
public static void main(String[] args) {
SpringApplication.run(SpringbootAwsLambdaApplication.class, args);
}
}
| [
"Gaurav@host.docker.internal"
] | Gaurav@host.docker.internal |
35614ad38f891cc6f2be50e397ac0e99b1e8065d | 6a368d85f3273123d491726c5b6726b00e8dbf88 | /user-session/user-session-common/src/main/java/cn/scau/springcloud/util/JwtUtils.java | 639a2428914017c32ef0e711d5c6df746d9ace86 | [] | no_license | VinceLint/Food-Cooperation | 2d67cda8eb1b10c16b1e21e00bf139cd3c23602d | c2986b47ae443e1b09fdb33c299463a45dd31942 | refs/heads/master | 2022-11-24T22:20:35.978228 | 2020-09-25T06:20:15 | 2020-09-25T06:20:15 | 240,856,542 | 1 | 0 | null | 2022-11-16T12:47:02 | 2020-02-16T08:25:29 | Java | UTF-8 | Java | false | false | 1,168 | java | package cn.scau.springcloud.util;
import io.jsonwebtoken.Claims;
import io.jsonwebtoken.Jwts;
import io.jsonwebtoken.SignatureAlgorithm;
import java.util.Date;
import java.util.HashMap;
public class JwtUtils {
public static final String TOKEN_HEADER = "Scau";
public static final String TOKEN_PREFIX = "Bearer ";
//过期时间,7天
private static final long JWT_EXPIRATION = 604800L;
//秘钥
private static final String JWT_SECRET = "d965d209aee9e605f8b2fc2eba475b9d";
public static String createJWT(String username) {
HashMap<String, Object> map = new HashMap<>();
map.put("username", username);
String jwt = Jwts.builder()
.signWith(SignatureAlgorithm.HS512, JWT_SECRET)
.setClaims(map)
.setIssuedAt(new Date())
.setExpiration(new Date(System.currentTimeMillis() + JWT_EXPIRATION * 1000))
.compact();
return jwt;
}
private static Claims parseJWT(String token) {
return Jwts.parser()
.setSigningKey(JWT_SECRET)
.parseClaimsJws(token)
.getBody();
}
}
| [
"173220160@qq.com"
] | 173220160@qq.com |
492029b75fdc12dba1a99b5525285378ba97f694 | 667ef1601e4efdd7c4658f9932cf04285eb594bf | /src/com/javarush/test/level07/lesson12/home04/Solution.java | c683c518a4dcea0f67e33542cf12408170fccab8 | [] | no_license | kpobozhny/JavaRushHomeWork | 4f7746208fc16d4d3ebff97ee8cc78fd86bacca7 | 7d2edf79c0b02be52bb1badc1185da45895c7b60 | refs/heads/master | 2020-05-22T01:25:01.853127 | 2016-11-16T21:06:28 | 2016-11-16T21:06:28 | 45,968,036 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,197 | java | package com.javarush.test.level07.lesson12.home04;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
/* Вводить с клавиатуры строки, пока пользователь не введёт строку 'end'
Создать список строк.
Ввести строки с клавиатуры и добавить их в список.
Вводить с клавиатуры строки, пока пользователь не введёт строку "end". "end" не учитывать.
Вывести строки на экран, каждую с новой строки.
*/
public class Solution
{
public static void main(String[] args) throws IOException
{
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String s;
ArrayList<String> listStr = new ArrayList<String>();
while(true){
s = reader.readLine();
if (s.equals("end")) break;
listStr.add(s);
}
for (String elem : listStr)
{
System.out.println(elem);
}
}
}
| [
"k.pobozhny@gmail.com"
] | k.pobozhny@gmail.com |
e92df34ec303e62811cd486c190ec92266a18327 | 04a8cd6e185c0a9fc75583926c9dcca1ca2d5c14 | /app/src/main/java/com/hyt/advsmallscreen/ui/ChangPasswordActivity.java | 1680f909531312f07916fcddd588824f63415c37 | [] | no_license | expect-github/SmallScreenAdv | c7d147ef5a2d304d5c9d03082b66938656ac516f | 2ad58f07ad4c3f1426b81cbad77c531d28f5e3cc | refs/heads/master | 2020-03-26T10:15:07.269311 | 2018-08-15T01:03:44 | 2018-08-15T01:03:44 | 144,788,247 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,362 | java | package com.hyt.advsmallscreen.ui;
import android.content.Context;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import com.hyt.advsmallscreen.R;
import com.hyt.advsmallscreen.global.Shared;
import com.hyt.advsmallscreen.ui.base.BaseActivity;
import com.hyt.advsmallscreen.utils.SharedUtlis;
import com.hyt.advsmallscreen.utils.ToastTools;
public class ChangPasswordActivity extends BaseActivity {
Context context;
private String TAG = getClass().getName();
private CheckBox cbUseface;
private Button btChange;
private Button btCancle;
private EditText etOld;
private EditText etNew;
private EditText etConfirm;
private SharedUtlis sharedUtlis;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_password_change);
context = this;
initview();
initdata();
}
@Override
protected void destory() {
}
private void initview() {
btChange = (Button) findViewById(R.id.bt_confirm_change);
btCancle = (Button) findViewById(R.id.bt_back_of);
etOld = (EditText) findViewById(R.id.et_old_pas);
etNew = (EditText) findViewById(R.id.et_new_pas);
etConfirm = (EditText) findViewById(R.id.et_reInput_pas);
}
private void initdata() {
sharedUtlis = new SharedUtlis(context, Shared.config);
btCancle.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
finish();
}
});
btChange.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String old = etOld.getText().toString().trim();
String newPas = etNew.getText().toString().trim();
String rePass = etConfirm.getText().toString().trim();
if (old == null || old.isEmpty()) {
ToastTools.showShort(context, "请输入原始密码");
return;
}
if (newPas == null || newPas.isEmpty()) {
ToastTools.showShort(context, "请输入新密码");
return;
}
if (rePass == null || rePass.isEmpty()) {
ToastTools.showShort(context, "请重复输入新密码");
return;
}
if (old.equals(sharedUtlis.getString(Shared.moreSettingPass,""))){
if(newPas.equals(rePass)){
ToastTools.showShort(context, "密码修改成功!");
sharedUtlis.putString(Shared.moreSettingPass,rePass);
}else {
ToastTools.showShort(context, "两次输入的新密码不同");
return;
}
}else {
ToastTools.showShort(context, "输入的原始密码有误");
return;
}
}
});
}
@Override
public void ui() {
}
@Override
public void data() {
}
}
| [
"1"
] | 1 |
f5cc9ec236bca80f15aed98ad115e3fe1f1f5326 | b46bfe042dd9fe238278fd615ccf9c3ba6a88416 | /src/com/servlet/user/Query.java | 5e5cd74210cb35bf892e2deb1a0f2ca7fc48e56c | [] | no_license | MJCoderMJCoder/flightReservation1.1 | a4ce2bb7dc7873a6a20d5ff6bbda4bda331f097d | 90ed0932f4443a6623f165dbf2eee7190a9ba6b4 | refs/heads/master | 2020-06-17T04:22:58.654414 | 2019-07-08T14:38:29 | 2019-07-08T14:38:29 | 195,795,343 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,515 | java | package com.servlet.user;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.bean.User;
import com.dao.UserDao;
/**
* Servlet implementation class Query
*/
@WebServlet(name = "query", urlPatterns = { "/query" })
public class Query extends HttpServlet {
private static final long serialVersionUID = 1L;
/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String userID = request.getParameter("userID");
User user = UserDao.query(userID);
response.setContentType("text/html; charset=utf-8");
if(user != null){
PrintWriter out = response.getWriter();
out.print("no"); //该身份证号已注册,不可以再注册
System.out.println("no");
}else {
PrintWriter out = response.getWriter();
out.print("yes"); //改身份证号未注册,可以注册
System.out.println("yes");
}
}
/**
* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
*/
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
}
}
| [
"zhifengfei@zhifengfei-PC"
] | zhifengfei@zhifengfei-PC |
2184ea692f1dee86352523b2b1b25dafd8de1a3a | ea41150fbf4e4f5eb2b1c1ab82ec772e5c3df98d | /src/test/java/examples/BASE_class_1.java | 474160ca8c97e0e95a21126e47b7ebd1db21b150 | [] | no_license | liesnychevskyi/UpRightGo_project | 90065e6be5e589d7f2cbd36ebeb5e0e7632225ba | 1779004d80c86af76a335c950ebb616a87013974 | refs/heads/master | 2020-05-16T03:24:52.909644 | 2019-05-06T14:33:05 | 2019-05-06T14:33:05 | 182,702,422 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,340 | java | package examples;
import io.appium.java_client.AppiumDriver;
import io.appium.java_client.android.AndroidDriver;
import io.appium.java_client.android.AndroidElement;
import io.appium.java_client.remote.MobileCapabilityType;
import org.openqa.selenium.remote.DesiredCapabilities;
import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.concurrent.TimeUnit;
public class BASE_class_1
{
AppiumDriver<AndroidElement> driver = null;
File file = new File("src\\test\\java\\app");
File fs = new File(file, "UprightGO.apk");
public BASE_class_1() throws MalformedURLException
{
DesiredCapabilities cap = new DesiredCapabilities();
cap.setCapability("platform", "Android 7.0");
cap.setCapability(MobileCapabilityType.DEVICE_NAME, "Sumsung Galaxy 6S");
cap.setCapability(MobileCapabilityType.NEW_COMMAND_TIMEOUT, "100"); //Waiting 100 seconds before it will be closed
cap.setCapability(MobileCapabilityType.APP, fs.getAbsolutePath());
try
{
driver = new AndroidDriver<AndroidElement>(new URL("http://127.0.0.1:4723/wd/hub"), cap);
}
catch (MalformedURLException e)
{
e.printStackTrace();
}
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
}
}
| [
"liesnychevskyi.s@gmail.com"
] | liesnychevskyi.s@gmail.com |
f6446eb8d2dc590bd1396c6d4022852336d81895 | d60e287543a95a20350c2caeabafbec517cabe75 | /LACCPlus/Hive/13909_2.java | 735d27e17bdc10acda365636725316bc5801f7d0 | [
"MIT"
] | permissive | sgholamian/log-aware-clone-detection | 242067df2db6fd056f8d917cfbc143615c558b2c | 9993cb081c420413c231d1807bfff342c39aa69a | refs/heads/main | 2023-07-20T09:32:19.757643 | 2021-08-27T15:02:50 | 2021-08-27T15:02:50 | 337,837,827 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,783 | java | //,temp,ThriftHiveMetastore.java,32806,32837,temp,ThriftHiveMetastore.java,32667,32698
//,2
public class xxx {
public void onError(java.lang.Exception e) {
byte msgType = org.apache.thrift.protocol.TMessageType.REPLY;
org.apache.thrift.TSerializable msg;
get_partitions_spec_by_expr_result result = new get_partitions_spec_by_expr_result();
if (e instanceof MetaException) {
result.o1 = (MetaException) e;
result.setO1IsSet(true);
msg = result;
} else if (e instanceof NoSuchObjectException) {
result.o2 = (NoSuchObjectException) e;
result.setO2IsSet(true);
msg = result;
} else if (e instanceof org.apache.thrift.transport.TTransportException) {
_LOGGER.error("TTransportException inside handler", e);
fb.close();
return;
} else if (e instanceof org.apache.thrift.TApplicationException) {
_LOGGER.error("TApplicationException inside handler", e);
msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
msg = (org.apache.thrift.TApplicationException)e;
} else {
_LOGGER.error("Exception inside handler", e);
msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage());
}
try {
fcall.sendResponse(fb,msg,msgType,seqid);
} catch (java.lang.Exception ex) {
_LOGGER.error("Exception writing to internal frame buffer", ex);
fb.close();
}
}
}; | [
"SHOSHIN\\sgholamian@shoshin.uwaterloo.ca"
] | SHOSHIN\sgholamian@shoshin.uwaterloo.ca |
c43ea0e7c4a896773c64fa622c548a2a027623ae | ae124491d41fd9bbe79b982f689fd7d255061d9b | /modules/core/src/main/java/org/mycontroller/standalone/metrics/engine/conf/MetricEngineConfigInfluxDB.java | 651d50e6832504475f63361a15675fdae74784b8 | [
"Apache-2.0"
] | permissive | nino21/mycontroller | 8d1a56256fdff04c16732a00873dac73ed3f31f1 | 1f162e269175980d243aeaab19d34c07a31a57b1 | refs/heads/development | 2021-01-25T14:49:16.492198 | 2018-10-29T14:50:06 | 2018-10-29T14:50:06 | 123,730,094 | 0 | 0 | Apache-2.0 | 2019-03-11T20:25:32 | 2018-03-03T20:48:42 | Java | UTF-8 | Java | false | false | 1,480 | java | /*
* Copyright 2015-2018 Jeeva Kandasamy (jkandasa@gmail.com)
* and other contributors as indicated by the @author tags.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.mycontroller.standalone.metrics.engine.conf;
import org.mycontroller.restclient.core.TRUST_HOST_TYPE;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.ToString;
/**
* @author Jeeva Kandasamy (jkandasa)
* @since 0.0.3
*/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode(callSuper = false)
@ToString(exclude = "password", callSuper = true)
public class MetricEngineConfigInfluxDB extends MetricEngineConf {
/** */
private static final long serialVersionUID = 8099852875975145155L;
private String url;
private TRUST_HOST_TYPE trustHostType;
private String database;
private String username;
private String password;
}
| [
"jkandasa@gmail.com"
] | jkandasa@gmail.com |
15021a14d35cdf4dceb7c028b169569a4b33f644 | b74d34d02bda7e9bf56dba7fe1c501b4aa586df7 | /src/com/andriodutils/file/IOUtils.java | d5c7e2672470295e419c8b4d777d505a906a5afb | [] | no_license | zzlnewair/AndriodUtils | cc469f79a56df4dc85b44a421428185b7584d451 | 5a362988d1374ed752251e0470e1f9730dbfdbe7 | refs/heads/master | 2021-01-23T10:29:23.479846 | 2017-06-20T12:48:46 | 2017-06-20T12:48:46 | 93,063,932 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 991 | java | package com.andriodutils.file;
import java.io.Closeable;
import java.io.IOException;
/**
* IO utils
*
*
*/
public class IOUtils {
private IOUtils() {
throw new AssertionError();
}
/**
* Close closable object and wrap {@link IOException} with {@link RuntimeException}
* @param closeable closeable object
*/
public static void close(Closeable closeable) {
if (closeable != null) {
try {
closeable.close();
} catch (IOException e) {
throw new RuntimeException("IOException occurred. ", e);
}
}
}
/**
* Close closable and hide possible {@link IOException}
* @param closeable closeable object
*/
public static void closeQuietly(Closeable closeable) {
if (closeable != null) {
try {
closeable.close();
} catch (IOException e) {
// Ignored
}
}
}
}
| [
"zzl2007315@163.com"
] | zzl2007315@163.com |
601d564982257e06b594a7314c0be0aefaad38ec | bf0cf43e0c6b3565352bf39b7d0547e4b41fd993 | /chronos-server/src/main/java/com/chronos/chronosserver/model/TimeZone.java | 3fc2bdb2c32051f85847fda14a205ba5e1a26912 | [] | no_license | coding-with-binaries/chronos | 699b477fef64aaa3d80868e3f2f40f4c8b8cb0bf | 0d2822120d438018e0191e637343f2659a10cd8f | refs/heads/master | 2022-12-30T00:20:49.326499 | 2020-09-21T17:12:56 | 2020-09-21T17:12:56 | 296,401,504 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 859 | java | package com.chronos.chronosserver.model;
import javax.persistence.Entity;
import javax.persistence.Table;
@Table(name = "time_zones")
@Entity
public class TimeZone extends BaseEntity {
private String timeZoneName;
private String locationName;
private String differenceFromGmt;
public String getTimeZoneName() {
return timeZoneName;
}
public void setTimeZoneName(String timeZoneName) {
this.timeZoneName = timeZoneName;
}
public String getLocationName() {
return locationName;
}
public void setLocationName(String locationName) {
this.locationName = locationName;
}
public String getDifferenceFromGmt() {
return differenceFromGmt;
}
public void setDifferenceFromGmt(String differenceFromGmt) {
this.differenceFromGmt = differenceFromGmt;
}
}
| [
"coding.with.binaries@gmail.com"
] | coding.with.binaries@gmail.com |
ce2dc054743083b29d7c852ebf0a141a8a38302f | 041deb52bf01c3490a207af1e2de947dbba6188d | /src/main/java/org/ffmpeg/avcodec/AVCodec.java | bf3672bf6e64bd693e7cf8d0215854360f1cf19f | [] | no_license | OpenSource-Physics-Tracker/FFMpeg | 2ca3e920e487715d94fb1e5cad31d4070e58e788 | ef6949741c5b9911693d9d71f86d1291b329803c | refs/heads/master | 2023-02-06T12:08:52.857724 | 2020-12-22T11:34:18 | 2020-12-22T11:34:18 | 323,606,595 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 16,568 | java | package org.ffmpeg.avcodec;
import org.bridj.BridJ;
import org.bridj.Callback;
import org.bridj.IntValuedEnum;
import org.bridj.Pointer;
import org.bridj.StructObject;
import org.bridj.ann.Field;
import org.bridj.ann.Library;
import org.bridj.ann.Ptr;
import org.ffmpeg.avcodec.AvcodecLibrary.AVCodecID;
import org.ffmpeg.avutil.AVClass;
import org.ffmpeg.avutil.AVFrame;
import org.ffmpeg.avutil.AVRational;
import org.ffmpeg.avutil.AvutilLibrary.AVMediaType;
import org.ffmpeg.avutil.AvutilLibrary.AVPixelFormat;
import org.ffmpeg.avutil.AvutilLibrary.AVSampleFormat;
@Library("avcodec")
public abstract class AVCodec extends StructObject {
static {
BridJ.register();
}
public AVCodec() {
}
@Field(0)
public Pointer<Byte> name() {
return this.io.getPointerField(this, 0);
}
@Field(0)
public AVCodec name(Pointer<Byte> name) {
this.io.setPointerField(this, 0, name);
return this;
}
@Field(1)
public Pointer<Byte> long_name() {
return this.io.getPointerField(this, 1);
}
@Field(1)
public AVCodec long_name(Pointer<Byte> long_name) {
this.io.setPointerField(this, 1, long_name);
return this;
}
@Field(2)
public IntValuedEnum<AVMediaType> type() {
return this.io.getEnumField(this, 2);
}
@Field(2)
public AVCodec type(IntValuedEnum<AVMediaType> type) {
this.io.setEnumField(this, 2, type);
return this;
}
@Field(3)
public IntValuedEnum<AVCodecID> id() {
return this.io.getEnumField(this, 3);
}
@Field(3)
public AVCodec id(IntValuedEnum<AVCodecID> id) {
this.io.setEnumField(this, 3, id);
return this;
}
@Field(4)
public int capabilities() {
return this.io.getIntField(this, 4);
}
@Field(4)
public AVCodec capabilities(int capabilities) {
this.io.setIntField(this, 4, capabilities);
return this;
}
@Field(5)
public Pointer<AVRational> supported_framerates() {
return this.io.getPointerField(this, 5);
}
@Field(5)
public AVCodec supported_framerates(Pointer<AVRational> supported_framerates) {
this.io.setPointerField(this, 5, supported_framerates);
return this;
}
@Field(6)
public Pointer<IntValuedEnum<AVPixelFormat>> pix_fmts() {
return this.io.getPointerField(this, 6);
}
@Field(6)
public AVCodec pix_fmts(Pointer<IntValuedEnum<AVPixelFormat>> pix_fmts) {
this.io.setPointerField(this, 6, pix_fmts);
return this;
}
@Field(7)
public Pointer<Integer> supported_samplerates() {
return this.io.getPointerField(this, 7);
}
@Field(7)
public AVCodec supported_samplerates(Pointer<Integer> supported_samplerates) {
this.io.setPointerField(this, 7, supported_samplerates);
return this;
}
@Field(8)
public Pointer<IntValuedEnum<AVSampleFormat>> sample_fmts() {
return this.io.getPointerField(this, 8);
}
@Field(8)
public AVCodec sample_fmts(Pointer<IntValuedEnum<AVSampleFormat>> sample_fmts) {
this.io.setPointerField(this, 8, sample_fmts);
return this;
}
@Field(9)
public Pointer<Long> channel_layouts() {
return this.io.getPointerField(this, 9);
}
@Field(9)
public AVCodec channel_layouts(Pointer<Long> channel_layouts) {
this.io.setPointerField(this, 9, channel_layouts);
return this;
}
@Field(10)
public byte max_lowres() {
return this.io.getByteField(this, 10);
}
@Field(10)
public AVCodec max_lowres(byte max_lowres) {
this.io.setByteField(this, 10, max_lowres);
return this;
}
@Field(11)
public Pointer<AVClass> priv_class() {
return this.io.getPointerField(this, 11);
}
@Field(11)
public AVCodec priv_class(Pointer<AVClass> priv_class) {
this.io.setPointerField(this, 11, priv_class);
return this;
}
@Field(12)
public Pointer<AVProfile> profiles() {
return this.io.getPointerField(this, 12);
}
@Field(12)
public AVCodec profiles(Pointer<AVProfile> profiles) {
this.io.setPointerField(this, 12, profiles);
return this;
}
@Field(13)
public Pointer<Byte> wrapper_name() {
return this.io.getPointerField(this, 13);
}
@Field(13)
public AVCodec wrapper_name(Pointer<Byte> wrapper_name) {
this.io.setPointerField(this, 13, wrapper_name);
return this;
}
@Field(14)
public int priv_data_size() {
return this.io.getIntField(this, 14);
}
@Field(14)
public AVCodec priv_data_size(int priv_data_size) {
this.io.setIntField(this, 14, priv_data_size);
return this;
}
@Field(15)
public Pointer<AVCodec> next() {
return this.io.getPointerField(this, 15);
}
@Field(15)
public AVCodec next(Pointer<AVCodec> next) {
this.io.setPointerField(this, 15, next);
return this;
}
@Field(16)
public Pointer<AVCodec.init_thread_copy_callback> init_thread_copy() {
return this.io.getPointerField(this, 16);
}
@Field(16)
public AVCodec init_thread_copy(Pointer<AVCodec.init_thread_copy_callback> init_thread_copy) {
this.io.setPointerField(this, 16, init_thread_copy);
return this;
}
@Field(17)
public Pointer<AVCodec.update_thread_context_callback> update_thread_context() {
return this.io.getPointerField(this, 17);
}
@Field(17)
public AVCodec update_thread_context(Pointer<AVCodec.update_thread_context_callback> update_thread_context) {
this.io.setPointerField(this, 17, update_thread_context);
return this;
}
@Field(18)
public Pointer<AVCodecDefault> defaults() {
return this.io.getPointerField(this, 18);
}
@Field(18)
public AVCodec defaults(Pointer<AVCodecDefault> defaults) {
this.io.setPointerField(this, 18, defaults);
return this;
}
@Field(19)
public Pointer<AVCodec.init_static_data_callback> init_static_data() {
return this.io.getPointerField(this, 19);
}
@Field(19)
public AVCodec init_static_data(Pointer<AVCodec.init_static_data_callback> init_static_data) {
this.io.setPointerField(this, 19, init_static_data);
return this;
}
@Field(20)
public Pointer<org.ffmpeg.avfilter.AVFilter.init_callback> init() {
return this.io.getPointerField(this, 20);
}
@Field(20)
public AVCodec init(Pointer<org.ffmpeg.avfilter.AVFilter.init_callback> init) {
this.io.setPointerField(this, 20, init);
return this;
}
@Field(21)
public Pointer<AVCodec.encode_sub_callback> encode_sub() {
return this.io.getPointerField(this, 21);
}
@Field(21)
public AVCodec encode_sub(Pointer<AVCodec.encode_sub_callback> encode_sub) {
this.io.setPointerField(this, 21, encode_sub);
return this;
}
@Field(22)
public Pointer<AVCodec.encode2_callback> encode2() {
return this.io.getPointerField(this, 22);
}
@Field(22)
public AVCodec encode2(Pointer<AVCodec.encode2_callback> encode2) {
this.io.setPointerField(this, 22, encode2);
return this;
}
@Field(23)
public Pointer<AVCodec.decode_callback> decode() {
return this.io.getPointerField(this, 23);
}
@Field(23)
public AVCodec decode(Pointer<AVCodec.decode_callback> decode) {
this.io.setPointerField(this, 23, decode);
return this;
}
@Field(24)
public Pointer<org.ffmpeg.avcodec.AVBitStreamFilter.close_callback> close() {
return this.io.getPointerField(this, 24);
}
@Field(24)
public AVCodec close(Pointer<org.ffmpeg.avcodec.AVBitStreamFilter.close_callback> close) {
this.io.setPointerField(this, 24, close);
return this;
}
@Field(25)
public Pointer<AVCodec.send_frame_callback> send_frame() {
return this.io.getPointerField(this, 25);
}
@Field(25)
public AVCodec send_frame(Pointer<AVCodec.send_frame_callback> send_frame) {
this.io.setPointerField(this, 25, send_frame);
return this;
}
@Field(26)
public Pointer<AVCodec.receive_packet_callback> receive_packet() {
return this.io.getPointerField(this, 26);
}
@Field(26)
public AVCodec receive_packet(Pointer<AVCodec.receive_packet_callback> receive_packet) {
this.io.setPointerField(this, 26, receive_packet);
return this;
}
@Field(27)
public Pointer<AVCodec.receive_frame_callback> receive_frame() {
return this.io.getPointerField(this, 27);
}
@Field(27)
public AVCodec receive_frame(Pointer<AVCodec.receive_frame_callback> receive_frame) {
this.io.setPointerField(this, 27, receive_frame);
return this;
}
@Field(28)
public Pointer<AVCodec.flush_callback> flush() {
return this.io.getPointerField(this, 28);
}
@Field(28)
public AVCodec flush(Pointer<AVCodec.flush_callback> flush) {
this.io.setPointerField(this, 28, flush);
return this;
}
@Field(29)
public int caps_internal() {
return this.io.getIntField(this, 29);
}
@Field(29)
public AVCodec caps_internal(int caps_internal) {
this.io.setIntField(this, 29, caps_internal);
return this;
}
@Field(30)
public Pointer<Byte> bsfs() {
return this.io.getPointerField(this, 30);
}
@Field(30)
public AVCodec bsfs(Pointer<Byte> bsfs) {
this.io.setPointerField(this, 30, bsfs);
return this;
}
public abstract static class close_callback extends Callback<AVCodec.close_callback> {
public close_callback() {
}
public int apply(Pointer<AVCodecContext> AVCodecContextPtr1) {
return this.apply(Pointer.getPeer(AVCodecContextPtr1));
}
public int apply(@Ptr long AVCodecContextPtr1) {
return this.apply(Pointer.pointerToAddress(AVCodecContextPtr1, AVCodecContext.class));
}
}
public abstract static class decode_callback extends Callback<AVCodec.decode_callback> {
public decode_callback() {
}
public int apply(Pointer<AVCodecContext> AVCodecContextPtr1, Pointer<?> outdata, Pointer<Integer> outdata_size, Pointer<AVPacket> avpkt) {
return this.apply(Pointer.getPeer(AVCodecContextPtr1), Pointer.getPeer(outdata), Pointer.getPeer(outdata_size), Pointer.getPeer(avpkt));
}
public int apply(@Ptr long AVCodecContextPtr1, @Ptr long outdata, @Ptr long outdata_size, @Ptr long avpkt) {
return this.apply(Pointer.pointerToAddress(AVCodecContextPtr1, AVCodecContext.class), Pointer.pointerToAddress(outdata), Pointer.pointerToAddress(outdata_size, Integer.class), Pointer.pointerToAddress(avpkt, AVPacket.class));
}
}
public abstract static class encode2_callback extends Callback<AVCodec.encode2_callback> {
public encode2_callback() {
}
public int apply(Pointer<AVCodecContext> avctx, Pointer<AVPacket> avpkt, Pointer<AVFrame> frame, Pointer<Integer> got_packet_ptr) {
return this.apply(Pointer.getPeer(avctx), Pointer.getPeer(avpkt), Pointer.getPeer(frame), Pointer.getPeer(got_packet_ptr));
}
public int apply(@Ptr long avctx, @Ptr long avpkt, @Ptr long frame, @Ptr long got_packet_ptr) {
return this.apply(Pointer.pointerToAddress(avctx, AVCodecContext.class), Pointer.pointerToAddress(avpkt, AVPacket.class), Pointer.pointerToAddress(frame, AVFrame.class), Pointer.pointerToAddress(got_packet_ptr, Integer.class));
}
}
public abstract static class encode_sub_callback extends Callback<AVCodec.encode_sub_callback> {
public encode_sub_callback() {
}
public int apply(Pointer<AVCodecContext> AVCodecContextPtr1, Pointer<Byte> buf, int buf_size, Pointer<AVSubtitle> sub) {
return this.apply(Pointer.getPeer(AVCodecContextPtr1), Pointer.getPeer(buf), buf_size, Pointer.getPeer(sub));
}
public int apply(@Ptr long AVCodecContextPtr1, @Ptr long buf, int buf_size, @Ptr long sub) {
return this.apply(Pointer.pointerToAddress(AVCodecContextPtr1, AVCodecContext.class), Pointer.pointerToAddress(buf, Byte.class), buf_size, Pointer.pointerToAddress(sub, AVSubtitle.class));
}
}
public abstract static class flush_callback extends Callback<AVCodec.flush_callback> {
public flush_callback() {
}
public void apply(Pointer<AVCodecContext> AVCodecContextPtr1) {
this.apply(Pointer.getPeer(AVCodecContextPtr1));
}
public void apply(@Ptr long AVCodecContextPtr1) {
this.apply(Pointer.pointerToAddress(AVCodecContextPtr1, AVCodecContext.class));
}
}
public abstract static class init_callback extends Callback<AVCodec.init_callback> {
public init_callback() {
}
public int apply(Pointer<AVCodecContext> AVCodecContextPtr1) {
return this.apply(Pointer.getPeer(AVCodecContextPtr1));
}
public int apply(@Ptr long AVCodecContextPtr1) {
return this.apply(Pointer.pointerToAddress(AVCodecContextPtr1, AVCodecContext.class));
}
}
public abstract static class init_static_data_callback extends Callback<AVCodec.init_static_data_callback> {
public init_static_data_callback() {
}
public void apply(Pointer<AVCodec> codec) {
this.apply(Pointer.getPeer(codec));
}
public void apply(@Ptr long codec) {
this.apply(Pointer.pointerToAddress(codec, AVCodec.class));
}
}
public abstract static class init_thread_copy_callback extends Callback<AVCodec.init_thread_copy_callback> {
public init_thread_copy_callback() {
}
public int apply(Pointer<AVCodecContext> AVCodecContextPtr1) {
return this.apply(Pointer.getPeer(AVCodecContextPtr1));
}
public int apply(@Ptr long AVCodecContextPtr1) {
return this.apply(Pointer.pointerToAddress(AVCodecContextPtr1, AVCodecContext.class));
}
}
public abstract static class receive_frame_callback extends Callback<AVCodec.receive_frame_callback> {
public receive_frame_callback() {
}
public int apply(Pointer<AVCodecContext> avctx, Pointer<AVFrame> frame) {
return this.apply(Pointer.getPeer(avctx), Pointer.getPeer(frame));
}
public int apply(@Ptr long avctx, @Ptr long frame) {
return this.apply(Pointer.pointerToAddress(avctx, AVCodecContext.class), Pointer.pointerToAddress(frame, AVFrame.class));
}
}
public abstract static class receive_packet_callback extends Callback<AVCodec.receive_packet_callback> {
public receive_packet_callback() {
}
public int apply(Pointer<AVCodecContext> avctx, Pointer<AVPacket> avpkt) {
return this.apply(Pointer.getPeer(avctx), Pointer.getPeer(avpkt));
}
public int apply(@Ptr long avctx, @Ptr long avpkt) {
return this.apply(Pointer.pointerToAddress(avctx, AVCodecContext.class), Pointer.pointerToAddress(avpkt, AVPacket.class));
}
}
public abstract static class send_frame_callback extends Callback<AVCodec.send_frame_callback> {
public send_frame_callback() {
}
public int apply(Pointer<AVCodecContext> avctx, Pointer<AVFrame> frame) {
return this.apply(Pointer.getPeer(avctx), Pointer.getPeer(frame));
}
public int apply(@Ptr long avctx, @Ptr long frame) {
return this.apply(Pointer.pointerToAddress(avctx, AVCodecContext.class), Pointer.pointerToAddress(frame, AVFrame.class));
}
}
public abstract static class update_thread_context_callback extends Callback<AVCodec.update_thread_context_callback> {
public update_thread_context_callback() {
}
public int apply(Pointer<AVCodecContext> dst, Pointer<AVCodecContext> src) {
return this.apply(Pointer.getPeer(dst), Pointer.getPeer(src));
}
public int apply(@Ptr long dst, @Ptr long src) {
return this.apply(Pointer.pointerToAddress(dst, AVCodecContext.class), Pointer.pointerToAddress(src, AVCodecContext.class));
}
}
}
| [
"rogue.2019@icloud.com"
] | rogue.2019@icloud.com |
a29ce7f3830c4553705499864eb4f6c6466e3e45 | 85426efa77b97e9b9677dbfa40fa46f6ba256f41 | /app/src/main/java/com/iwangcn/qingkong/net/RetrofitInstance.java | 95398d1b57de6489116813e4ab169276244e9aad | [] | no_license | OrganizationHua/qingkongproject | 9c6d886435a7249f96b059e6a156c22ffad082ca | e5ec6fd9b726ef0691463d75d20e56e9d08a3d68 | refs/heads/master | 2021-01-18T15:42:57.874519 | 2017-07-29T06:24:20 | 2017-07-29T06:24:20 | 86,676,025 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,980 | java | package com.iwangcn.qingkong.net;
import android.support.v4.util.ArrayMap;
import android.text.TextUtils;
import com.iwangcn.qingkong.BuildConfig;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import okhttp3.OkHttpClient;
import retrofit2.Retrofit;
import retrofit2.adapter.rxjava.RxJavaCallAdapterFactory;
import retrofit2.converter.fastjson.FastJsonConverterFactory;
import rx.Observable;
import rx.android.schedulers.AndroidSchedulers;
import rx.schedulers.Schedulers;
/**
* 静态内部类--单例模式
*
* @param <T> 请求客户端核心类 主要功能有: okhttp基本配置 retrofit 发起请求 service执行 rx 响应response处理
* @author fjg
*/
public class RetrofitInstance<T> {
private static final int DEFAULT_TIMEOUT = 60;
private static ApiService apiService;
private static OkHttpClient okHttpClient;
private OkHttpClient.Builder okHttpClientBuilder;
private static Retrofit retrofit;
private Retrofit.Builder retrofitBuilder;
private HeaderInterceptor headerInterceptor;
private String baseUrl;
private ArrayMap<String, String> headers;
private static class Single {
private static final RetrofitInstance INSTANCE = new RetrofitInstance();
}
public static RetrofitInstance getInstance() {
return Single.INSTANCE;
}
/**
* 配置okhttp retrofit
*/
private RetrofitInstance() {
if (TextUtils.isEmpty(baseUrl)) {
baseUrl = getDefaultUrl();
}
if (headers == null) {
headers = getDefaultHeaders();
}
if (headerInterceptor == null) {
headerInterceptor = new HeaderInterceptor().addHeaders(headers);
}
buildOkHttp();
buildOkHttpBuilder();
buildRetrofitBuilder();
}
public RetrofitInstance baseUrl(String url) {
this.baseUrl = url;
return this;
}
public RetrofitInstance addHeaders(ArrayMap<String, String> headers) {
okHttpClientBuilder.addInterceptor(headerInterceptor.addHeaders(headers));
return this;
}
private RetrofitInstance build() {
retrofit = retrofitBuilder.client(okHttpClientBuilder.build()).baseUrl(baseUrl).build();
createBaseApi();
return this;
}
private void buildOkHttp() {
okHttpClient = new OkHttpClient();
}
private void buildOkHttpBuilder() {
okHttpClientBuilder = okHttpClient.newBuilder()
.addInterceptor(headerInterceptor)
.connectTimeout(DEFAULT_TIMEOUT, TimeUnit.SECONDS)
.writeTimeout(DEFAULT_TIMEOUT, TimeUnit.SECONDS)
.readTimeout(DEFAULT_TIMEOUT, TimeUnit.SECONDS);
if (BuildConfig.DEBUG) {
HttpLoggingInterceptor logging = new HttpLoggingInterceptor();
logging.setLevel(HttpLoggingInterceptor.Level.BODY);
okHttpClientBuilder.addInterceptor(logging);
}
}
private void buildRetrofitBuilder() {
retrofitBuilder = new Retrofit.Builder()
.addConverterFactory(FastJsonConverterFactory.create())
.addCallAdapterFactory(RxJavaCallAdapterFactory.create());
}
/**
* @param subscriber 通用post请求-----单次网络请求
*/
public void post(String interfaceName, Map<String, String> parameters, Class<T> clazz, BaseSubscriber<T> subscriber) {
this.build();
apiService.post(interfaceName, parameters)
.compose(schedulersTransformer())
.compose(transformer(clazz))
.observeOn(AndroidSchedulers.mainThread())
.subscribe(subscriber);
}
/**
* @param subscriber 通用get请求-----单次网络请求
*/
public void get(String interfaceName, Map<String, String> parameters, Class<T> clazz, BaseSubscriber<T> subscriber) {
this.build();
apiService.post(interfaceName, parameters)
.compose(schedulersTransformer())
.compose(transformer(clazz))
.observeOn(AndroidSchedulers.mainThread())
.subscribe(subscriber);
}
/**
* 线程切换器
*/
public Observable.Transformer schedulersTransformer() {
return new Observable.Transformer() {
@Override
public Object call(Object observable) {
return ((Observable) observable).subscribeOn(Schedulers.io())
.unsubscribeOn(Schedulers.io());
}
};
}
/**
* 数据流转换器
*/
public Observable.Transformer<NetResponse, T> transformer(final Class<T> clazz) {
return new Observable.Transformer<NetResponse, T>() {
@Override
public Observable<T> call(Observable<NetResponse> netResponseObservable) {
return netResponseObservable.map(new HttpSuccessResponseFunc<T>(clazz)).onErrorResumeNext(new HttpFailResponseFunc());
}
};
}
/**
* create BaseApi defalte ApiService
*
* @return ApiService
*/
public RetrofitInstance createBaseApi() {
apiService = create(ApiService.class);
return this;
}
/**
* create you ApiService
* Create an implementation of the API endpoints defined by the {@code service} interface.
*/
public <T> T create(final Class<T> service) {
if (service == null) {
throw new RuntimeException("Api service is null!");
}
return retrofit.create(service);
}
/**
* 默认请求头
*/
private ArrayMap<String, String> getDefaultHeaders() {
ArrayMap<String, String> headers = new ArrayMap<>();
headers.put("di", "");
headers.put("token", "");
headers.put("User-Agent", "");
return headers;
}
private String getDefaultUrl() {
return NetConfig.SERVER_URL;
}
}
| [
"fengjg@otctop.com"
] | fengjg@otctop.com |
59b8fae47c2f343169d712aa5a69908cafabbb83 | f3db54ec31d9b363d5affbccadd5079c94c74a30 | /Source/src/java/pkg/Models/CategoryReport.java | 1bf550286f449766168064bd5cb8c238f2c54ec4 | [] | no_license | giaphuc1610/PRJ4_FurnitureStore | 44b2f087b1f06ad1cd6701bc2c38d27bdd991caa | 62243b40e7ca56e93f7c27013d97ce532ab7f689 | refs/heads/master | 2023-02-10T02:14:12.236174 | 2020-12-29T08:45:14 | 2020-12-29T08:45:14 | 324,711,795 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 699 | java | package pkg.Models;
public class CategoryReport
{
private String category;
private double income;
public CategoryReport(String category, double income) {
this.category = category;
this.income = income;
}
private double proportion;
public CategoryReport() {}
public String getCategory() { return this.category; }
public void setCategory(String category) { this.category = category; }
public double getIncome() { return this.income; }
public void setIncome(double income) { this.income = income; }
public double getProportion() { return this.proportion; }
public void setProportion(double proportion) { this.proportion = proportion; }
}
| [
"40568438+giaphuc1610@users.noreply.github.com"
] | 40568438+giaphuc1610@users.noreply.github.com |
93ffe3d8d481fea0cc1549b2f8ec7a9456cf0626 | 9049eabb2562cd3e854781dea6bd0a5e395812d3 | /sources/com/google/android/gms/people/protomodel/PhoneEntity.java | 01d29982bd807c2f8e1fcc57a5845097b8842291 | [] | no_license | Romern/gms_decompiled | 4c75449feab97321da23ecbaac054c2303150076 | a9c245404f65b8af456b7b3440f48d49313600ba | refs/heads/master | 2022-07-17T23:22:00.441901 | 2020-05-17T18:26:16 | 2020-05-17T18:26:16 | 264,227,100 | 2 | 5 | null | null | null | null | UTF-8 | Java | false | false | 3,581 | java | package com.google.android.gms.people.protomodel;
import android.os.Parcel;
import android.os.Parcelable;
import com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable;
import java.util.Arrays;
/* compiled from: :com.google.android.gms@201515033@20.15.15 (120300-306758586) */
public class PhoneEntity extends AbstractSafeParcelable implements Phone {
public static final Parcelable.Creator CREATOR = new ampc();
/* renamed from: a */
public final PersonFieldMetadataEntity f82032a;
/* renamed from: b */
public final String f82033b;
/* renamed from: c */
public final String f82034c;
public PhoneEntity(PersonFieldMetadata personFieldMetadata, String str, String str2, boolean z) {
this.f82033b = str;
this.f82034c = str2;
if (z) {
this.f82032a = (PersonFieldMetadataEntity) personFieldMetadata;
} else {
this.f82032a = personFieldMetadata != null ? new PersonFieldMetadataEntity(personFieldMetadata) : null;
}
}
/* renamed from: a */
public final PersonFieldMetadata mo46453a() {
return this.f82032a;
}
/* renamed from: b */
public final String mo46454b() {
return this.f82033b;
}
/* renamed from: bF */
public final /* bridge */ /* synthetic */ Object mo7556bF() {
return this;
}
/* renamed from: c */
public final String mo46455c() {
return this.f82034c;
}
public final boolean equals(Object obj) {
if (!(obj instanceof Phone)) {
return false;
}
if (this == obj) {
return true;
}
Phone phone = (Phone) obj;
return sdg.m34949a(mo46453a(), phone.mo46453a()) && sdg.m34949a(mo46454b(), phone.mo46454b()) && sdg.m34949a(mo46455c(), phone.mo46455c());
}
public final int hashCode() {
return Arrays.hashCode(new Object[]{mo46453a(), mo46454b(), mo46455c()});
}
/* JADX DEBUG: Failed to find minimal casts for resolve overloaded methods, cast all args instead
method: see.a(android.os.Parcel, int, java.lang.String, boolean):void
arg types: [android.os.Parcel, int, java.lang.String, int]
candidates:
see.a(android.os.Parcel, int, android.os.Bundle, boolean):void
see.a(android.os.Parcel, int, android.os.Parcel, boolean):void
see.a(android.os.Parcel, int, java.math.BigDecimal, boolean):void
see.a(android.os.Parcel, int, java.util.List, boolean):void
see.a(android.os.Parcel, int, byte[], boolean):void
see.a(android.os.Parcel, int, double[], boolean):void
see.a(android.os.Parcel, int, float[], boolean):void
see.a(android.os.Parcel, int, int[], boolean):void
see.a(android.os.Parcel, int, long[], boolean):void
see.a(android.os.Parcel, int, android.os.Parcelable[], int):void
see.a(android.os.Parcel, int, java.lang.String[], boolean):void
see.a(android.os.Parcel, int, boolean[], boolean):void
see.a(android.os.Parcel, int, java.lang.String, boolean):void */
public final void writeToParcel(Parcel parcel, int i) {
int a = see.m35030a(parcel);
see.m35040a(parcel, 2, this.f82032a, i, false);
see.m35046a(parcel, 3, this.f82033b, false);
see.m35046a(parcel, 4, this.f82034c, false);
see.m35062b(parcel, a);
}
public PhoneEntity(PersonFieldMetadataEntity personFieldMetadataEntity, String str, String str2) {
this.f82032a = personFieldMetadataEntity;
this.f82033b = str;
this.f82034c = str2;
}
}
| [
"roman.karwacik@rwth-aachen.de"
] | roman.karwacik@rwth-aachen.de |
d854bb8ebdd64e9df23579330e5b95ce5ac3e254 | b70792de0546fb9867b3bdbefae3852a64649b3c | /src/main/java/com/randikalakma/eeapi/service/UserService.java | 1bb3c718d2783ebc9bfa26dbfd733f4cee454c4c | [] | no_license | Randika-Lakmal-Abeyrathna/EEAPI | a4f3228555b731da312754902f0c888e77205309 | 8340d8e4d936109b60f4021b759d5e34afad48f5 | refs/heads/main | 2023-04-16T13:13:08.940618 | 2021-03-26T19:14:58 | 2021-03-26T19:14:58 | 338,973,329 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,006 | java | package com.randikalakma.eeapi.service;
import com.randikalakma.eeapi.exception.UserException;
import com.randikalakma.eeapi.exception.user.CustomerException;
import com.randikalakma.eeapi.model.*;
import com.randikalakma.eeapi.repository.ImageDataRepository;
import com.randikalakma.eeapi.repository.UserRepository;
import com.randikalakma.eeapi.repository.UserTokenRepository;
import com.randikalakma.eeapi.service.admin.MailService;
import lombok.AllArgsConstructor;
import org.springframework.stereotype.Service;
import org.springframework.util.StringUtils;
import org.springframework.web.multipart.MultipartFile;
import javax.transaction.Transactional;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardCopyOption;
import java.text.SimpleDateFormat;
import java.util.*;
@Service
@Transactional
@AllArgsConstructor
public class UserService {
private final UserRepository userRepository;
private final ImageDataRepository imageDataRepository;
private final UserTokenRepository userTokenRepository;
private final MailService mailService;
public User addUser(User user){
return userRepository.save(user);
}
public User updateUser(User user){
return userRepository.save(user);
}
public User findUserByEmailAndUserType(String email, UserType userType){
return userRepository.findByEmailAndUserType(email,userType)
.orElseThrow(()-> new CustomerException("User Not Found"));
}
public List<User> getAllUsers(){
return userRepository.findAll();
}
public boolean checkUserExistByEmail(String email){
return userRepository.existsById(email);
}
public User getUserByEmail(String email){
return userRepository.findById(email)
.orElseThrow(()-> new UserException("User Not found with email "+email));
}
public void updateUserImage(String email, MultipartFile file){
User user = getUserByEmail(email);
// Upload Image start
String getCurrentDateAndTime = new SimpleDateFormat("yyyyMMddHHmmss").format(new Date()); // Using because same image name can upload
System.out.println(getCurrentDateAndTime);
String fileName= StringUtils.cleanPath(Objects.requireNonNull(file.getOriginalFilename()));
String fileNameFront = fileName.split("\\.")[0];
String fileExtension=fileName.split("\\.")[1];
fileNameFront +=getCurrentDateAndTime;
fileName = fileNameFront+"."+fileExtension;
System.out.println("File Name"+fileName);
String uploadDir = "./user-images/";
Path uploadPath = Paths.get(uploadDir);
try{
if (!Files.exists(uploadPath)){
Files.createDirectories(uploadPath);
}
}catch(IOException exception){
System.out.println("cannot create the user image folder");
exception.printStackTrace();
}
Path filePath = uploadPath.resolve(fileName);
System.out.println("FILE PATH :" + filePath.toString());
try {
InputStream inputStream = file.getInputStream();
Files.copy(inputStream,filePath, StandardCopyOption.REPLACE_EXISTING);
} catch (IOException e) {
e.printStackTrace();
}
ImageData imageData = new ImageData();
imageData.setPath(filePath.toString());
ImageData uploadedImage =imageDataRepository.save(imageData);
user.setImageData(uploadedImage);
userRepository.save(user);
}
public void sendUserActivationEmail(User user){
String userToken = generateCustomerVerificationToken(user);
mailService.sendMail(new NotificationEmail("Please Activate your account", user.getEmail(),
"Thank you for signing up ! Please click on the below url to activate your account : " +
"http://localhost:8080/api/user/accountverification/" + userToken));
}
private String generateCustomerVerificationToken(User user) {
String customerVerificationToken = UUID.randomUUID().toString();
UserToken userToken = new UserToken();
userToken.setToken(customerVerificationToken);
userToken.setUser(user);
userTokenRepository.save(userToken);
return customerVerificationToken;
}
public void activateUser(String token){
Optional<UserToken> userToken = userTokenRepository.findByToken(token);
userToken.orElseThrow(()->new UserException("Invalid Token"));
String userEmail = userToken.get().getUser().getEmail();
User user = getUserByEmail(userEmail);
user.setEnabled(true);
userRepository.save(user);
deleteUserToken(token,user);
}
private void deleteUserToken(String token,User user){
userTokenRepository.deleteUserTokenByTokenAndUser(token,user);
}
}
| [
"randika.help@gmail.com"
] | randika.help@gmail.com |
0d221c4dd8fb6709207b6bfdebdaa1367a3c1f19 | 5d48c46acb53e2b0a00fa304df5658ca1c28990d | /CGB-1/src/main/java/com/cy/Cgb1Application.java | a7d9fa145e978b9d770ae3ecbcfb6aa599f6ecc9 | [] | no_license | q23339860/CGB1908 | f6729c3d811f7b0fa4b280650544049c74d11ca5 | eefe3f16e2da1dab3f29625625be57c324b781c9 | refs/heads/master | 2022-02-23T06:03:22.677995 | 2019-11-22T03:28:50 | 2019-11-22T03:28:50 | 223,174,625 | 0 | 0 | null | 2022-02-09T22:19:54 | 2019-11-21T12:58:14 | JavaScript | UTF-8 | Java | false | false | 295 | java | package com.cy;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class Cgb1Application {
public static void main(String[] args) {
SpringApplication.run(Cgb1Application.class, args);
}
}
| [
"live@live-PC"
] | live@live-PC |
b67c8a932ae84a65a469068edce4f7356da098f5 | 2f5b61eca348e0b357cbc1b08c3be2514374d7ac | /src/tz/cn/dao/SynthesizeDao.java | c21ed931ec3ae327c7d30ad01f13ed8279a1d423 | [] | no_license | yy886yy/2020 | 3f5b180c5142549b46e4987e5f61c353c7dfb82b | d06b11d0006808bb9f2ac770ee2f2658772d1a2f | refs/heads/master | 2023-05-11T00:27:46.608278 | 2020-01-05T09:33:11 | 2020-01-05T09:33:11 | 231,893,622 | 0 | 0 | null | 2023-05-07T16:29:14 | 2020-01-05T09:16:51 | JavaScript | UTF-8 | Java | false | false | 304 | java | package tz.cn.dao;
import java.util.List;
import java.util.Map;
public interface SynthesizeDao {
//查询出年销售数据
List<Map<String,Object>> findYear();
//查询出季度销售数据
List<Map<String,Object>> findQuarter();
//查询出月销售数据
List<Map<String,Object>> findMonth();
}
| [
"60210068@qq.com"
] | 60210068@qq.com |
b7d42f3db49e25bac805d9aaa364c01bbb3866f1 | 114bea2335028cf569cc04dd25909115a985bef3 | /src/notas_alunos/NoAluno.java | 2f33c02651c9100f32e7e97870590a4005824c6e | [] | no_license | MayconInforGames2017/estruturadados-ifpe-lista-6 | 07e3687a2b5f74ffdb8a4162d6659a7dd523bab8 | b9db339c7d968f2817adb7efdd0d45c891b65a23 | refs/heads/master | 2022-12-22T11:02:02.879441 | 2020-09-22T22:22:26 | 2020-09-22T22:22:26 | 297,785,989 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 462 | java | package notas_alunos;
public class NoAluno {
private Aluno aluno;
private NoAluno proximoAluno;
public NoAluno(Aluno alunos) {
this.aluno = alunos;
this.setProximoAluno(null);
}
public Aluno getAluno() {
return aluno;
}
public void setAluno(Aluno aluno) {
this.aluno = aluno;
}
public NoAluno getProximoAluno() {
return proximoAluno;
}
public void setProximoAluno(NoAluno proximoAluno) {
this.proximoAluno = proximoAluno;
}
}
| [
"maycon_gus2009@hotmail.com"
] | maycon_gus2009@hotmail.com |
ef625c663e41ae644d36da3d6c7b5700da12189c | 345954bbecd4923dfa73445e4945b6d7283e23ff | /src/main/java/design/responsibility_chain/DownGradeTaskNode.java | 8c0543eb68bb633dc3ba2192b309f9e3566d2838 | [
"Apache-2.0"
] | permissive | fatpo/oyDesignPatterns | 08b57d5874844f498275db3f9009f05a0af7bacb | 53f9b12294205f4f2f358b6d339e2dc524efbac0 | refs/heads/main | 2023-01-23T16:24:26.186818 | 2020-12-09T15:09:02 | 2020-12-09T15:09:02 | 307,281,020 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 767 | java | package design.responsibility_chain;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
@Service
@Slf4j
public class DownGradeTaskNode implements TaskNode {
public boolean doTask(RecomReq req, RecomRsp rsp, RecomConfig config, TaskNodeChain chain) {
log.info("进入降级服务的 taskNode...");
// 判断是否需要降级
if (isNeedDownGrade()) {
// false 表示中断后续的责任链,这里返回即可
return false;
}
// 把球传给责任链中的下个节点
chain.doTask(req, rsp, config);
log.info("离开降级服务的 taskNode...");
return true;
}
private boolean isNeedDownGrade() {
return false;
}
}
| [
"xihuanjianguo@gmail.com"
] | xihuanjianguo@gmail.com |
00d9f05626ae211cb1b227fb003ea000fc802b08 | ba3b25d6cf9be46007833ce662d0584dc1246279 | /droidsafe_modified/modeling/api/org/ccil/cowan/tagsoup/PYXWriter.java | d8397641997377d9a9c3f651f732f9f15e24ae7b | [] | no_license | suncongxd/muDep | 46552d4156191b9dec669e246188080b47183a01 | b891c09f2c96ff37dcfc00468632bda569fc8b6d | refs/heads/main | 2023-03-20T20:04:41.737805 | 2021-03-01T19:52:08 | 2021-03-01T19:52:08 | 326,209,904 | 8 | 0 | null | null | null | null | UTF-8 | Java | false | false | 16,863 | java | /*
* Copyright (C) 2015, Massachusetts Institute of Technology
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Please email droidsafe@lists.csail.mit.edu if you need additional
* information or have any questions.
*
*
* This file incorporates work covered by the following copyright and
* permission notice:
*
* This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
*
* TagSoup is licensed under the Apache License,
* Version 2.0. You may obtain a copy of this license at
* http: *www.apache.org/licenses/LICENSE-2.0 . You may also have
* additional legal rights not granted by this license.
*
* TagSoup is distributed in the hope that it will be useful, but
* unless required by applicable law or agreed to in writing, TagSoup
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
* OF ANY KIND, either express or implied; not even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
*/
/***** THIS FILE HAS BEEN MODIFIED FROM THE ORIGINAL BY THE DROIDSAFE PROJECT. *****/
// PYX Writer
// FIXME: does not do escapes in attribute values
// FIXME: outputs entities as bare '&' character
package org.ccil.cowan.tagsoup;
// Droidsafe Imports
import droidsafe.runtime.*;
import droidsafe.helpers.*;
import droidsafe.annotations.*;
import java.io.PrintWriter;
import java.io.Writer;
import org.xml.sax.Attributes;
import org.xml.sax.ContentHandler;
import org.xml.sax.Locator;
import org.xml.sax.SAXException;
import org.xml.sax.ext.LexicalHandler;
public class PYXWriter implements ScanHandler, ContentHandler, LexicalHandler {
@DSGeneratedField(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.291 -0500", hash_original_field = "E289977DD763E2EB74F5C17AAAA2FFDD", hash_generated_field = "02CD84A92AAD7C67C826D5A169B700D9")
private static char[] dummy = new char[1];
@DSGeneratedField(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.288 -0500", hash_original_field = "513F69EA21D11E56A05149090A0A48B2", hash_generated_field = "49F3A48A6073C357DEA9F2D054F0CF5A")
private PrintWriter theWriter;
@DSGeneratedField(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.293 -0500", hash_original_field = "F10689903BED993CD29E6B6C9E0C9EED", hash_generated_field = "1D790F77E1C6AE59D6044130824E23AE")
private String attrName;
// Constructor
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.373 -0500", hash_original_method = "B358C277B5E2AD8935F1F06BA02E5093", hash_generated_method = "11D9F47342E4D734B4EC40F74ABDFB01")
public PYXWriter(Writer w) {
if (w instanceof PrintWriter) {
theWriter = (PrintWriter)w;
}
else {
theWriter = new PrintWriter(w);
}
} // saved attribute name
// ScanHandler implementation
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.296 -0500", hash_original_method = "387AEB9DCE887E98A76AE2F20CD71AE2", hash_generated_method = "526FA9AEC0F1A90A1BE35BF9B9AE25E0")
public void adup(char[] buff, int offset, int length) throws SAXException {
theWriter.println(attrName);
attrName = null;
}
@DSSink({DSSinkKind.SENSITIVE_UNCATEGORIZED})
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.298 -0500", hash_original_method = "7D20D176BBEC71DA76C0647D5C25D5A3", hash_generated_method = "0A0CC9AABA223BDFFBA4E47C65FABF55")
public void aname(char[] buff, int offset, int length) throws SAXException {
theWriter.print('A');
theWriter.write(buff, offset, length);
theWriter.print(' ');
attrName = new String(buff, offset, length);
}
@DSSink({DSSinkKind.SENSITIVE_UNCATEGORIZED})
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.300 -0500", hash_original_method = "0B592E26491ABBF6D6340D0C31CDF40A", hash_generated_method = "87B3B6FDF477986BC213B0731D31D3A1")
public void aval(char[] buff, int offset, int length) throws SAXException {
theWriter.write(buff, offset, length);
theWriter.println();
attrName = null;
}
@DSGenerator(tool_name = "Doppelganger", tool_version = "0.4.2", generated_on = "2013-07-12 09:49:43.200 -0400", hash_original_method = "1B347B27BFF7BB03486A9C3953014010", hash_generated_method = "A69F4BB3139A30AE29048B59041500BE")
public void cmnt(char [] buff, int offset, int length) throws SAXException {
addTaint(length);
addTaint(offset);
addTaint(buff[0]);
// ---------- Original Method ----------
}
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.305 -0500", hash_original_method = "0C74769D0F9D1592330B85E57E53C137", hash_generated_method = "6AEE14EEADC2BF8E21E1B4F5FFB18749")
public void entity(char[] buff, int offset, int length) throws SAXException { }
@DSSource({DSSourceKind.SENSITIVE_UNCATEGORIZED})
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.307 -0500", hash_original_method = "3C08B6E043A6E028BC79049543201CA8", hash_generated_method = "7477A79F9C1C54C788DB94DD5E638D18")
public int getEntity() { return 0; }
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.309 -0500", hash_original_method = "D330469217CBCDF6CFC5B6F4299F7DED", hash_generated_method = "129074752853BFEC38516FEBEAFA4C1F")
public void eof(char[] buff, int offset, int length) throws SAXException {
theWriter.close();
}
@DSSink({DSSinkKind.SENSITIVE_UNCATEGORIZED})
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.311 -0500", hash_original_method = "26BADE83A21B645404502BDE9A94D5D0", hash_generated_method = "04A34FF66493AE97B9A8CBA326163A07")
public void etag(char[] buff, int offset, int length) throws SAXException {
theWriter.print(')');
theWriter.write(buff, offset, length);
theWriter.println();
}
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.313 -0500", hash_original_method = "D7373B13D97F6239D6FE9A75A6C3C4CD", hash_generated_method = "335DB75A469EE693A6D24448407742FE")
public void decl(char[] buff, int offset, int length) throws SAXException {
}
@DSSink({DSSinkKind.SENSITIVE_UNCATEGORIZED})
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.316 -0500", hash_original_method = "F17CC0C0B50085C85B2E9F440AE2C746", hash_generated_method = "D9BCBC4A4EB1DD3688875513E155308E")
public void gi(char[] buff, int offset, int length) throws SAXException {
theWriter.print('(');
theWriter.write(buff, offset, length);
theWriter.println();
}
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.318 -0500", hash_original_method = "A1521B964CA14C9F176B788365114A3A", hash_generated_method = "4744839A41B9051628C90600ED693003")
public void cdsect(char[] buff, int offset, int length) throws SAXException {
pcdata(buff, offset, length);
}
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.320 -0500", hash_original_method = "EA665DB78182CC462806E2E30B0F15A4", hash_generated_method = "F18A7C9E1994DDA5C857E86600BA7EE2")
public void pcdata(char[] buff, int offset, int length) throws SAXException {
if (length == 0) return; // nothing to do
boolean inProgress = false;
length += offset;
for (int i = offset; i < length; i++) {
if (buff[i] == '\n') {
if (inProgress) {
theWriter.println();
}
theWriter.println("-\\n");
inProgress = false;
}
else {
if (!inProgress) {
theWriter.print('-');
}
switch(buff[i]) {
case '\t':
theWriter.print("\\t");
break;
case '\\':
theWriter.print("\\\\");
break;
default:
theWriter.print(buff[i]);
}
inProgress = true;
}
}
if (inProgress) {
theWriter.println();
}
}
@DSSink({DSSinkKind.SENSITIVE_UNCATEGORIZED})
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.323 -0500", hash_original_method = "434533230F3CD22E7AA0C553CAF97C2F", hash_generated_method = "00595BAD87DA24F670D148B39B40FCE3")
public void pitarget(char[] buff, int offset, int length) throws SAXException {
theWriter.print('?');
theWriter.write(buff, offset, length);
theWriter.write(' ');
}
@DSSink({DSSinkKind.SENSITIVE_UNCATEGORIZED})
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.325 -0500", hash_original_method = "ED46B5C6DF2EC4C94179D535403EEAEA", hash_generated_method = "16A09E2E3785805AED518BEEFD81EE58")
public void pi(char[] buff, int offset, int length) throws SAXException {
theWriter.write(buff, offset, length);
theWriter.println();
}
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.327 -0500", hash_original_method = "96E02538AF8972317DC22DC52C9FCA89", hash_generated_method = "C5928B5A36AFF64325A01D13F3496405")
public void stagc(char[] buff, int offset, int length) throws SAXException {
// theWriter.println("!"); // FIXME
}
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.329 -0500", hash_original_method = "7F7C0809B3837070EBC39FFF348639C7", hash_generated_method = "D9C8A6AEB19344EEABA739C67A78EFF8")
public void stage(char[] buff, int offset, int length) throws SAXException {
theWriter.println("!"); // FIXME
}
// SAX ContentHandler implementation
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.332 -0500", hash_original_method = "908998A64774886455085A6988C60433", hash_generated_method = "794DAD7B2D0114A4EE5A2C9C8ADAD450")
public void characters(char[] buff, int offset, int length) throws SAXException {
pcdata(buff, offset, length);
}
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.334 -0500", hash_original_method = "07AC39EBDED7098E926E255FC164A2D5", hash_generated_method = "74626E1BC9C8F8735C604E830BF8EF70")
public void endDocument() throws SAXException {
theWriter.close();
}
@DSSink({DSSinkKind.SENSITIVE_UNCATEGORIZED})
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.337 -0500", hash_original_method = "52900B9FEFC9FE65D64402526E52F683", hash_generated_method = "277B755B6BF5F1804CA28F1D80841AFA")
public void endElement(String uri, String localname, String qname) throws SAXException {
if (qname.length() == 0) qname = localname;
theWriter.print(')');
theWriter.println(qname);
}
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.339 -0500", hash_original_method = "0E90E85A66154559EA3C98CC7177C34F", hash_generated_method = "C57BA1B797F9B6AF7FE79D44FF6640CA")
public void endPrefixMapping(String prefix) throws SAXException { }
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.341 -0500", hash_original_method = "2E1F534279DED267EA0D6CCAD700E3B2", hash_generated_method = "A05D8ADA1F35B1E9E7EC070634FFC1A7")
public void ignorableWhitespace(char[] buff, int offset, int length) throws SAXException {
characters(buff, offset, length);
}
@DSSink({DSSinkKind.SENSITIVE_UNCATEGORIZED})
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.343 -0500", hash_original_method = "53BDE4B1E3F8AE32ABB1D442EEBC1FC0", hash_generated_method = "E07BCA12D8BCF1FA30BC32D0C3D20BF0")
public void processingInstruction(String target, String data) throws SAXException {
theWriter.print('?');
theWriter.print(target);
theWriter.print(' ');
theWriter.println(data);
}
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.346 -0500", hash_original_method = "764EC710ED4FDFB68C9E6FE9ED249649", hash_generated_method = "2A03485A9C7E9AF053D0769877C42163")
public void setDocumentLocator(Locator locator) { }
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.348 -0500", hash_original_method = "1616136BE44E483876717F8A446FD8E6", hash_generated_method = "A990924CA217DA9AB88497E28F935EE3")
public void skippedEntity(String name) throws SAXException { }
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.350 -0500", hash_original_method = "FAA725B72A2ADC391C781CAB49B849AD", hash_generated_method = "B7DDED468AEC81414C9CDB2776677119")
public void startDocument() throws SAXException { }
@DSSink({DSSinkKind.SENSITIVE_UNCATEGORIZED})
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.353 -0500", hash_original_method = "3DE0561ECA4CEE2171786A759675C078", hash_generated_method = "FD5B3B997BBFF5DDDFE462A6DE1A898D")
public void startElement(String uri, String localname, String qname,
Attributes atts) throws SAXException {
if (qname.length() == 0) qname=localname;
theWriter.print('(');
theWriter.println(qname);
int length = atts.getLength();
for (int i = 0; i < length; i++) {
qname = atts.getQName(i);
if (qname.length() == 0) qname = atts.getLocalName(i);
theWriter.print('A');
// theWriter.print(atts.getType(i)); // DEBUG
theWriter.print(qname);
theWriter.print(' ');
theWriter.println(atts.getValue(i));
}
}
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.355 -0500", hash_original_method = "9A8DBFCDD6673580DBBCEDB8AE69733A", hash_generated_method = "B995952A1DAC319BF5A213B6DF1E548E")
public void startPrefixMapping(String prefix, String uri) throws SAXException { }
// Default LexicalHandler implementation
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.357 -0500", hash_original_method = "E94210BE8A910F2AF0BA66BAC743271D", hash_generated_method = "4AB86CFE3726D984425AC161058BA1CC")
public void comment(char[] ch, int start, int length) throws SAXException {
cmnt(ch, start, length);
}
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.359 -0500", hash_original_method = "B026A18FCF4D46E60EDFCDEA2654D91E", hash_generated_method = "5436D7E012C1BB7651D047DE2AC3E706")
public void endCDATA() throws SAXException { }
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.361 -0500", hash_original_method = "3D36862B53F533617A1DD5C66B985713", hash_generated_method = "9481DC6C7665CC2EE67A168AF6997592")
public void endDTD() throws SAXException { }
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.364 -0500", hash_original_method = "A799CD2136F4389F2AB6AC2E97C1C7E3", hash_generated_method = "9E4C022B93F86FA2501718917A3E8660")
public void endEntity(String name) throws SAXException { }
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.366 -0500", hash_original_method = "E4BBD9A45ED517D6BA1A0F40E8CDD7AD", hash_generated_method = "4424B19DE8198582589012365F320887")
public void startCDATA() throws SAXException { }
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.369 -0500", hash_original_method = "AAB7E6DA97E949BBCF227EF9A66B4F67", hash_generated_method = "460DE7CDD5B1214F9C4D0EB2B5E8FD57")
public void startDTD(String name, String publicId, String systemId) throws SAXException { }
@DSGenerator(tool_name = "Doppelganger", tool_version = "2.0", generated_on = "2013-12-30 13:00:44.371 -0500", hash_original_method = "DCC3E349AFEA1A7195E89C47AA33A3E4", hash_generated_method = "B61B8BDA3EE5CD516ADAEFA172F35910")
public void startEntity(String name) throws SAXException { }
}
| [
"suncong@xidian.edu.cn"
] | suncong@xidian.edu.cn |
d67581b121667c5d8c688cc1aeee42b5f7a8a303 | 54f60ea68ec413eb81053d5810a7a444d19597c3 | /JavaTraining/src/labs/StudentDatabaseSolution.java | 3c7b02466b801ee3fce81907c58cec41afede5a1 | [] | no_license | MatthewWetherill/Matthew-examples | 2b18c413a5ea89a57afa289c94f7856e79a2b827 | 1247a6422f8c9bc0156637f33ca0d5922349ad41 | refs/heads/master | 2020-04-15T03:03:21.790353 | 2019-01-06T19:32:02 | 2019-01-06T19:32:02 | 164,334,370 | 0 | 0 | null | null | null | null | WINDOWS-1252 | Java | false | false | 3,002 | java | package labs;
public class StudentDatabaseSolution {
public static void main(String[] args) {
//Create a student
Student stu1 = new Student("Matthew", "112233445");
stu1.enroll("Math101");
stu1.enroll("Germ205");
stu1.enroll("Hist208");
stu1.showCourses();
stu1.checkBalance();
stu1.payTuition(1250);
stu1.checkBalance();
System.out.println(stu1.toString());
}
}
class Student {
//Properties
private static int iD = 0;
private String userId;
private String name;
private String ssn;
private String email;
private String phone;
private String county;
private String townCity;
private String courses = "";
private static final int costOfCourse = 500;
private int balance = 0;
//Constructor
public Student(String name, String ssn) {
System.out.println("\n**********\n\nNEW STUDENT REGISTERED: " + name + "\n\n**********\n");
iD++;
this.name = name;
this.ssn = ssn;
setUserId();
setEmail();
}
//getters/setters
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getCounty() {
return county;
}
public void setCounty(String county) {
this.county = county;
}
public String getTownCity() {
return townCity;
}
public void setTownCity(String townCity) {
this.townCity = townCity;
}
//Email generator method - getter/setter
private void setEmail() {
email = name.toLowerCase() + "." + iD + "@studb.com";
System.out.println("Your Email: " + email);
}
//User ID generator method
private void setUserId() {
//set range for random number between 1000 and 9000
int max = 9000;
int min = 1000;
int randNum = (int) (Math.random() * (max - min)); // (max - min) calculates range of numbers, this gives number between 0 - 8000
randNum = randNum + min; //this now makes randNum fall between 1000 and 9000
userId = iD + "" + randNum + ssn.substring(5); //quote marks needed otehrwise it would add the iD and randNum together rather than concatenate
System.out.println("Your User ID: " + userId);
}
//other methods
public void enroll(String course) {
this.courses = this.courses + " | " + course + " | ";
balance = balance + costOfCourse;
System.out.println("\n**********\n\nYou have enrolled in: " + course + " | £" + costOfCourse);
}
public void payTuition(int amount) {
balance = balance - amount;
System.out.println("\n**********\n\nPAYMENT MADE\nThank you for your payment of £" + amount + ". \nYour balance is now : £" + balance);
}
public void checkBalance() {
System.out.println("\n**********\n\nBalance: £" + balance);
}
public void showCourses() {
System.out.println("\n**********\n\nYou are enrolled in the following courses...\n\n" + courses);
}
@Override
public String toString() {
return "\n\n**********USER INFORMATION**********\n\n[ NAME: " + name + " ]\n[ USER ID: " + userId + " ]\n[ EMAIL: " + email + " ]\n[ COURSES: " + courses + " ]\n[ BALANCE: £" + balance + " ]";
}
}
| [
"matthew.wetherill@outlook.com"
] | matthew.wetherill@outlook.com |
f2b472838f3445820b24a11bf9853aa59fe0a0b0 | e9d3fe893618bfacf15629780eff0489ab58f5c6 | /src/daodto/EmplDTO.java | 6975476bb9975d28259ca84a411842300ae7bd8e | [] | no_license | bangdoll0504/Kadai0-3-1 | 7c2315dbb0fd5786d6379ab5d6d6110484fafe35 | 71db3df51e83444cbeca7ba2d44e26fd5d4dcef7 | refs/heads/master | 2021-10-20T08:45:50.865420 | 2019-02-27T01:59:58 | 2019-02-27T01:59:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 855 | java | package daodto;
public class EmplDTO{
private String emplid; //商品ID
private String emplpass; //定価
private String empllname; //価格(販売予定価格)
private String emplfname; //商品名
public EmplDTO(){
this.emplid=null;
this.emplpass=null;
this.empllname=null;
this.emplfname=null;
}
public String getEmplid() {
return emplid;
}
public String getEmplPass() {
return emplpass;
}
public String getEmplLname() {
return empllname;
}
public String getEmplFname() {
return emplfname;
}
public void setCuserid(String emplid) {
this.emplid = emplid;
}
public void setPass(String pass) {
this.emplpass = pass;
}
public void setLname(String lname) {
this.empllname = lname;
}
public void setSname(String fname) {
this.emplfname = fname;
}
}
| [
"togo@hi-joho.ac.jp"
] | togo@hi-joho.ac.jp |
680a8b5e400bd19a1c69a1b8b4f473b3489ec698 | 308ee3c3941dafc4bfdb699f484cdbf42f317aea | /app/src/main/java/com/appster/turtle/ui/signUp/GreekLifeSelectorFragment.java | 0318c50e015379d585ed149c762e36406449e498 | [] | no_license | mahmoudbelal123/sandbox-1 | 7ca7ab94688ef89f4cef63359e09d7068d0a279e | b00a8bfc2ec37ea69539939a6609206befccbecd | refs/heads/master | 2022-09-25T10:22:58.657190 | 2020-06-04T17:40:28 | 2020-06-04T17:40:28 | 269,423,821 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 13,755 | java | package com.appster.turtle.ui.signUp;
import android.databinding.DataBindingUtil;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.content.ContextCompat;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.text.Editable;
import android.text.TextWatcher;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.appster.turtle.ApplicationController;
import com.appster.turtle.R;
import com.appster.turtle.adapter.BaseSearchAdapter;
import com.appster.turtle.databinding.FragmentGreekLifeSelectorBinding;
import com.appster.turtle.model.GreekLife;
import com.appster.turtle.network.BaseCallback;
import com.appster.turtle.network.RetrofitRestRepository;
import com.appster.turtle.network.response.GetGreekLifeResponse;
import com.appster.turtle.ui.BaseActivity;
import com.appster.turtle.ui.BaseFragment;
import com.appster.turtle.ui.Constants;
import com.appster.turtle.ui.profile.EditProfileActivity;
import com.appster.turtle.util.Utils;
import java.util.ArrayList;
import java.util.List;
import rx.Observable;
/**
* Copyright © 2017 Noise. All rights reserved.
* Created by navdeepbedi on 23/01/18.
* Activity geek life selector
*/
public class GreekLifeSelectorFragment extends BaseFragment implements View.OnClickListener {
private static final String SELECTED_FRAT = "selected_frat";
private static final String SELECTED_SOR = "selected_sor";
private int mVisibleItemCount;
private int mTotalItemCount;
private int mPastVisiblesItems;
private int mCurrentPage = 1;
private int mTotalPagesAvailable;
private boolean isLoading;
private FragmentGreekLifeSelectorBinding databinding;
private BaseSearchAdapter<GreekLife> adapterSor;
private BaseSearchAdapter<GreekLife> adapter;
private ArrayList<GreekLife> fraternities = new ArrayList<>();
private ArrayList<GreekLife> sororities = new ArrayList<>();
public GreekLifeSelectorFragment() {
}
public static GreekLifeSelectorFragment newInstance(ArrayList fratArrayList, ArrayList sorArrayList) {
GreekLifeSelectorFragment fragment = new GreekLifeSelectorFragment();
Bundle b = new Bundle();
b.putParcelableArrayList(SELECTED_FRAT, fratArrayList);
b.putParcelableArrayList(SELECTED_SOR, sorArrayList);
fragment.setArguments(b);
return fragment;
}
@Override
public String getFragmentName() {
return null;
}
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// if (!getArguments().getBoolean(IS_DORM))
// setMaxSelection(2);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
databinding = DataBindingUtil.inflate(inflater, R.layout.fragment_greek_life_selector, container, false);
initUI();
return databinding.getRoot();
}
private void initUI() {
databinding.tvFrat.setOnClickListener(this);
databinding.tvSor.setOnClickListener(this);
final LinearLayoutManager layoutManager = new LinearLayoutManager(getActivity(), LinearLayoutManager.VERTICAL, false);
databinding.rvFrat.setLayoutManager(layoutManager);
databinding.rvFrat.addItemDecoration(new ItemDecorationViewFrg(getActivity(), 0, Utils.dpToPx(getActivity(), 23)));
adapter = new BaseSearchAdapter<>(getActivity(), fratSelected, 2);
databinding.rvFrat.setAdapter(adapter);
getData();
databinding.rvFrat.setOnTouchListener((view, motionEvent) -> {
hideKeyboard();
return false;
});
databinding.rvSor.setOnTouchListener((view, motionEvent) -> {
hideKeyboard();
return false;
});
databinding.etFratSearch.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
}
@Override
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
if (getActivity().getCurrentFocus() == databinding.etFratSearch) {
// is only executed if the EditText was directly changed by the user
databinding.etSorSearch.setText(charSequence.toString());
searchLocal(charSequence.toString());
}
// getData(charSequence.toString());
}
@Override
public void afterTextChanged(Editable editable) {
}
});
databinding.rvFrat.addOnScrollListener(new RecyclerView.OnScrollListener() {
@Override
public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
super.onScrolled(recyclerView, dx, dy);
scrollListener(adapter, layoutManager, databinding.etFratSearch.getText().toString());
}
});
final LinearLayoutManager layoutManagerSor = new LinearLayoutManager(getActivity(), LinearLayoutManager.VERTICAL, false);
databinding.rvSor.setLayoutManager(layoutManagerSor);
databinding.rvSor.addItemDecoration(new ItemDecorationViewFrg(getActivity(), 0, Utils.dpToPx(getActivity(), 23)));
adapterSor = new BaseSearchAdapter<>(getActivity(), sorSelected, 2);
databinding.rvSor.setAdapter(adapterSor);
databinding.etSorSearch.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
}
@Override
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
if (getActivity().getCurrentFocus() == databinding.etSorSearch) {
// is only executed if the EditText was directly changed by the user
databinding.etFratSearch.setText(charSequence.toString());
searchLocal(charSequence.toString());
}
}
@Override
public void afterTextChanged(Editable editable) {
}
});
databinding.rvSor.addOnScrollListener(new RecyclerView.OnScrollListener() {
@Override
public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
super.onScrolled(recyclerView, dx, dy);
scrollListener(adapterSor, layoutManagerSor, databinding.etSorSearch.getText().toString());
}
});
databinding.rlTransparent.setOnClickListener(view -> {
// getActivity().getSupportFragmentManager().beginTransaction().remove(SelectorFragment.this).commit();
if (getActivity().getSupportFragmentManager().getBackStackEntryCount() > 0)
getActivity().getSupportFragmentManager().popBackStack();
});
databinding.tvDone.setOnClickListener(view -> {
// getActivity().getSupportFragmentManager().beginTransaction().remove(SelectorFragment.this).commit();
if (getActivity() instanceof ProfileSetup2Activity)
((ProfileSetup2Activity) getActivity()).setGreekLife(adapter.getSelectedData(), adapterSor.getSelectedData());
else
((EditProfileActivity) getActivity()).setGreekLife(adapter.getSelectedData(), adapterSor.getSelectedData());
if (getActivity().getSupportFragmentManager().getBackStackEntryCount() > 0)
getActivity().getSupportFragmentManager().popBackStack();
});
}
@Override
public void onClick(View view) {
switch (view.getId()) {
case R.id.tv_frat:
databinding.tvSor.setBackgroundResource(R.drawable.bg_tab_right_unselected);
databinding.tvFrat.setBackgroundDrawable(null);
databinding.rlFrat.setVisibility(View.VISIBLE);
databinding.rlSor.setVisibility(View.INVISIBLE);
break;
case R.id.tv_sor:
databinding.tvFrat.setBackgroundResource(R.drawable.bg_tab_left_unselected);
databinding.tvSor.setBackgroundDrawable(null);
databinding.rlSor.setVisibility(View.VISIBLE);
databinding.rlFrat.setVisibility(View.INVISIBLE);
break;
}
}
private void searchLocal(String query) {
if (!query.isEmpty()) {
///Greek Life local search
searchLocal(true, query);
searchLocal(false, query);
return;
} else {
// mCurrentPage=1;
// getData();
adapter.addAll(true, fraternities);
adapterSor.addAll(true, sororities);
}
}
public void searchLocal(boolean isFrat, String query) {
// if(query.length()<3)
// return;
ArrayList<GreekLife> arrayList = new ArrayList<>();
for (GreekLife greekLife : isFrat ? fraternities : sororities) {
if (greekLife.getValue().toLowerCase().contains(query.toLowerCase())) {
arrayList.add(greekLife);
}
}
// addAll(true, (ArrayList<T> )arrayList);
//
//
// notifyDataSetChanged();
if (isFrat)
adapter.addAll(true, arrayList);
else
adapterSor.addAll(true, arrayList);
}
private void getData() {
final RetrofitRestRepository repository = ((ApplicationController) getActivity().getApplicationContext()).provideRepository();
Observable observable = repository.getApiService().getGreekLife();
new BaseCallback<GetGreekLifeResponse>((BaseActivity) getActivity(), observable, true) {
@Override
public void onSuccess(GetGreekLifeResponse response) {
if (response != null) {
if (response != null) {
// mTotalPagesAvailable = ((GetGreekLifeResponse) response).getPagination().getTotalPages();
// isLoading = false;
// if (mCurrentPage == 1)
// adapter.addAll(true, ((GetGreekLifeResponse) response).getData());
// else
// adapter.addAll(((GetGreekLifeResponse) response).getData());
filter(response.getData());
}
}
}
@Override
public void onFail() {
}
};
}
private void scrollListener(BaseSearchAdapter adapter, LinearLayoutManager layoutManager, String query) {
// mVisibleItemCount = layoutManager.getChildCount();
// mTotalItemCount = layoutManager.getItemCount();
// mPastVisiblesItems = layoutManager.findFirstVisibleItemPosition();
// if (mCurrentPage < mTotalPagesAvailable && ((mPastVisiblesItems + mVisibleItemCount) >= mTotalItemCount && !isLoading)) {
//// if (data != null) {
// mCurrentPage++;
// isLoading = true;
// getData();
//
//// }
// }
}
private void toggleDone() {
if (adapterSor.getSelectedData().isEmpty() && adapter.getSelectedData().isEmpty()) {
databinding.tvDone.setBackgroundResource(R.drawable.btn_unselected_bg);
databinding.tvDone.setTextColor(ContextCompat.getColor(getActivity(), R.color.done_unselected_color));
} else {
databinding.tvDone.setBackgroundResource(R.drawable.rounded_tv_bg);
databinding.tvDone.setTextColor(ContextCompat.getColor(getActivity(), R.color.app_white));
}
}
private boolean isFratDone, isSorDone;
BaseSearchAdapter.ItemSelected fratSelected = new BaseSearchAdapter.ItemSelected() {
@Override
public void itemSelected(boolean isDone) {
isFratDone = isDone;
toggleDone();
}
@Override
public void itemSelectionDone(ArrayList item) {
}
};
BaseSearchAdapter.ItemSelected sorSelected = new BaseSearchAdapter.ItemSelected() {
@Override
public void itemSelected(boolean isDone) {
isSorDone = isDone;
toggleDone();
}
@Override
public void itemSelectionDone(ArrayList item) {
}
};
private void filter(List<GreekLife> greekLives) {
fraternities = new ArrayList<>();
sororities = new ArrayList<>();
for (GreekLife greekLife : greekLives) {
if (greekLife.getType().equalsIgnoreCase(Constants.FRATERNITIES))
fraternities.add(greekLife);
else
sororities.add(greekLife);
}
if (getArguments().getParcelableArrayList(SELECTED_FRAT) != null && !getArguments().getParcelableArrayList(SELECTED_FRAT).isEmpty())
adapter.setSelectedData(getArguments().getParcelableArrayList(SELECTED_FRAT));
if (getArguments().getParcelableArrayList(SELECTED_SOR) != null && !getArguments().getParcelableArrayList(SELECTED_SOR).isEmpty())
adapterSor.setSelectedData(getArguments().getParcelableArrayList(SELECTED_SOR));
if (mCurrentPage == 1) {
adapter.addAll(true, fraternities);
adapterSor.addAll(true, sororities);
} else {
adapter.addAll(fraternities);
adapterSor.addAll(sororities);
}
}
}
| [
"mahmoud.belal@fawry.com"
] | mahmoud.belal@fawry.com |
a1d0a091f0adead0bae415778c669495620d32a2 | 51e228ecafbc83acdd7ec25f2b18da5757190b11 | /src/objects/Edge3D.java | 6a7f2061f59c6fb7b1d3443b53eea60932da4c72 | [] | no_license | reavenheart/CellsVisualization | 6f1f8a880469bbdf6780d6d181ed0df106dfbcf8 | ee62f0d6fb37aed66449b81bb7b9e35933a09db5 | refs/heads/master | 2021-01-19T03:14:37.103426 | 2016-06-20T20:16:30 | 2016-06-20T20:16:30 | 55,391,302 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,544 | java | package objects;
/**
* Created by Denis on 24.05.2015.
*/
public class Edge3D {
public Vertex3D v1;
public Vertex3D v2;
public SpaceObject3D edgeCenter;
public Edge3D() {
v1 = new Vertex3D();
v2 = new Vertex3D();
edgeCenter = new SpaceObject3D();
}
public Edge3D(Vertex3D v1, Vertex3D v2) {
this.v1 = v1;
this.v2 = v2;
countEdgeCenter();
}
private void countEdgeCenter() {
edgeCenter = new SpaceObject3D();
/*
float distance = (float)Math.sqrt(
(v2.x - v1.x)*(v2.x - v1.x) +
(v2.y - v1.y)*(v2.y - v1.y) +
(v2.z - v1.z)*(v2.z - v1.z)
);
edgeCenter.x = (v2.x - v1.x)/distance;
edgeCenter.y = (v2.y - v1.y)/distance;
edgeCenter.z = (v2.z - v1.z)/distance;
edgeCenter.x = (v2.x - edgeCenter.x)*distance/2;
edgeCenter.y = (v2.y - edgeCenter.y)*distance/2;
edgeCenter.z = (v2.z - edgeCenter.z)*distance/2;
*/
edgeCenter.x = (v2.x + v1.x)/2;
edgeCenter.y = (v2.y + v1.y)/2;
edgeCenter.z = (v2.z + v1.z)/2;
}
public boolean containsVertex(Vertex3D vertex) {
if (v1.equals(vertex) || v2.equals(vertex))
return true;
return false;
}
public boolean containsVerticies(Vertex3D v1, Vertex3D v2) {
if ((this.v1.equals(v1) && this.v2.equals(v2)) || (this.v1.equals(v2) && this.v2.equals(v1)))
return true;
return false;
}
}
| [
"reavenheart1@gmail.com"
] | reavenheart1@gmail.com |
109e25e1a7dfc8860515bbdf144be71b915b2c82 | caa682e4928acf664c78b9c088a0b6330dc7b331 | /src/com/neuq/bean/BctAnswer.java | 44c2b12142bd8e0abfd09661db1ba2f09650514c | [] | no_license | qingyuanran/OnlineExam | 9b9a66ae8568e3f978ecc627555baa6d58db97a2 | 31ccd63dfb0c806657447e9a0d11038ea9bef333 | refs/heads/master | 2020-12-12T02:30:25.441237 | 2020-01-15T07:15:33 | 2020-01-15T07:15:33 | 234,021,483 | 3 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,611 | java | package com.neuq.bean;
import java.io.Serializable;
public class BctAnswer implements Serializable {
private static final long serialVersionUID = 1L;
private int id;
private String username;
private String papername;
private String answerpath1;
private String answerpath2;
public BctAnswer() {
// TODO 自动生成的构造函数存根
}
/**
* @param username
* @param papername
* @param answerpath1
* @param answerpath2
*/
public BctAnswer(String username, String papername, String answerpath1, String answerpath2) {
super();
this.username = username;
this.papername = papername;
this.answerpath1 = answerpath1;
this.answerpath2 = answerpath2;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPapername() {
return papername;
}
public void setPapername(String papername) {
this.papername = papername;
}
public String getAnswerpath1() {
return answerpath1;
}
public void setAnswerpath1(String answerpath1) {
this.answerpath1 = answerpath1;
}
public String getAnswerpath2() {
return answerpath2;
}
public void setAnswerpath2(String answerpath2) {
this.answerpath2 = answerpath2;
}
@Override
public String toString() {
return "BctAnswer [id=" + id + ", username=" + username + ", papername=" + papername + ", answerpath1="
+ answerpath1 + ", answerpath2=" + answerpath2 + "]";
}
public static long getSerialversionuid() {
return serialVersionUID;
}
}
| [
"756523394@qq.com"
] | 756523394@qq.com |
226b734bc2c347d0fa5707fdea6008e4a7f62c65 | c5384147a655bff51e1fc83feb332b0fee4d8e21 | /src/com/designpattern/simplefactory/Driver.java | 51268655a123783330c7a0b1b7e5a2d3e1d26361 | [] | no_license | Nisarg04/TestRepo | 9f2b276c287a4e4d8d7bef9eddfe25c04302074d | 718263779b92cd08c7c7769317baed29f3145445 | refs/heads/master | 2020-12-24T18:41:52.184280 | 2018-12-02T08:01:54 | 2018-12-02T08:01:54 | 86,154,341 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 656 | java | package com.designpattern.simplefactory;
/**
* Class with main method in it,
* calls the static factory method of the factory class
*
* Get an instance of Sedan, Mini or Luxury
*
* @author nisargkumar.s.patil
*/
public class Driver {
public static void main(String[] args) {
Car sedan = CarFactory.buildCar(CarType.SEDAN);
Car mini = CarFactory.buildCar(CarType.MINI);
Car luxury = CarFactory.buildCar(CarType.LUXURY);
System.out.println("SEDAN : " + sedan.getClass().getName());
System.out.println("MINI : " + mini.getClass().getName());
System.out.println("LUXURY : " + luxury.getClass().getName());
}
}
| [
"nisargkumar.s.patil@accenture.com"
] | nisargkumar.s.patil@accenture.com |
dd0bbfa9e8ad262a8102689e8c05715f431e4ace | d379ed6310150cfdcc76022683c3a6a57a82496f | /app/src/main/java/com/example/spartan13/myapplication/MeassureActivity.java | 74f203cd3685a6b7d8e39cf605c98c7ebef263cb | [] | no_license | vaclavslavik/GPS_Sensor | 9a962ea558805136c74b9049e07f481d6366327a | d4cd01cd2408981f87dcb2a18eeefdb451f99947 | refs/heads/master | 2021-01-18T21:15:12.418747 | 2015-02-17T21:51:56 | 2015-02-17T21:51:56 | 30,939,689 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,725 | java | package com.example.spartan13.myapplication;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import com.example.spartan13.myapplication.model.GPSTracker;
import com.example.spartan13.myapplication.model.Recorder;
import com.example.spartan13.myapplication.model.RecorderSQLiteHelper;
public class MeassureActivity extends ActionBarActivity {
private GPSTracker gpsTracker;
private TextView textView;
private Button button;
private Button buttonBegin;
private Context context;
private boolean active = true;
private Button buttonStop;
private Button buttonSaveMeassure;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
this.context = this;
this.buttonBegin = (Button)findViewById(R.id.buttonBegin);
this.textView = (TextView)findViewById(R.id.textView);
this.textView.setText("");
this.gpsTracker = new GPSTracker(this, textView);
if (!this.gpsTracker.isGPSEnabled()){
this.buildAlertMessageNoGps();
}
this.buttonSaveMeassure = (Button)findViewById(R.id.button_save_meassure);
this.buttonSaveMeassure.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
saveMeassure();
}
});
this.buttonBegin = (Button)findViewById(R.id.buttonBegin);
View.OnClickListener l = new View.OnClickListener() {
@Override
public void onClick(View v) {
active = true;
buttonStop.setText(R.string.stop_meassure);
gpsTracker.renew();
}
};
buttonBegin.setOnClickListener(l);
this.buttonStop = (Button)findViewById(R.id.stopButton);
buttonStop.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
active = !active;
if (active == true){
buttonStop.setText(R.string.stop_meassure);
}else{
buttonStop.setText(R.string.begin_meassure);
}
gpsTracker.setActive(active);
}
});
}
private void buildAlertMessageNoGps() {
final AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage(R.string.gps_not_enabled)
.setCancelable(false)
.setPositiveButton(R.string.yes, new DialogInterface.OnClickListener() {
public void onClick(@SuppressWarnings("unused") final DialogInterface dialog, @SuppressWarnings("unused") final int id) {
startActivity(new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS));
}
})
.setNegativeButton(R.string.no, new DialogInterface.OnClickListener() {
public void onClick(final DialogInterface dialog, @SuppressWarnings("unused") final int id) {
dialog.cancel();
}
});
final AlertDialog alert = builder.create();
alert.show();
}
private void saveMeassure(){
Recorder recorder = this.gpsTracker.getRecorder();
RecorderSQLiteHelper db = new RecorderSQLiteHelper(this);
db.addRecorder(recorder);
// přepnutí do hlavní aktivity
this.finish();
Intent nextScreen = new Intent(getApplicationContext(), MenuActivity.class);
startActivity(nextScreen);
this.finish();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.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();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
| [
"vaclav.slavik@tul.cz"
] | vaclav.slavik@tul.cz |
58ab3458adcf4d3208269c682a1da24b92cd8705 | 37b8fcc06d051ce1f5134d7e3e0893e56f7c1f0c | /app/src/main/java/com/example/tae/second_assignment/ui/rock_music/IRockMusicListMvpView.java | 843dab03685d2d9ab4127d8fafd5390724fe8bcf | [] | no_license | appexpertsqasim/second_week_updated | 23b848ecc4e8f965e3804f094ba918f15e682498 | 84cf587fbe54deba359c7ab08f2e27d9cb59ae75 | refs/heads/master | 2021-07-09T01:36:44.904769 | 2017-10-02T09:14:09 | 2017-10-02T09:14:09 | 105,515,799 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 347 | java | package com.example.tae.second_assignment.ui.rock_music;
import com.example.tae.second_assignment.network.model.Music_Model;
import com.example.tae.second_assignment.ui.base.MvpView;
/**
* Created by TAE on 29/09/2017.
*/
public interface IRockMusicListMvpView extends MvpView {
void onFetchDataCompleted(Music_Model rockMusic_model);
}
| [
"mugurel.budara@gmail.com"
] | mugurel.budara@gmail.com |
2997cedd4bb8521b7cb4543b48372138a8a93a94 | 63dc55b40032794aea578cec2a4bed644dfe6d1a | /S3/HMIN301-IngenerieDirigeParModeles/CC/CC_IDM_20/src/processus/ProcessusFactory.java | c8c5272236b10b4115ce41f0f2206ac240f6015b | [] | no_license | KhanggNguyen/M2 | 633f5e0584979038f49e21652cd61c0a550d78cf | 80dd180a61ed4da86b87e83a66a0628a876a59f5 | refs/heads/main | 2023-02-25T12:40:57.839177 | 2021-01-17T21:09:47 | 2021-01-17T21:09:47 | 307,158,885 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,613 | java | /**
*/
package processus;
import org.eclipse.emf.ecore.EFactory;
/**
* <!-- begin-user-doc -->
* The <b>Factory</b> for the model.
* It provides a create method for each non-abstract class of the model.
* <!-- end-user-doc -->
* @see processus.ProcessusPackage
* @generated
*/
public interface ProcessusFactory extends EFactory {
/**
* The singleton instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
ProcessusFactory eINSTANCE = processus.impl.ProcessusFactoryImpl.init();
/**
* Returns a new object of class '<em>Process</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Process</em>'.
* @generated
*/
Process createProcess();
/**
* Returns a new object of class '<em>Activity</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Activity</em>'.
* @generated
*/
Activity createActivity();
/**
* Returns a new object of class '<em>Init</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Init</em>'.
* @generated
*/
Init createInit();
/**
* Returns a new object of class '<em>End</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>End</em>'.
* @generated
*/
End createEnd();
/**
* Returns the package supported by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the package supported by this factory.
* @generated
*/
ProcessusPackage getProcessusPackage();
} //ProcessusFactory
| [
"kukhang2411@gmail.com"
] | kukhang2411@gmail.com |
50004eabf2e20f356aa902c98868f201bdd1c224 | e13f1944ce58c67848a6e30061ccbdd8f17508bc | /javax/management/monitor/Monitor.java | 08f2f9f6867af01070509af4f9a9e5a39658933d | [] | no_license | Survivor1874/src | 9dfee0b3c15cd3217feaa361d4ae2069a61d3627 | a6873d9c0161fcca1992ac3dfb47a929122bc21d | refs/heads/master | 2020-06-05T04:46:05.723305 | 2019-09-24T02:11:56 | 2019-09-24T02:11:56 | 192,317,524 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 58,151 | java | /*
* Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package javax.management.monitor;
import static com.sun.jmx.defaults.JmxProperties.MONITOR_LOGGER;
import com.sun.jmx.mbeanserver.GetPropertyAction;
import com.sun.jmx.mbeanserver.Introspector;
import java.io.IOException;
import java.security.AccessControlContext;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.security.ProtectionDomain;
import java.util.List;
import java.util.Map;
import java.util.WeakHashMap;
import java.util.concurrent.CopyOnWriteArrayList;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicLong;
import java.util.logging.Level;
import javax.management.AttributeNotFoundException;
import javax.management.InstanceNotFoundException;
import javax.management.IntrospectionException;
import javax.management.MBeanAttributeInfo;
import javax.management.MBeanException;
import javax.management.MBeanInfo;
import javax.management.MBeanRegistration;
import javax.management.MBeanServer;
import javax.management.MBeanServerConnection;
import javax.management.NotificationBroadcasterSupport;
import javax.management.ObjectName;
import javax.management.ReflectionException;
import static javax.management.monitor.MonitorNotification.*;
/**
* Defines the part common to all monitor MBeans.
* A monitor MBean monitors values of an attribute common to a set of observed
* MBeans. The observed attribute is monitored at intervals specified by the
* granularity period. A gauge value (derived gauge) is derived from the values
* of the observed attribute.
*
*
* @since 1.5
*/
public abstract class Monitor
extends NotificationBroadcasterSupport
implements MonitorMBean, MBeanRegistration {
/*
* ------------------------------------------
* PACKAGE CLASSES
* ------------------------------------------
*/
static class ObservedObject {
public ObservedObject(ObjectName observedObject) {
this.observedObject = observedObject;
}
public final ObjectName getObservedObject() {
return observedObject;
}
public final synchronized int getAlreadyNotified() {
return alreadyNotified;
}
public final synchronized void setAlreadyNotified(int alreadyNotified) {
this.alreadyNotified = alreadyNotified;
}
public final synchronized Object getDerivedGauge() {
return derivedGauge;
}
public final synchronized void setDerivedGauge(Object derivedGauge) {
this.derivedGauge = derivedGauge;
}
public final synchronized long getDerivedGaugeTimeStamp() {
return derivedGaugeTimeStamp;
}
public final synchronized void setDerivedGaugeTimeStamp(
long derivedGaugeTimeStamp) {
this.derivedGaugeTimeStamp = derivedGaugeTimeStamp;
}
private final ObjectName observedObject;
private int alreadyNotified;
private Object derivedGauge;
private long derivedGaugeTimeStamp;
}
/*
* ------------------------------------------
* PRIVATE VARIABLES
* ------------------------------------------
*/
/**
* Attribute to observe.
*/
private String observedAttribute;
/**
* Monitor granularity period (in milliseconds).
* The default value is set to 10 seconds.
*/
private long granularityPeriod = 10000;
/**
* Monitor state.
* The default value is set to <CODE>false</CODE>.
*/
private boolean isActive = false;
/**
* Monitor sequence number.
* The default value is set to 0.
*/
private final AtomicLong sequenceNumber = new AtomicLong();
/**
* Complex type attribute flag.
* The default value is set to <CODE>false</CODE>.
*/
private boolean isComplexTypeAttribute = false;
/**
* First attribute name extracted from complex type attribute name.
*/
private String firstAttribute;
/**
* Remaining attribute names extracted from complex type attribute name.
*/
private final List<String> remainingAttributes =
new CopyOnWriteArrayList<String>();
/**
* AccessControlContext of the Monitor.start() caller.
*/
private static final AccessControlContext noPermissionsACC =
new AccessControlContext(
new ProtectionDomain[] {new ProtectionDomain(null, null)});
private volatile AccessControlContext acc = noPermissionsACC;
/**
* Scheduler Service.
*/
private static final ScheduledExecutorService scheduler =
Executors.newSingleThreadScheduledExecutor(
new DaemonThreadFactory("Scheduler"));
/**
* Map containing the thread pool executor per thread group.
*/
private static final Map<ThreadPoolExecutor, Void> executors =
new WeakHashMap<ThreadPoolExecutor, Void>();
/**
* Lock for executors map.
*/
private static final Object executorsLock = new Object();
/**
* Maximum Pool Size
*/
private static final int maximumPoolSize;
static {
final String maximumPoolSizeSysProp = "jmx.x.monitor.maximum.pool.size";
final String maximumPoolSizeStr = AccessController.doPrivileged(
new GetPropertyAction(maximumPoolSizeSysProp));
if (maximumPoolSizeStr == null ||
maximumPoolSizeStr.trim().length() == 0) {
maximumPoolSize = 10;
} else {
int maximumPoolSizeTmp = 10;
try {
maximumPoolSizeTmp = Integer.parseInt(maximumPoolSizeStr);
} catch (NumberFormatException e) {
if (MONITOR_LOGGER.isLoggable(Level.FINER)) {
MONITOR_LOGGER.logp(Level.FINER, Monitor.class.getName(),
"<static initializer>",
"Wrong value for " + maximumPoolSizeSysProp +
" system property", e);
MONITOR_LOGGER.logp(Level.FINER, Monitor.class.getName(),
"<static initializer>",
maximumPoolSizeSysProp + " defaults to 10");
}
maximumPoolSizeTmp = 10;
}
if (maximumPoolSizeTmp < 1) {
maximumPoolSize = 1;
} else {
maximumPoolSize = maximumPoolSizeTmp;
}
}
}
/**
* Future associated to the current monitor task.
*/
private Future<?> monitorFuture;
/**
* Scheduler task to be executed by the Scheduler Service.
*/
private final SchedulerTask schedulerTask = new SchedulerTask();
/**
* ScheduledFuture associated to the current scheduler task.
*/
private ScheduledFuture<?> schedulerFuture;
/*
* ------------------------------------------
* PROTECTED VARIABLES
* ------------------------------------------
*/
/**
* The amount by which the capacity of the monitor arrays are
* automatically incremented when their size becomes greater than
* their capacity.
*/
protected final static int capacityIncrement = 16;
/**
* The number of valid components in the vector of observed objects.
*
*/
protected int elementCount = 0;
/**
* Monitor errors that have already been notified.
* @deprecated equivalent to {@link #alreadyNotifieds}[0].
*/
@Deprecated
protected int alreadyNotified = 0;
/**
* <p>Selected monitor errors that have already been notified.</p>
*
* <p>Each element in this array corresponds to an observed object
* in the vector. It contains a bit mask of the flags {@link
* #OBSERVED_OBJECT_ERROR_NOTIFIED} etc, indicating whether the
* corresponding notification has already been sent for the MBean
* being monitored.</p>
*
*/
protected int alreadyNotifieds[] = new int[capacityIncrement];
/**
* Reference to the MBean server. This reference is null when the
* monitor MBean is not registered in an MBean server. This
* reference is initialized before the monitor MBean is registered
* in the MBean server.
* @see #preRegister(MBeanServer server, ObjectName name)
*/
protected MBeanServer server;
// Flags defining possible monitor errors.
//
/**
* This flag is used to reset the {@link #alreadyNotifieds
* alreadyNotifieds} monitor attribute.
*/
protected static final int RESET_FLAGS_ALREADY_NOTIFIED = 0;
/**
* Flag denoting that a notification has occurred after changing
* the observed object. This flag is used to check that the new
* observed object is registered in the MBean server at the time
* of the first notification.
*/
protected static final int OBSERVED_OBJECT_ERROR_NOTIFIED = 1;
/**
* Flag denoting that a notification has occurred after changing
* the observed attribute. This flag is used to check that the
* new observed attribute belongs to the observed object at the
* time of the first notification.
*/
protected static final int OBSERVED_ATTRIBUTE_ERROR_NOTIFIED = 2;
/**
* Flag denoting that a notification has occurred after changing
* the observed object or the observed attribute. This flag is
* used to check that the observed attribute type is correct
* (depending on the monitor in use) at the time of the first
* notification.
*/
protected static final int OBSERVED_ATTRIBUTE_TYPE_ERROR_NOTIFIED = 4;
/**
* Flag denoting that a notification has occurred after changing
* the observed object or the observed attribute. This flag is
* used to notify any exception (except the cases described above)
* when trying to get the value of the observed attribute at the
* time of the first notification.
*/
protected static final int RUNTIME_ERROR_NOTIFIED = 8;
/**
* This field is retained for compatibility but should not be referenced.
*
* @deprecated No replacement.
*/
@Deprecated
protected String dbgTag = Monitor.class.getName();
/*
* ------------------------------------------
* PACKAGE VARIABLES
* ------------------------------------------
*/
/**
* List of ObservedObjects to which the attribute to observe belongs.
*/
final List<ObservedObject> observedObjects =
new CopyOnWriteArrayList<ObservedObject>();
/**
* Flag denoting that a notification has occurred after changing
* the threshold. This flag is used to notify any exception
* related to invalid thresholds settings.
*/
static final int THRESHOLD_ERROR_NOTIFIED = 16;
/**
* Enumeration used to keep trace of the derived gauge type
* in counter and gauge monitors.
*/
enum NumericalType { BYTE, SHORT, INTEGER, LONG, FLOAT, DOUBLE };
/**
* Constant used to initialize all the numeric values.
*/
static final Integer INTEGER_ZERO = 0;
/*
* ------------------------------------------
* PUBLIC METHODS
* ------------------------------------------
*/
/**
* Allows the monitor MBean to perform any operations it needs
* before being registered in the MBean server.
* <P>
* Initializes the reference to the MBean server.
*
* @param server The MBean server in which the monitor MBean will
* be registered.
* @param name The object name of the monitor MBean.
*
* @return The name of the monitor MBean registered.
*
* @exception Exception
*/
public ObjectName preRegister(MBeanServer server, ObjectName name)
throws Exception {
MONITOR_LOGGER.logp(Level.FINER, Monitor.class.getName(),
"preRegister(MBeanServer, ObjectName)",
"initialize the reference on the MBean server");
this.server = server;
return name;
}
/**
* Allows the monitor MBean to perform any operations needed after
* having been registered in the MBean server or after the
* registration has failed.
* <P>
* Not used in this context.
*/
public void postRegister(Boolean registrationDone) {
}
/**
* Allows the monitor MBean to perform any operations it needs
* before being unregistered by the MBean server.
* <P>
* Stops the monitor.
*
* @exception Exception
*/
public void preDeregister() throws Exception {
MONITOR_LOGGER.logp(Level.FINER, Monitor.class.getName(),
"preDeregister()", "stop the monitor");
// Stop the Monitor.
//
stop();
}
/**
* Allows the monitor MBean to perform any operations needed after
* having been unregistered by the MBean server.
* <P>
* Not used in this context.
*/
public void postDeregister() {
}
/**
* Starts the monitor.
*/
public abstract void start();
/**
* Stops the monitor.
*/
public abstract void stop();
// GETTERS AND SETTERS
//--------------------
/**
* Returns the object name of the first object in the set of observed
* MBeans, or <code>null</code> if there is no such object.
*
* @return The object being observed.
*
* @see #setObservedObject(ObjectName)
*
* @deprecated As of JMX 1.2, replaced by {@link #getObservedObjects}
*/
@Deprecated
public synchronized ObjectName getObservedObject() {
if (observedObjects.isEmpty()) {
return null;
} else {
return observedObjects.get(0).getObservedObject();
}
}
/**
* Removes all objects from the set of observed objects, and then adds the
* specified object.
*
* @param object The object to observe.
* @exception IllegalArgumentException The specified
* object is null.
*
* @see #getObservedObject()
*
* @deprecated As of JMX 1.2, replaced by {@link #addObservedObject}
*/
@Deprecated
public synchronized void setObservedObject(ObjectName object)
throws IllegalArgumentException {
if (object == null)
throw new IllegalArgumentException("Null observed object");
if (observedObjects.size() == 1 && containsObservedObject(object))
return;
observedObjects.clear();
addObservedObject(object);
}
/**
* Adds the specified object in the set of observed MBeans, if this object
* is not already present.
*
* @param object The object to observe.
* @exception IllegalArgumentException The specified object is null.
*
*/
public synchronized void addObservedObject(ObjectName object)
throws IllegalArgumentException {
if (object == null) {
throw new IllegalArgumentException("Null observed object");
}
// Check that the specified object is not already contained.
//
if (containsObservedObject(object))
return;
// Add the specified object in the list.
//
ObservedObject o = createObservedObject(object);
o.setAlreadyNotified(RESET_FLAGS_ALREADY_NOTIFIED);
o.setDerivedGauge(INTEGER_ZERO);
o.setDerivedGaugeTimeStamp(System.currentTimeMillis());
observedObjects.add(o);
// Update legacy protected stuff.
//
createAlreadyNotified();
}
/**
* Removes the specified object from the set of observed MBeans.
*
* @param object The object to remove.
*
*/
public synchronized void removeObservedObject(ObjectName object) {
// Check for null object.
//
if (object == null)
return;
final ObservedObject o = getObservedObject(object);
if (o != null) {
// Remove the specified object from the list.
//
observedObjects.remove(o);
// Update legacy protected stuff.
//
createAlreadyNotified();
}
}
/**
* Tests whether the specified object is in the set of observed MBeans.
*
* @param object The object to check.
* @return <CODE>true</CODE> if the specified object is present,
* <CODE>false</CODE> otherwise.
*
*/
public synchronized boolean containsObservedObject(ObjectName object) {
return getObservedObject(object) != null;
}
/**
* Returns an array containing the objects being observed.
*
* @return The objects being observed.
*
*/
public synchronized ObjectName[] getObservedObjects() {
ObjectName[] names = new ObjectName[observedObjects.size()];
for (int i = 0; i < names.length; i++)
names[i] = observedObjects.get(i).getObservedObject();
return names;
}
/**
* Gets the attribute being observed.
* <BR>The observed attribute is not initialized by default (set to null).
*
* @return The attribute being observed.
*
* @see #setObservedAttribute
*/
public synchronized String getObservedAttribute() {
return observedAttribute;
}
/**
* Sets the attribute to observe.
* <BR>The observed attribute is not initialized by default (set to null).
*
* @param attribute The attribute to observe.
* @exception IllegalArgumentException The specified
* attribute is null.
*
* @see #getObservedAttribute
*/
public void setObservedAttribute(String attribute)
throws IllegalArgumentException {
if (attribute == null) {
throw new IllegalArgumentException("Null observed attribute");
}
// Update alreadyNotified array.
//
synchronized (this) {
if (observedAttribute != null &&
observedAttribute.equals(attribute))
return;
observedAttribute = attribute;
// Reset the complex type attribute information
// such that it is recalculated again.
//
cleanupIsComplexTypeAttribute();
int index = 0;
for (ObservedObject o : observedObjects) {
resetAlreadyNotified(o, index++,
OBSERVED_ATTRIBUTE_ERROR_NOTIFIED |
OBSERVED_ATTRIBUTE_TYPE_ERROR_NOTIFIED);
}
}
}
/**
* Gets the granularity period (in milliseconds).
* <BR>The default value of the granularity period is 10 seconds.
*
* @return The granularity period value.
*
* @see #setGranularityPeriod
*/
public synchronized long getGranularityPeriod() {
return granularityPeriod;
}
/**
* Sets the granularity period (in milliseconds).
* <BR>The default value of the granularity period is 10 seconds.
*
* @param period The granularity period value.
* @exception IllegalArgumentException The granularity
* period is less than or equal to zero.
*
* @see #getGranularityPeriod
*/
public synchronized void setGranularityPeriod(long period)
throws IllegalArgumentException {
if (period <= 0) {
throw new IllegalArgumentException("Nonpositive granularity " +
"period");
}
if (granularityPeriod == period)
return;
granularityPeriod = period;
// Reschedule the scheduler task if the monitor is active.
//
if (isActive()) {
cleanupFutures();
schedulerFuture = scheduler.schedule(schedulerTask,
period,
TimeUnit.MILLISECONDS);
}
}
/**
* Tests whether the monitor MBean is active. A monitor MBean is
* marked active when the {@link #start start} method is called.
* It becomes inactive when the {@link #stop stop} method is
* called.
*
* @return <CODE>true</CODE> if the monitor MBean is active,
* <CODE>false</CODE> otherwise.
*/
/* This method must be synchronized so that the monitoring thread will
correctly see modifications to the isActive variable. See the MonitorTask
action executed by the Scheduled Executor Service. */
public synchronized boolean isActive() {
return isActive;
}
/*
* ------------------------------------------
* PACKAGE METHODS
* ------------------------------------------
*/
/**
* Starts the monitor.
*/
void doStart() {
MONITOR_LOGGER.logp(Level.FINER, Monitor.class.getName(),
"doStart()", "start the monitor");
synchronized (this) {
if (isActive()) {
MONITOR_LOGGER.logp(Level.FINER, Monitor.class.getName(),
"doStart()", "the monitor is already active");
return;
}
isActive = true;
// Reset the complex type attribute information
// such that it is recalculated again.
//
cleanupIsComplexTypeAttribute();
// Cache the AccessControlContext of the Monitor.start() caller.
// The monitor tasks will be executed within this context.
//
acc = AccessController.getContext();
// Start the scheduler.
//
cleanupFutures();
schedulerTask.setMonitorTask(new MonitorTask());
schedulerFuture = scheduler.schedule(schedulerTask,
getGranularityPeriod(),
TimeUnit.MILLISECONDS);
}
}
/**
* Stops the monitor.
*/
void doStop() {
MONITOR_LOGGER.logp(Level.FINER, Monitor.class.getName(),
"doStop()", "stop the monitor");
synchronized (this) {
if (!isActive()) {
MONITOR_LOGGER.logp(Level.FINER, Monitor.class.getName(),
"doStop()", "the monitor is not active");
return;
}
isActive = false;
// Cancel the scheduler task associated with the
// scheduler and its associated monitor task.
//
cleanupFutures();
// Reset the AccessControlContext.
//
acc = noPermissionsACC;
// Reset the complex type attribute information
// such that it is recalculated again.
//
cleanupIsComplexTypeAttribute();
}
}
/**
* Gets the derived gauge of the specified object, if this object is
* contained in the set of observed MBeans, or <code>null</code> otherwise.
*
* @param object the name of the object whose derived gauge is to
* be returned.
*
* @return The derived gauge of the specified object.
*
* @since 1.6
*/
synchronized Object getDerivedGauge(ObjectName object) {
final ObservedObject o = getObservedObject(object);
return o == null ? null : o.getDerivedGauge();
}
/**
* Gets the derived gauge timestamp of the specified object, if
* this object is contained in the set of observed MBeans, or
* <code>0</code> otherwise.
*
* @param object the name of the object whose derived gauge
* timestamp is to be returned.
*
* @return The derived gauge timestamp of the specified object.
*
*/
synchronized long getDerivedGaugeTimeStamp(ObjectName object) {
final ObservedObject o = getObservedObject(object);
return o == null ? 0 : o.getDerivedGaugeTimeStamp();
}
Object getAttribute(MBeanServerConnection mbsc,
ObjectName object,
String attribute)
throws AttributeNotFoundException,
InstanceNotFoundException,
MBeanException,
ReflectionException,
IOException {
// Check for "ObservedAttribute" replacement.
// This could happen if a thread A called setObservedAttribute()
// while other thread B was in the middle of the monitor() method
// and received the old observed attribute value.
//
final boolean lookupMBeanInfo;
synchronized (this) {
if (!isActive())
throw new IllegalArgumentException(
"The monitor has been stopped");
if (!attribute.equals(getObservedAttribute()))
throw new IllegalArgumentException(
"The observed attribute has been changed");
lookupMBeanInfo =
(firstAttribute == null && attribute.indexOf('.') != -1);
}
// Look up MBeanInfo if needed
//
final MBeanInfo mbi;
if (lookupMBeanInfo) {
try {
mbi = mbsc.getMBeanInfo(object);
} catch (IntrospectionException e) {
throw new IllegalArgumentException(e);
}
} else {
mbi = null;
}
// Check for complex type attribute
//
final String fa;
synchronized (this) {
if (!isActive())
throw new IllegalArgumentException(
"The monitor has been stopped");
if (!attribute.equals(getObservedAttribute()))
throw new IllegalArgumentException(
"The observed attribute has been changed");
if (firstAttribute == null) {
if (attribute.indexOf('.') != -1) {
MBeanAttributeInfo mbaiArray[] = mbi.getAttributes();
for (MBeanAttributeInfo mbai : mbaiArray) {
if (attribute.equals(mbai.getName())) {
firstAttribute = attribute;
break;
}
}
if (firstAttribute == null) {
String tokens[] = attribute.split("\\.", -1);
firstAttribute = tokens[0];
for (int i = 1; i < tokens.length; i++)
remainingAttributes.add(tokens[i]);
isComplexTypeAttribute = true;
}
} else {
firstAttribute = attribute;
}
}
fa = firstAttribute;
}
return mbsc.getAttribute(object, fa);
}
Comparable<?> getComparableFromAttribute(ObjectName object,
String attribute,
Object value)
throws AttributeNotFoundException {
if (isComplexTypeAttribute) {
Object v = value;
for (String attr : remainingAttributes)
v = Introspector.elementFromComplex(v, attr);
return (Comparable<?>) v;
} else {
return (Comparable<?>) value;
}
}
boolean isComparableTypeValid(ObjectName object,
String attribute,
Comparable<?> value) {
return true;
}
String buildErrorNotification(ObjectName object,
String attribute,
Comparable<?> value) {
return null;
}
void onErrorNotification(MonitorNotification notification) {
}
Comparable<?> getDerivedGaugeFromComparable(ObjectName object,
String attribute,
Comparable<?> value) {
return (Comparable<?>) value;
}
MonitorNotification buildAlarmNotification(ObjectName object,
String attribute,
Comparable<?> value){
return null;
}
boolean isThresholdTypeValid(ObjectName object,
String attribute,
Comparable<?> value) {
return true;
}
static Class<? extends Number> classForType(NumericalType type) {
switch (type) {
case BYTE:
return Byte.class;
case SHORT:
return Short.class;
case INTEGER:
return Integer.class;
case LONG:
return Long.class;
case FLOAT:
return Float.class;
case DOUBLE:
return Double.class;
default:
throw new IllegalArgumentException(
"Unsupported numerical type");
}
}
static boolean isValidForType(Object value, Class<? extends Number> c) {
return ((value == INTEGER_ZERO) || c.isInstance(value));
}
/**
* Get the specified {@code ObservedObject} if this object is
* contained in the set of observed MBeans, or {@code null}
* otherwise.
*
* @param object the name of the {@code ObservedObject} to retrieve.
*
* @return The {@code ObservedObject} associated to the supplied
* {@code ObjectName}.
*
* @since 1.6
*/
synchronized ObservedObject getObservedObject(ObjectName object) {
for (ObservedObject o : observedObjects)
if (o.getObservedObject().equals(object))
return o;
return null;
}
/**
* Factory method for ObservedObject creation.
*
* @since 1.6
*/
ObservedObject createObservedObject(ObjectName object) {
return new ObservedObject(object);
}
/**
* Create the {@link #alreadyNotified} array from
* the {@code ObservedObject} array list.
*/
synchronized void createAlreadyNotified() {
// Update elementCount.
//
elementCount = observedObjects.size();
// Update arrays.
//
alreadyNotifieds = new int[elementCount];
for (int i = 0; i < elementCount; i++) {
alreadyNotifieds[i] = observedObjects.get(i).getAlreadyNotified();
}
updateDeprecatedAlreadyNotified();
}
/**
* Update the deprecated {@link #alreadyNotified} field.
*/
synchronized void updateDeprecatedAlreadyNotified() {
if (elementCount > 0)
alreadyNotified = alreadyNotifieds[0];
else
alreadyNotified = 0;
}
/**
* Update the {@link #alreadyNotifieds} array element at the given index
* with the already notified flag in the given {@code ObservedObject}.
* Ensure the deprecated {@link #alreadyNotified} field is updated
* if appropriate.
*/
synchronized void updateAlreadyNotified(ObservedObject o, int index) {
alreadyNotifieds[index] = o.getAlreadyNotified();
if (index == 0)
updateDeprecatedAlreadyNotified();
}
/**
* Check if the given bits in the given element of {@link #alreadyNotifieds}
* are set.
*/
synchronized boolean isAlreadyNotified(ObservedObject o, int mask) {
return ((o.getAlreadyNotified() & mask) != 0);
}
/**
* Set the given bits in the given element of {@link #alreadyNotifieds}.
* Ensure the deprecated {@link #alreadyNotified} field is updated
* if appropriate.
*/
synchronized void setAlreadyNotified(ObservedObject o, int index,
int mask, int an[]) {
final int i = computeAlreadyNotifiedIndex(o, index, an);
if (i == -1)
return;
o.setAlreadyNotified(o.getAlreadyNotified() | mask);
updateAlreadyNotified(o, i);
}
/**
* Reset the given bits in the given element of {@link #alreadyNotifieds}.
* Ensure the deprecated {@link #alreadyNotified} field is updated
* if appropriate.
*/
synchronized void resetAlreadyNotified(ObservedObject o,
int index, int mask) {
o.setAlreadyNotified(o.getAlreadyNotified() & ~mask);
updateAlreadyNotified(o, index);
}
/**
* Reset all bits in the given element of {@link #alreadyNotifieds}.
* Ensure the deprecated {@link #alreadyNotified} field is updated
* if appropriate.
*/
synchronized void resetAllAlreadyNotified(ObservedObject o,
int index, int an[]) {
final int i = computeAlreadyNotifiedIndex(o, index, an);
if (i == -1)
return;
o.setAlreadyNotified(RESET_FLAGS_ALREADY_NOTIFIED);
updateAlreadyNotified(o, index);
}
/**
* Check if the {@link #alreadyNotifieds} array has been modified.
* If true recompute the index for the given observed object.
*/
synchronized int computeAlreadyNotifiedIndex(ObservedObject o,
int index, int an[]) {
if (an == alreadyNotifieds) {
return index;
} else {
return observedObjects.indexOf(o);
}
}
/*
* ------------------------------------------
* PRIVATE METHODS
* ------------------------------------------
*/
/**
* This method is used by the monitor MBean to create and send a
* monitor notification to all the listeners registered for this
* kind of notification.
*
* @param type The notification type.
* @param timeStamp The notification emission date.
* @param msg The notification message.
* @param derGauge The derived gauge.
* @param trigger The threshold/string (depending on the monitor
* type) that triggered off the notification.
* @param object The ObjectName of the observed object that triggered
* off the notification.
* @param onError Flag indicating if this monitor notification is
* an error notification or an alarm notification.
*/
private void sendNotification(String type, long timeStamp, String msg,
Object derGauge, Object trigger,
ObjectName object, boolean onError) {
if (!isActive())
return;
if (MONITOR_LOGGER.isLoggable(Level.FINER)) {
MONITOR_LOGGER.logp(Level.FINER, Monitor.class.getName(),
"sendNotification", "send notification: " +
"\n\tNotification observed object = " + object +
"\n\tNotification observed attribute = " + observedAttribute +
"\n\tNotification derived gauge = " + derGauge);
}
long seqno = sequenceNumber.getAndIncrement();
MonitorNotification mn =
new MonitorNotification(type,
this,
seqno,
timeStamp,
msg,
object,
observedAttribute,
derGauge,
trigger);
if (onError)
onErrorNotification(mn);
sendNotification(mn);
}
/**
* This method is called by the monitor each time
* the granularity period has been exceeded.
* @param o The observed object.
*/
private void monitor(ObservedObject o, int index, int an[]) {
String attribute;
String notifType = null;
String msg = null;
Object derGauge = null;
Object trigger = null;
ObjectName object;
Comparable<?> value = null;
MonitorNotification alarm = null;
if (!isActive())
return;
// Check that neither the observed object nor the
// observed attribute are null. If the observed
// object or observed attribute is null, this means
// that the monitor started before a complete
// initialization and nothing is done.
//
synchronized (this) {
object = o.getObservedObject();
attribute = getObservedAttribute();
if (object == null || attribute == null) {
return;
}
}
// Check that the observed object is registered in the
// MBean server and that the observed attribute
// belongs to the observed object.
//
Object attributeValue = null;
try {
attributeValue = getAttribute(server, object, attribute);
if (attributeValue == null)
if (isAlreadyNotified(
o, OBSERVED_ATTRIBUTE_TYPE_ERROR_NOTIFIED))
return;
else {
notifType = OBSERVED_ATTRIBUTE_TYPE_ERROR;
setAlreadyNotified(
o, index, OBSERVED_ATTRIBUTE_TYPE_ERROR_NOTIFIED, an);
msg = "The observed attribute value is null.";
MONITOR_LOGGER.logp(Level.FINEST, Monitor.class.getName(),
"monitor", msg);
}
} catch (NullPointerException np_ex) {
if (isAlreadyNotified(o, RUNTIME_ERROR_NOTIFIED))
return;
else {
notifType = RUNTIME_ERROR;
setAlreadyNotified(o, index, RUNTIME_ERROR_NOTIFIED, an);
msg =
"The monitor must be registered in the MBean " +
"server or an MBeanServerConnection must be " +
"explicitly supplied.";
MONITOR_LOGGER.logp(Level.FINEST, Monitor.class.getName(),
"monitor", msg);
MONITOR_LOGGER.logp(Level.FINEST, Monitor.class.getName(),
"monitor", np_ex.toString());
}
} catch (InstanceNotFoundException inf_ex) {
if (isAlreadyNotified(o, OBSERVED_OBJECT_ERROR_NOTIFIED))
return;
else {
notifType = OBSERVED_OBJECT_ERROR;
setAlreadyNotified(
o, index, OBSERVED_OBJECT_ERROR_NOTIFIED, an);
msg =
"The observed object must be accessible in " +
"the MBeanServerConnection.";
MONITOR_LOGGER.logp(Level.FINEST, Monitor.class.getName(),
"monitor", msg);
MONITOR_LOGGER.logp(Level.FINEST, Monitor.class.getName(),
"monitor", inf_ex.toString());
}
} catch (AttributeNotFoundException anf_ex) {
if (isAlreadyNotified(o, OBSERVED_ATTRIBUTE_ERROR_NOTIFIED))
return;
else {
notifType = OBSERVED_ATTRIBUTE_ERROR;
setAlreadyNotified(
o, index, OBSERVED_ATTRIBUTE_ERROR_NOTIFIED, an);
msg =
"The observed attribute must be accessible in " +
"the observed object.";
MONITOR_LOGGER.logp(Level.FINEST, Monitor.class.getName(),
"monitor", msg);
MONITOR_LOGGER.logp(Level.FINEST, Monitor.class.getName(),
"monitor", anf_ex.toString());
}
} catch (MBeanException mb_ex) {
if (isAlreadyNotified(o, RUNTIME_ERROR_NOTIFIED))
return;
else {
notifType = RUNTIME_ERROR;
setAlreadyNotified(o, index, RUNTIME_ERROR_NOTIFIED, an);
msg = mb_ex.getMessage() == null ? "" : mb_ex.getMessage();
MONITOR_LOGGER.logp(Level.FINEST, Monitor.class.getName(),
"monitor", msg);
MONITOR_LOGGER.logp(Level.FINEST, Monitor.class.getName(),
"monitor", mb_ex.toString());
}
} catch (ReflectionException ref_ex) {
if (isAlreadyNotified(o, RUNTIME_ERROR_NOTIFIED)) {
return;
} else {
notifType = RUNTIME_ERROR;
setAlreadyNotified(o, index, RUNTIME_ERROR_NOTIFIED, an);
msg = ref_ex.getMessage() == null ? "" : ref_ex.getMessage();
MONITOR_LOGGER.logp(Level.FINEST, Monitor.class.getName(),
"monitor", msg);
MONITOR_LOGGER.logp(Level.FINEST, Monitor.class.getName(),
"monitor", ref_ex.toString());
}
} catch (IOException io_ex) {
if (isAlreadyNotified(o, RUNTIME_ERROR_NOTIFIED))
return;
else {
notifType = RUNTIME_ERROR;
setAlreadyNotified(o, index, RUNTIME_ERROR_NOTIFIED, an);
msg = io_ex.getMessage() == null ? "" : io_ex.getMessage();
MONITOR_LOGGER.logp(Level.FINEST, Monitor.class.getName(),
"monitor", msg);
MONITOR_LOGGER.logp(Level.FINEST, Monitor.class.getName(),
"monitor", io_ex.toString());
}
} catch (RuntimeException rt_ex) {
if (isAlreadyNotified(o, RUNTIME_ERROR_NOTIFIED))
return;
else {
notifType = RUNTIME_ERROR;
setAlreadyNotified(o, index, RUNTIME_ERROR_NOTIFIED, an);
msg = rt_ex.getMessage() == null ? "" : rt_ex.getMessage();
MONITOR_LOGGER.logp(Level.FINEST, Monitor.class.getName(),
"monitor", msg);
MONITOR_LOGGER.logp(Level.FINEST, Monitor.class.getName(),
"monitor", rt_ex.toString());
}
}
synchronized (this) {
// Check if the monitor has been stopped.
//
if (!isActive())
return;
// Check if the observed attribute has been changed.
//
// Avoid race condition where mbs.getAttribute() succeeded but
// another thread replaced the observed attribute meanwhile.
//
// Avoid setting computed derived gauge on erroneous attribute.
//
if (!attribute.equals(getObservedAttribute()))
return;
// Derive a Comparable object from the ObservedAttribute value
// if the type of the ObservedAttribute value is a complex type.
//
if (msg == null) {
try {
value = getComparableFromAttribute(object,
attribute,
attributeValue);
} catch (ClassCastException e) {
if (isAlreadyNotified(
o, OBSERVED_ATTRIBUTE_TYPE_ERROR_NOTIFIED))
return;
else {
notifType = OBSERVED_ATTRIBUTE_TYPE_ERROR;
setAlreadyNotified(o, index,
OBSERVED_ATTRIBUTE_TYPE_ERROR_NOTIFIED, an);
msg =
"The observed attribute value does not " +
"implement the Comparable interface.";
MONITOR_LOGGER.logp(Level.FINEST,
Monitor.class.getName(), "monitor", msg);
MONITOR_LOGGER.logp(Level.FINEST,
Monitor.class.getName(), "monitor", e.toString());
}
} catch (AttributeNotFoundException e) {
if (isAlreadyNotified(o, OBSERVED_ATTRIBUTE_ERROR_NOTIFIED))
return;
else {
notifType = OBSERVED_ATTRIBUTE_ERROR;
setAlreadyNotified(
o, index, OBSERVED_ATTRIBUTE_ERROR_NOTIFIED, an);
msg =
"The observed attribute must be accessible in " +
"the observed object.";
MONITOR_LOGGER.logp(Level.FINEST,
Monitor.class.getName(), "monitor", msg);
MONITOR_LOGGER.logp(Level.FINEST,
Monitor.class.getName(), "monitor", e.toString());
}
} catch (RuntimeException e) {
if (isAlreadyNotified(o, RUNTIME_ERROR_NOTIFIED))
return;
else {
notifType = RUNTIME_ERROR;
setAlreadyNotified(o, index,
RUNTIME_ERROR_NOTIFIED, an);
msg = e.getMessage() == null ? "" : e.getMessage();
MONITOR_LOGGER.logp(Level.FINEST,
Monitor.class.getName(), "monitor", msg);
MONITOR_LOGGER.logp(Level.FINEST,
Monitor.class.getName(), "monitor", e.toString());
}
}
}
// Check that the observed attribute type is supported by this
// monitor.
//
if (msg == null) {
if (!isComparableTypeValid(object, attribute, value)) {
if (isAlreadyNotified(
o, OBSERVED_ATTRIBUTE_TYPE_ERROR_NOTIFIED))
return;
else {
notifType = OBSERVED_ATTRIBUTE_TYPE_ERROR;
setAlreadyNotified(o, index,
OBSERVED_ATTRIBUTE_TYPE_ERROR_NOTIFIED, an);
msg = "The observed attribute type is not valid.";
MONITOR_LOGGER.logp(Level.FINEST,
Monitor.class.getName(), "monitor", msg);
}
}
}
// Check that threshold type is supported by this monitor.
//
if (msg == null) {
if (!isThresholdTypeValid(object, attribute, value)) {
if (isAlreadyNotified(o, THRESHOLD_ERROR_NOTIFIED))
return;
else {
notifType = THRESHOLD_ERROR;
setAlreadyNotified(o, index,
THRESHOLD_ERROR_NOTIFIED, an);
msg = "The threshold type is not valid.";
MONITOR_LOGGER.logp(Level.FINEST,
Monitor.class.getName(), "monitor", msg);
}
}
}
// Let someone subclassing the monitor to perform additional
// monitor consistency checks and report errors if necessary.
//
if (msg == null) {
msg = buildErrorNotification(object, attribute, value);
if (msg != null) {
if (isAlreadyNotified(o, RUNTIME_ERROR_NOTIFIED))
return;
else {
notifType = RUNTIME_ERROR;
setAlreadyNotified(o, index,
RUNTIME_ERROR_NOTIFIED, an);
MONITOR_LOGGER.logp(Level.FINEST,
Monitor.class.getName(), "monitor", msg);
}
}
}
// If no errors were found then clear all error flags and
// let the monitor decide if a notification must be sent.
//
if (msg == null) {
// Clear all already notified flags.
//
resetAllAlreadyNotified(o, index, an);
// Get derived gauge from comparable value.
//
derGauge = getDerivedGaugeFromComparable(object,
attribute,
value);
o.setDerivedGauge(derGauge);
o.setDerivedGaugeTimeStamp(System.currentTimeMillis());
// Check if an alarm must be fired.
//
alarm = buildAlarmNotification(object,
attribute,
(Comparable<?>) derGauge);
}
}
// Notify monitor errors
//
if (msg != null)
sendNotification(notifType,
System.currentTimeMillis(),
msg,
derGauge,
trigger,
object,
true);
// Notify monitor alarms
//
if (alarm != null && alarm.getType() != null)
sendNotification(alarm.getType(),
System.currentTimeMillis(),
alarm.getMessage(),
derGauge,
alarm.getTrigger(),
object,
false);
}
/**
* Cleanup the scheduler and monitor tasks futures.
*/
private synchronized void cleanupFutures() {
if (schedulerFuture != null) {
schedulerFuture.cancel(false);
schedulerFuture = null;
}
if (monitorFuture != null) {
monitorFuture.cancel(false);
monitorFuture = null;
}
}
/**
* Cleanup the "is complex type attribute" info.
*/
private synchronized void cleanupIsComplexTypeAttribute() {
firstAttribute = null;
remainingAttributes.clear();
isComplexTypeAttribute = false;
}
/**
* SchedulerTask nested class: This class implements the Runnable interface.
*
* The SchedulerTask is executed periodically with a given fixed delay by
* the Scheduled Executor Service.
*/
private class SchedulerTask implements Runnable {
private MonitorTask task;
/*
* ------------------------------------------
* CONSTRUCTORS
* ------------------------------------------
*/
public SchedulerTask() {
}
/*
* ------------------------------------------
* GETTERS/SETTERS
* ------------------------------------------
*/
public void setMonitorTask(MonitorTask task) {
this.task = task;
}
/*
* ------------------------------------------
* PUBLIC METHODS
* ------------------------------------------
*/
public void run() {
synchronized (Monitor.this) {
Monitor.this.monitorFuture = task.submit();
}
}
}
/**
* MonitorTask nested class: This class implements the Runnable interface.
*
* The MonitorTask is executed periodically with a given fixed delay by the
* Scheduled Executor Service.
*/
private class MonitorTask implements Runnable {
private ThreadPoolExecutor executor;
/*
* ------------------------------------------
* CONSTRUCTORS
* ------------------------------------------
*/
public MonitorTask() {
// Find out if there's already an existing executor for the calling
// thread and reuse it. Otherwise, create a new one and store it in
// the executors map. If there is a SecurityManager, the group of
// System.getSecurityManager() is used, else the group of the thread
// instantiating this MonitorTask, i.e. the group of the thread that
// calls "Monitor.start()".
SecurityManager s = System.getSecurityManager();
ThreadGroup group = (s != null) ? s.getThreadGroup() :
Thread.currentThread().getThreadGroup();
synchronized (executorsLock) {
for (ThreadPoolExecutor e : executors.keySet()) {
DaemonThreadFactory tf =
(DaemonThreadFactory) e.getThreadFactory();
ThreadGroup tg = tf.getThreadGroup();
if (tg == group) {
executor = e;
break;
}
}
if (executor == null) {
executor = new ThreadPoolExecutor(
maximumPoolSize,
maximumPoolSize,
60L,
TimeUnit.SECONDS,
new LinkedBlockingQueue<Runnable>(),
new DaemonThreadFactory("ThreadGroup<" +
group.getName() + "> Executor", group));
executor.allowCoreThreadTimeOut(true);
executors.put(executor, null);
}
}
}
/*
* ------------------------------------------
* PUBLIC METHODS
* ------------------------------------------
*/
public Future<?> submit() {
return executor.submit(this);
}
public void run() {
final ScheduledFuture<?> sf;
final AccessControlContext ac;
synchronized (Monitor.this) {
sf = Monitor.this.schedulerFuture;
ac = Monitor.this.acc;
}
PrivilegedAction<Void> action = new PrivilegedAction<Void>() {
public Void run() {
if (Monitor.this.isActive()) {
final int an[] = alreadyNotifieds;
int index = 0;
for (ObservedObject o : Monitor.this.observedObjects) {
if (Monitor.this.isActive()) {
Monitor.this.monitor(o, index++, an);
}
}
}
return null;
}
};
if (ac == null) {
throw new SecurityException("AccessControlContext cannot be null");
}
AccessController.doPrivileged(action, ac);
synchronized (Monitor.this) {
if (Monitor.this.isActive() &&
Monitor.this.schedulerFuture == sf) {
Monitor.this.monitorFuture = null;
Monitor.this.schedulerFuture =
scheduler.schedule(Monitor.this.schedulerTask,
Monitor.this.getGranularityPeriod(),
TimeUnit.MILLISECONDS);
}
}
}
}
/**
* Daemon thread factory used by the monitor executors.
* <P>
* This factory creates all new threads used by an Executor in
* the same ThreadGroup. If there is a SecurityManager, it uses
* the group of System.getSecurityManager(), else the group of
* the thread instantiating this DaemonThreadFactory. Each new
* thread is created as a daemon thread with priority
* Thread.NORM_PRIORITY. New threads have names accessible via
* Thread.getName() of "{@literal JMX Monitor <pool-name> Pool [Thread-M]}",
* where M is the sequence number of the thread created by this
* factory.
*/
private static class DaemonThreadFactory implements ThreadFactory {
final ThreadGroup group;
final AtomicInteger threadNumber = new AtomicInteger(1);
final String namePrefix;
static final String nameSuffix = "]";
public DaemonThreadFactory(String poolName) {
SecurityManager s = System.getSecurityManager();
group = (s != null) ? s.getThreadGroup() :
Thread.currentThread().getThreadGroup();
namePrefix = "JMX Monitor " + poolName + " Pool [Thread-";
}
public DaemonThreadFactory(String poolName, ThreadGroup threadGroup) {
group = threadGroup;
namePrefix = "JMX Monitor " + poolName + " Pool [Thread-";
}
public ThreadGroup getThreadGroup() {
return group;
}
@Override
public Thread newThread(Runnable r) {
Thread t = new Thread(group,
r,
namePrefix +
threadNumber.getAndIncrement() +
nameSuffix,
0);
t.setDaemon(true);
if (t.getPriority() != Thread.NORM_PRIORITY)
t.setPriority(Thread.NORM_PRIORITY);
return t;
}
}
}
| [
"linjun.li@quvideo.com"
] | linjun.li@quvideo.com |
f36a1e11acf2e5350546b53e2fc6c61f611bb9ea | 662a02300b35604ca2f0c0ec2914d596ac7fd967 | /web/src/main/java/com/peony/web/entity/form/organization/OrganizationUpdateFormVO.java | eca432b8fee6cd2ff6b89e7bdcea0f43bb43b954 | [] | no_license | tcleetc/cloud-signature | 85f3c224f0356bca6cf24c353fa43662fb437ead | 7d176e5adc5a3eafb8672e8ca924dac6de909b0c | refs/heads/master | 2022-12-29T02:07:17.330613 | 2020-10-20T10:04:00 | 2020-10-20T10:04:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 583 | java | package com.peony.web.entity.form.organization;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import javax.validation.constraints.NotBlank;
/**
* @author hk
* @date 2019/10/25
*/
@ApiModel(value = "组织对象更新", description = "组织对象updateVO")
@Data
@NoArgsConstructor
@AllArgsConstructor
public class OrganizationUpdateFormVO {
@NotBlank
@ApiModelProperty(value = "组织名字", required = true)
private String name;
}
| [
"493013079@qq.com"
] | 493013079@qq.com |
74242bc67c0e6f158bedb6de5958af3ce4394c9f | 29b86a1ad4f4d68dbe5f6391ba9869cbdfcdac67 | /src/main/java/com/rednavis/test/impl/IntegerHelperImpl.java | 2160c940e4b8629aef83b3cb720e9d72dc507eb5 | [] | no_license | Meowth0/test-task | e99b1004c514e1531bdd6d09568c0466565ea1b7 | ffdf0f85d01381fa547dcd405b14d0f22b961063 | refs/heads/master | 2020-08-19T05:37:23.354632 | 2019-10-01T09:47:04 | 2019-10-01T09:47:04 | 215,884,304 | 0 | 0 | null | 2019-10-17T20:56:47 | 2019-10-17T20:56:46 | null | UTF-8 | Java | false | false | 595 | java | package com.rednavis.test.impl;
import com.rednavis.test.IntegerHelper;
import java.util.Collections;
import java.util.List;
import java.util.stream.Collectors;
public class IntegerHelperImpl implements IntegerHelper {
@Override
public List<Integer> getTopTenIntegers(List<Integer> integers) {
if (integers == null || integers.isEmpty()) {
return Collections.emptyList();
}
return integers.stream()
.sorted(Collections.reverseOrder())
.limit(INTEGERS_LIMIT)
.collect(Collectors.toList());
}
}
| [
"yauheni_khilabok@epam.com"
] | yauheni_khilabok@epam.com |
0e46d4715663f8cf9a30c8d7b65e32b4b0c6bb10 | 57c9c6eaa2ec9f0aaf1a6bdeb52f3a6008f8ae2e | /vorbereitung/musik/MusikStueck.java | a6931fd77ef1c21c52277ff51be29d56aa749405 | [] | no_license | JulZimmermann/TutoriumProg2SS19 | 3364e9beb0730626f74577209b90c41a0677efac | 036804532ece3d399daf2bd3a21ab438a5ea7147 | refs/heads/master | 2020-05-23T14:20:58.620669 | 2019-07-10T16:31:05 | 2019-07-10T16:31:05 | 186,800,950 | 0 | 2 | null | null | null | null | UTF-8 | Java | false | false | 1,062 | java | package musik;
public class MusikStueck {
protected String titel; // Name des Musikstueckes
protected String interpret; // Gruppe/Saenger des Stueckes
protected int laenge; // Dauer in Sekunden
public MusikStueck(String titel, String interpret, int laenge) {
this.titel = titel;
this.interpret = interpret;
this.laenge = laenge;
}
public String getTitel() {
return titel;
}
public void setTitel(String titel) {
this.titel = titel;
}
public String getInterpret() {
return interpret;
}
public void setInterpret(String interpret) {
this.interpret = interpret;
}
public int getLaenge() {
return laenge;
}
public void setLaenge(int laenge) {
this.laenge = laenge;
}
@Override
public String toString() {
return "MusikStueck{" +
"titel='" + titel + '\'' +
", interpret='" + interpret + '\'' +
", laenge=" + laenge +
'}';
}
} | [
"julzimmermann@gmail.com"
] | julzimmermann@gmail.com |
743490ad888b97da1a00c60ef8ac9a0a7e68d8fa | a612642806b0c8efc9aeb487b3aaa387f5c89a19 | /RocketBLL/src/main/java/rocketData/LoanRequest.java | ac5030d0aa6fcbd172ba8bcd293a58e01acdcffe | [] | no_license | zybq/final-code | 15134a6c4e65208ef276e4cfbc6649e9b279789b | 7b28601978f2119614864ce24701e0d1a6de566a | refs/heads/master | 2021-01-21T17:53:21.584415 | 2017-05-22T01:11:39 | 2017-05-22T01:11:39 | 91,998,421 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,466 | java | package rocketData;
import java.io.Serializable;
public class LoanRequest implements Serializable {
private int iTerm;
private double dRate;
private double dAmount;
private int iCreditScore;
private int iDownPayment;
private double dPayment;
private double Income;
private double Expenses;
public LoanRequest() {
super();
}
public int getiTerm() {
return iTerm;
}
public void setiTerm(int iTerm) {
this.iTerm = iTerm;
}
public double getdRate() {
return dRate;
}
public void setdRate(double dRate) {
this.dRate = dRate;
}
public double getdAmount() {
return dAmount;
}
public void setdAmount(double dAmount) {
this.dAmount = dAmount;
}
public int getiCreditScore() {
return iCreditScore;
}
public void setiCreditScore(int iCreditScore) {
this.iCreditScore = iCreditScore;
}
public int getiDownPayment() {
return iDownPayment;
}
public void setiDownPayment(int iDownPayment) {
this.iDownPayment = iDownPayment;
}
public double getdPayment() {
return dPayment;
}
public void setdPayment(double dPayment) {
this.dPayment = dPayment;
}
public double getIncome() {
return Income;
}
public void setIncome(double income) {
Income = income;
}
public double getExpenses() {
return Expenses;
}
public void setExpenses(double expenses) {
Expenses = expenses;
}
}
| [
"zybq@udel.edu"
] | zybq@udel.edu |
4b1349a50a53b41969454065734ea846bad51f93 | c7678e6513179984deb6bee8f9d4382c38a2a2f0 | /app/src/main/java/com/taisenjay/pocketmoo/ui/HtmlReadActivity.java | 126e0b71b59ed43464a77b1800c415b40f1e9938 | [] | no_license | taisenjay/PocketMoo | 6efea37557a2b188a571a54a05df142f189e7769 | 9fb6a905f00abfa105105005a2ccd4dcb7a91ddf | refs/heads/master | 2020-12-02T21:14:15.710748 | 2017-07-05T05:15:44 | 2017-07-05T05:15:44 | 96,278,262 | 3 | 1 | null | null | null | null | UTF-8 | Java | false | false | 3,455 | java | package com.taisenjay.pocketmoo.ui;
import android.os.Bundle;
import android.support.v7.widget.Toolbar;
import android.util.Log;
import android.view.View;
import android.webkit.WebView;
import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.NativeExpressAdView;
import com.taisenjay.pocketmoo.BaseActivity;
import com.taisenjay.pocketmoo.R;
import com.taisenjay.pocketmoo.loadingdrawable.LoadingView;
import com.taisenjay.pocketmoo.model.NewsSimple;
import com.taisenjay.pocketmoo.retrofit.RetrofitCallback;
import com.taisenjay.pocketmoo.utils.CommonUtil;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import java.io.IOException;
import okhttp3.ResponseBody;
import retrofit2.Call;
public class HtmlReadActivity extends BaseActivity {
public static final String EXTRA_NEWS = "news";
private NewsSimple mNews;
private WebView wvContent;
private LoadingView mLoadingView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_html_read);
mNews = (NewsSimple) getIntent().getSerializableExtra(EXTRA_NEWS);
initView();
getFullHtml();
}
private void initView() {
wvContent = (WebView) findViewById(R.id.wv_content);
CommonUtil.initWebView(wvContent);
mLoadingView = (LoadingView) findViewById(R.id.loading_drawable);
mLoadingView.setVisibility(View.VISIBLE);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
setTitle(mNews.title);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
toolbar.setNavigationOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
finish();
}
});
NativeExpressAdView adView = (NativeExpressAdView)findViewById(R.id.adView);
AdRequest request = new AdRequest.Builder().build();
adView.loadAd(request);
}
private void getFullHtml(){
Call<ResponseBody> call = apiStores.getLinkMovies(mNews.detailUrl);
call.enqueue(new RetrofitCallback<ResponseBody>() {
@Override
public void onSuccess(ResponseBody model) {
try {
Document document = Jsoup.parse(new String(model.bytes(), "UTF-8"));
Element content = document.getElementsByClass("single-text").get(0);
String html = content.html();
Log.e("html",html);
CommonUtil.webViewLoadData(wvContent,"http://www.zhainanfulishe.net",
CommonUtil.makeHtmlImgFitScreen(html));
} catch (IOException e) {
e.printStackTrace();
}
}
@Override
public void onFailure(int code, String msg) {
toastShow(msg);
mLoadingView.setVisibility(View.GONE);
}
@Override
public void onThrowable(Throwable t) {
toastShow(t.getMessage());
mLoadingView.setVisibility(View.GONE);
}
@Override
public void onFinish() {
mLoadingView.setVisibility(View.GONE);
}
});
addCalls(call);
}
}
| [
"taisenjay@gmail.com"
] | taisenjay@gmail.com |
1bc7732e087762f23bcb28f1a53991fb715c4992 | ec2a02e1bc54560291d80b39e8461fcfd3e88f5c | /app/src/main/java/com/zfsbs/activity/CheckOperatorLoginActivity.java | fe3f765ad488654049863740d4a8dda6e57253b2 | [] | no_license | beyond-snail/MySbsfor2N910 | 12579c9069fcefb82168c837d6d987b463e2dd67 | c309bd2722c89c17d13464721666b3d18fecb42f | refs/heads/master | 2021-08-17T19:45:10.066951 | 2018-10-29T07:47:02 | 2018-10-29T07:47:02 | 110,087,061 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,280 | java | package com.zfsbs.activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import com.tool.utils.utils.SPUtils;
import com.tool.utils.utils.StringUtils;
import com.tool.utils.utils.ToastUtils;
import com.tool.utils.view.ClearEditText;
import com.zfsbs.R;
import com.zfsbs.common.CommonFunc;
import com.zfsbs.config.Constants;
public class CheckOperatorLoginActivity extends BaseActivity implements OnClickListener {
private Button btnOperatorLogin;
private ClearEditText edPassWord;
private ClearEditText edUserName;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mContext = this;
setContentView(R.layout.activity_check_operator);
// AppManager.getAppManager().addActivity(this);
initTitle("操作员登录");
initView();
addListener();
}
private void initView() {
btnOperatorLogin = (Button) findViewById(R.id.id_login);
edPassWord = (ClearEditText) findViewById(R.id.password);
edPassWord.setText("");
edUserName = (ClearEditText) findViewById(R.id.id_username);
String usrName = (String) SPUtils.get(mContext, Constants.USER_NAME,"");
edUserName.setText(usrName);
edUserName.setSelection(edUserName.getText().length());
// edUserName.setEnabled(false);
}
@Override
protected void onResume() {
super.onResume();
edPassWord.setText("");
}
private void addListener() {
btnOperatorLogin.setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.id_login:
String psw = (String) SPUtils.get(mContext, Constants.USER_PSW, "");
if (StringUtils.isEquals(edPassWord.getText().toString().trim(), psw)){
CommonFunc.startAction(CheckOperatorLoginActivity.this, RechargeActivity.class, false);
finish();
}else{
ToastUtils.CustomShow(mContext, "密码错误");
}
break;
default:
break;
}
}
}
| [
"wu15979937502"
] | wu15979937502 |
621ed84d37e742ec7c3aa7f1fde3ef8b66943057 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/27/27_7f0bbf15fbc6ed67c5b7310c98c3e82107130392/Application/27_7f0bbf15fbc6ed67c5b7310c98c3e82107130392_Application_s.java | f862049c1e88adfb2a023ec686b81eb08eb6d903 | [] | 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 | 9,521 | java | package controllers;
import play.*;
import play.mvc.*;
import java.util.*;
import com.sun.org.apache.bcel.internal.generic.Select;
import models.*;
public class Application extends Controller {
public static void index() {
List<School> schools = School.findAll();
Long cschools = School.count();
Long cteachers = Teacher.count();
Long cclassrms = Classroom.count();
Long cstudents = StudentUser.count();
String noticias = "Currently the system contains " + cschools + " schools, " + cteachers + " teachers, " + cclassrms + " classrooms, and " + cstudents + " students.";
render( schools, noticias );
}
public static void startActivity( String uname, String schoolname, String classname, int classyear, String activityname, String src ) {
String ret = "FAIL";
School s = School.connect(schoolname);
Teacher t = Teacher.connect(uname, s);
if (s != null)
{
Classroom c = Classroom.connect(s, t, classname, classyear);
if ( c != null && c.isSchool(s) )
{
Session a = new Session( c, src );
if ( a != null )
{
a.sessionMessage = activityname;
a.save();
Long aid = a.getId();
ret = String.valueOf(aid);
}
}
}
renderJSON(ret);
}
public static void nameActivity( Long aid, String activityname )
{
Session a = Session.getActivity(aid);
if ( a == null)
{
renderJSON("FAIL");
}
else
{
a.sessionMessage = activityname;
a.save();
renderJSON( "Renamed Session To: " + activityname );
}
}
public static void appendAnnotationToActivity( Long aid, String annotation )
{
Session a = Session.getActivity(aid);
if ( a == null )
{
renderJSON("FAIL");
}
else
{
a.annotation += "\n" + annotation;
a.save();
renderJSON( "Added Annotation: '" + annotation + "' to this session." );
}
}
//login with username, schoolname, classname AND classyear. COULD have an "open classroom" that allows us to return the classroom object's ID in the JSON...
public static void login(String username, String tuname, String schoolname, String classname, int classyear ) {
System.err.println("Received login request for user: " + username + "\n attempting to enter class: " + classname + " with classyear = " + classyear);
School s = School.connect(schoolname);
Teacher t = Teacher.connect(tuname, s);
if (s != null && t != null)
{
Classroom croom = Classroom.connect( s, t, classname, classyear );
if ( croom == null )
{
renderJSON("FAILURE-CLASSROOM -- no classroom/classyear combo: '" + classname + "/" + classyear);
}
else
{
if ( croom.isSchool( s ) )
{
StudentUser theGuy = StudentUser.connect(username, croom);
if ( theGuy == null )
{
renderJSON("FAILURE-STUDENT -- no student '" + username + "' in class '" + classname + "'");
}
else
{
renderJSON("SUCCESS");
}
}
else
{
renderJSON("School/classroom mismatch - school name: " + schoolname + " classname/year: " + classname + "/" + classyear );
}
}
}
else
{
renderJSON("COULDNT FIND SCHOOL" + schoolname );
}
}
public static void logContribution(String stype, String username, Long actid, String contribid, String contribution ) {
System.err.println("contribution logged");
Session act = Session.getActivity(actid);
if (act == null )
{
renderJSON("FAILURE-no session with id = " + actid);
}
else
{
Classroom croom = act.classroom;
StudentUser theGuy = StudentUser.connect(username, croom);
if ( theGuy == null )
{
renderJSON("FAILURE-STUDENT -- no student '" + username + "' in classroom '" + croom.toString() + "'");
}
else
{
ContributionType ct = ContributionType.POINT;
if ( stype.equals("EQUATION") )
ct = ContributionType.EQUATION;
Contribution c = new Contribution(ct, theGuy, act, contribid, contribution );
c.save();
renderJSON("Logged contribution from user: " + username + ":" + croom.toString() + "\nContents: " + contribution );
}
}
}
public static void getAllActivities()
{
String toReturn = "ACTIVITIES:\n";
List<Session> acts = Session.findAll();
for (Session a : acts)
{
toReturn += a.toString() + "\n";
}
renderJSON( toReturn );
}
//test methods...
public static void getAllTeachers()
{
List<Teacher> teachers = Teacher.find("select t from Teacher t").fetch();
String reply = "Teachers:\n";
if (teachers.isEmpty())
reply = "NO TEACHERS";
for ( Teacher t: teachers)
{
reply += t.toString() + "\n";
}
renderJSON( reply );
}
public static void getAllSchools()
{
List<School> schools = School.find("select s from School s").fetch();
String reply = "Schools:\n";
if (schools.isEmpty())
reply = "NO Schools";
for ( School s: schools)
{
reply += s.toString() + "\n";
}
renderJSON( reply );
}
public static void getAllStudents()
{
List<StudentUser> ss = StudentUser.find("select s from StudentUser s").fetch();
String reply = "Students:\n";
if (ss.isEmpty())
reply = "NO Students";
for ( StudentUser s: ss)
{
reply += s.toString() + "\n";
}
renderJSON( reply );
}
//with null name argument, this one returns a list
public static void getAllClassroomsMatching( String cname )
{
String reply = "NO Matching Classrooms Found";
List<Classroom> cs = null;
if (cname == null)
{
cs = Classroom.find( "select c from Classroom c" ).fetch();
}
else
{
cs = Classroom.find("select c from Classroom c where c.classname like '"+cname+"' order by c.startYear").fetch();
}
if (cs != null && cs.size() > 0)
{
reply = "Matching Classrooms:\n";
for ( Classroom c : cs )
{
reply += "Name=" + c.classname + "; Teacher=" + c.teacher + "; Starting Year=" + c.startYear + "\n";
}
}
renderJSON( reply );
}
//with null name argument this one puts in "firstperiodmath" -- for testing.
public static void getAllClassroomsDummy( String cname )
{
if ( cname == null )
{
cname = "FirstPeriodMath";
}
String reply = "NO Matching Classrooms Found";
List<Classroom> cs = Classroom.find("select c from Classroom c where c.classname like '"+cname+"' order by c.startYear").fetch();
if ( cs != null && cs.size() > 0)
{
reply = "Matching Classroom(s):\n";
for ( Classroom c : cs )
{
reply += "Name=" + c.classname + "; Teacher=" + c.teacher + "; Starting Year=" + c.startYear + "\n";
}
}
renderJSON( reply );
}
public static void getAllStudentsInClassroom( String cname, int year )
{
String reply = "NO Matching Classrooms Found";
List<Classroom> cs = Classroom.find("select c from Classroom c where c.classname like '"+cname+"'").fetch();
for ( Classroom c : cs )
{
if ( c.startYear == year )
{
int i = 0;
reply = "Classroom Found: Name=" + c.classname + "; Year=" + c.startYear + "\n";
for ( StudentUser s : c.students)
{
i++;
reply += "#" + i + "Username: " + s.username + "\n";
}
}
}
renderJSON( reply );
}
/*stupid method -- need to specify classsroom , then get current session, etc.*/
public static void getAllContributions( )
{
List<Contribution> allcontribs = Contribution.find("select c from Contribution c order by c.timestamp").fetch();
String reply = "Contributions:\n";
if (allcontribs.isEmpty())
reply = "NO CONTRIBUTIONS";
for ( Contribution c : allcontribs )
{
//reply += c.toString() + "\n";
reply += c.toTSVLine() + "\n";
}
renderJSON(reply);
}
public static void getContributionsAfterSequenceNumber( Long aid, int ind )
{
String reply = "OOPS -- problem in looking up Activtity with id:" + aid;
Session a = Session.getActivity(aid);
if ( a != null )
{
List<Contribution> afteri = a.getContributionsAfterNumber(ind);
reply = "Contributions:\n";
if (afteri.isEmpty())
reply = "NO CONTRIBUTIONS MATCHING CONDITION";
for ( Contribution c : afteri )
{
reply += c.toTSVLine() + "\n";
}
}
renderJSON(reply);
}
public static void execute( String sql )
{
try
{
List<Object> results = Utilities.executeQuery(sql);
String retn = "";
for (Object result : results )
retn += result.toString();
renderJSON( retn );
}
catch (Exception e )
{
String reply = "ERROR in executing query: " + sql + "\n" + e.getMessage();
renderJSON( reply);
}
}
}
| [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
92e6b0cc149937afa33ccf24b4f7c97197928a39 | 9596c4599a702f9a90878a19b92dd35ff4d76668 | /src/main/java/com/anderson/jhipsterapp1/service/InvalidPasswordException.java | cfe0cac89adca7f36082d0085be98b20bb616e9c | [] | no_license | andersonplima/pos-dev-software-web-avanc | 724d6e2b344460c8198325c528908a6e283d4aa2 | 4ec358afd361774d116067d48ad1811b59240610 | refs/heads/master | 2022-12-21T23:02:47.600357 | 2020-02-15T18:36:00 | 2020-02-15T19:02:42 | 240,768,998 | 0 | 0 | null | 2022-12-16T05:13:08 | 2020-02-15T18:41:26 | Java | UTF-8 | Java | false | false | 250 | java | package com.anderson.jhipsterapp1.service;
public class InvalidPasswordException extends RuntimeException {
private static final long serialVersionUID = 1L;
public InvalidPasswordException() {
super("Incorrect password");
}
}
| [
"andersonplima@gmail.com"
] | andersonplima@gmail.com |
1961670507f176baf307af9294c3efea0017634e | 3317efe23cbffbb0a3faea179ddbe01ca8aa29ee | /TiendaVirtual/TiendaVirtual.java | bb4420b2f9c06e500f417add5ee3f8fe39c3a5a0 | [] | no_license | catzin/POO2019 | ddb6f8f0050dd5f265d0b2b77f1b4858a92e9a6b | 5ce4a535ebbe375575bfa5e2a98ce00acf612bb6 | refs/heads/master | 2020-04-28T02:10:35.787862 | 2019-06-08T05:21:19 | 2019-06-08T05:21:19 | 174,888,077 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,269 | java | /**
* Esta clase se implementa un Objeto de tipo TiendaVirtual,
* junto con sus operaciones fundamentales.
* @author Ehecatzin Vallejo
* puedes cambiar o seguir igual. La vida no tiene reglas.
*/
public class TiendaVirtual{
private String nombre;
private Persona[] IDsPersona = new Persona[50];
private Producto[] productos = new Producto[50];
private CarritoCompra[] carritos = new CarritoCompra[50];
/**
* Primer constructor que nos permite darle nombre a nuestra TiendaVirtual
*@param nombre. Nombre que deseamos asignara a la TiendaVirtual
*/
public TiendaVirtual(String nombre){
this.nombre = nombre;
}
/**
* Metodo getCarritoCompra
*/
public CarritoCompra[] getCarritos(){
return carritos;
}
/**
*@return. Retorna un arreglo con los carritos existentes en el arreglo carritos.
*/
/**
* Metodo getProductos
*/
public Producto[] getProductos(){
return productos;
}
/**
*@return. Retorna un arreglo con los productos existentes en el arreglo
*/
public Persona[] getIDsPersona(){
return IDsPersona;
}
/**
Metodo que me permite conocer cuantos productos hay en el arreglo productos
*/
public int contarProductos(){
int i = 0;
int contador = 0;
while(productos[i]!= null){
i++;
}
return i;
}
/**
*@return. Entero con la cantidad de elementos producto contenidos en el arreglo.
*/
/**
Metodo que me permite conocer cuantos carritos hay en el arreglo carritos
*/
public int contarCarritos(){
int i = 0;
int contador = 0;
while(carritos[i] != null){
i++;
}
return i;
}
/**
*@return. Entero con la cantidad de elementos CarritoCompra contenidos en el arreglo.
*/
/**
Metodo que me permite conocer cuantas Personas hay en el arreglo IDsPersona
*/
public int contarPersonas(){
int i = 0;
int contador = 0;
while(IDsPersona[i] != null){
i++;
}
return i;
}
/**
*@return. Entero con la cantidad de IDs contenidos en el arreglo IDspersona.
*/
/**
Metodo que permite aregar un producto al array de productos.
@param x. Objeto producto que se desea agregar al array.
*/
public void darAltaProducto(Producto x){
int existentes = contarProductos();
if(productos[0] == null){
productos[0] = x;
}
else{
productos[(existentes-1)+1] = x;
}
}
/**
Metodo que permite aregar un carrito al array de carritos.
@param c. Objeto CarritoCompra que se desea agregar al array carritos.
*/
public void darAltaCarrito(CarritoCompra c){
int existentes = contarCarritos();
if(carritos[0] == null){
carritos[0] = c;
}
else{
carritos[(existentes-1)+1] = c;
}
}
/**
Metodo que permite aregar una Persona al array de IDsPersona.
@param p. Objeto Persona que se desea agregar al array IDsPersona.
*/
public void darAltaPersona(Persona p){
int existentes = contarPersonas();
if(IDsPersona[0] == null){
IDsPersona[0] = p;
}
else{
IDsPersona[(existentes-1)+1] = p;
}
}
public int buscarProducto(int id){
int i = 0;
int j = contarProductos();
int aux2 = 0;
int aux = 0;
int posicion = 0;
for(i = 0; i < j; i++){
aux = productos[i].getIdproducto();
System.out.println("Id analizado :"+aux);
if(id == aux){
posicion = i;
}
else{
posicion = -1;
}
}
return posicion;
}
public int buscarCarrito(int idc){
int i = 0;
int j = contarCarritos();
int aux2 = 0;
int aux = 0;
int posicion = 0;
for(i = 0; i < j; i++){
aux = carritos[i].getIdCarrrito();
System.out.println("Idcarrito analizado :"+aux);
if(idc == aux){
posicion = i;
}
else{
posicion = -1;
}
}
return posicion;
}
public void checkOut(int IDCarrito){
int posicioncarrito = buscarCarrito(IDCarrito);
CarritoCompra carrito = new CarritoCompra();
carrito = carritos[posicioncarrito];
int j = carrito.tamanioCarrito();
int[]ids = new int[50];
for(int i = 0; i < j ;i++){
ids[i] = carrito.getItems().get(i).getIdprod();
}
}
}
| [
"noreply@github.com"
] | catzin.noreply@github.com |
b13815de899326150ecb6f9e90b8597b5575c955 | 1ce67bb4fdb534b370bf7be97fcc08a3a196fc68 | /Java/ROUND_3_B/src/main/java/Quick.java | 8be72ddf271a51db345b89554dccce43cf30cedf | [
"MIT"
] | permissive | xpepper/RefactoringGolf | 39ee04686533d348c73c6d133b92d6b998025604 | e078298375d7345115682dc321975ad39d8a4605 | refs/heads/main | 2023-08-18T10:40:25.445807 | 2021-09-16T15:17:15 | 2021-09-16T15:17:15 | 406,115,736 | 0 | 0 | MIT | 2021-09-13T20:13:48 | 2021-09-13T20:13:48 | null | UTF-8 | Java | false | false | 819 | java | class Quick extends Sorter {
@Override
protected int[] doSort(int[] input) {
return quicksort(input, 0, input.length - 1);
}
protected int[] quicksort(int[] input, int left, int right) {
int i = left, j = right;
int pivot = input[(left + right) / 2];
int k = i;
while (k <= j) {
while (input[k] < pivot)
k++;
while (input[j] > pivot)
j--;
if (k <= j) {
swap(input, k, j);
k++;
j--;
}
};
i = k;
int index = i;
if (left < index - 1){
quicksort(input, left, index - 1);
}
if (index < right){
quicksort(input, index, right);
}
return input;
}
}
| [
"emily@bacheconsulting.com"
] | emily@bacheconsulting.com |
a3ce7bbf5ec4a217c153b64ff3a2bb62881c6353 | 92f6d86ef0911691ebd3678ce70ae62b915f19cc | /src/main/java/com/example/thread/threaddemo/processordemo/SaveProcessor.java | f791ae5171038e4f6e48e14f039804caff968f77 | [] | no_license | xuedy/Thread_2020 | cf67c38d1bf3862acfc1a0e21bb7d5d95b250c9a | 7f45095cc4bc87d302e004c9e11eb6960b8dcd74 | refs/heads/master | 2023-02-02T18:48:20.397134 | 2020-12-25T08:37:26 | 2020-12-25T08:37:26 | 323,769,914 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 941 | java | package com.example.thread.threaddemo.processordemo;
import java.util.concurrent.LinkedBlockingDeque;
public class SaveProcessor extends Thread implements RequestProcessor {
LinkedBlockingDeque<Request> linkedBlockingDeque=new LinkedBlockingDeque<>();
// private final RequestProcessor nextRequestProcessor;
// public SaveProcessor(RequestProcessor nextRequestProcessor) {
// this.nextRequestProcessor = nextRequestProcessor;
// }
public void run(){
while (true){
try {
Request request=linkedBlockingDeque.take();
System.out.println("save data"+request.getName());
// nextRequestProcessor.ProcessRequest(request);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
@Override
public void ProcessRequest(Request request) {
linkedBlockingDeque.add(request);
}
}
| [
"!QAZ1qaz"
] | !QAZ1qaz |
0ae14132540571ad761db8ea0e90cdf65a4c6307 | d9480fa9e75194ae68ec7bad6b6a786a36e3f069 | /src/CommaandPattern/TurnOffKitchenLightCommand.java | 8a576f28a295238e352b40857472a208544bfd71 | [] | no_license | pratikbhagwat/IntroToDesignPatterns | d27657a94119dd4d70c8ee0eb21c0c1fc60c82c8 | 7883ebc39e0d03ba1aa8c32ff4ac869fef681e6d | refs/heads/master | 2022-09-28T17:41:53.967691 | 2020-06-04T05:38:50 | 2020-06-04T05:38:50 | 262,712,966 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 403 | java | package CommaandPattern;
public class TurnOffKitchenLightCommand implements Command {
KitchenLight kitchenLight;
public TurnOffKitchenLightCommand(KitchenLight kitchenLight){
this.kitchenLight = kitchenLight;
}
@Override
public void execute() {
this.kitchenLight.turnOff();
}
@Override
public void undo() {
this.kitchenLight.turnOn();
}
}
| [
"pratikbhagwat4@gmail.com"
] | pratikbhagwat4@gmail.com |
bab9b10c9880b66367765a1f0cbf15bde7c076ea | 2990b9359efb6462da953f862231ecc54f7cbdc3 | /src/shogi/N.java | c2f6477d1cb81b3041d92f686b678e63a3eb247f | [] | no_license | alisalmaniz/Shogi | 4206e25b5a05a8d589cb72188b3b5de9934610e3 | fa6573035f0eaf776f40bf6db6add9b428c00009 | refs/heads/master | 2020-03-29T11:48:27.844610 | 2015-04-10T18:13:20 | 2015-04-10T18:13:20 | 32,847,946 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,012 | 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 shogi;
/**
*
* @author Ali salmani
*/
public class N extends Man{
public static String[] move( String p){
change[0]="-1";
change[1]="-1";
change[2]="-1";
if(board[i][j].charAt(1)=='1'){
if( !change[3].contains("a") && (i+2<9 && j-1>=0) && (board[i+2][j-1].equals("----") || board[i+2][j-1].charAt(1)=='2' || board[i+2][j-1].charAt(2)=='2') ){
change[0]=String.valueOf(10*(i+2)+(j-1));
change[1]=board[i+2][j-1];
change[3]=change[3].concat("a");
}
else if( !change[3].contains("b") && (i+2<9 && j+1<9) && (board[i+2][j+1].equals("----") || board[i+2][j+1].charAt(1)=='2' || board[i+2][j+1].charAt(2)=='2') ){
change[0]=String.valueOf(10*(i+2)+(j+1));
change[1]=board[i+2][j+1];
change[3]=change[3].concat("b");
}
else
change[3]=change[3].concat("*");
}
else{
if( !change[3].contains("a") && (i-2>=0 && j-1>=0) && (board[i-2][j-1].equals("----") || board[i-2][j-1].charAt(1)=='1' || board[i-2][j-1].charAt(2)=='1') ){
change[0]=String.valueOf(10*(i-2)+(j-1));
change[1]=board[i-2][j-1];
change[3]=change[3].concat("a");
}
else if( !change[3].contains("b") && (i-2>=0 && j+1<9) && (board[i-2][j+1].equals("----") || board[i-2][j+1].charAt(1)=='1' || board[i-2][j+1].charAt(2)=='1') ){
change[0]=String.valueOf(10*(i-2)+(j+1));
change[1]=board[i-2][j+1];
change[3]=change[3].concat("b");
}
else
change[3]=change[3].concat("*");
}
return change;
}
}
| [
"ali_salmani15@yahoo.com"
] | ali_salmani15@yahoo.com |
a586596c99c367a9cb0eff7c6bbefa0242203132 | 14344173ed2d8e72eecad03be9ec2b42efbe4bca | /Survive-POM/Survive-Java-API/src/main/java/com/muni/fi/pa165/service/MonsterService.java | d0802d5788391fbfd53d42637c30e5540c54d2ad | [] | no_license | mashadmm/maria_survive | 5756aa964d41e20ab8c7ea53a88f537a07781f4f | 31211134612658a93679ee6edf8cc2b0b8608abc | refs/heads/master | 2020-05-19T19:34:43.404516 | 2013-12-13T20:51:31 | 2013-12-13T20:51:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 700 | java | package com.muni.fi.pa165.service;
import com.muni.fi.pa165.dto.MonsterDto;
import java.util.List;
/**
*
* @author Auron
*/
public interface MonsterService {
public MonsterDto save(MonsterDto dto);
/**
* Updates MonsterDto
*
* @param dto object of type MonsterDto
*/
public MonsterDto update(MonsterDto dto);
/**
* Deletes MonsterDto
*
* @param id object of type MonsterDto
*/
public void delete(Long id);
/**
* Finds MonsterDto by id
*
* @param id ID of the monster
* @return Monster object of type MonsterDto
*/
public MonsterDto findById(Long id);
public List<MonsterDto> findAll();
}
| [
"strafelda@gmail.com"
] | strafelda@gmail.com |
ffa5404f0c335b30a8f629f7930f06efb10f5c6d | 568adf7d462be6c9f5826c991b24a9ac1fd616b8 | /array/src/ArrayCopy.java | f8edc270c706492cd429a641a4efc11ad85bf074 | [] | no_license | FrancisZend/JavaSE | e9719585b0d8f8c244d7606181debf02022d5490 | 83240bcb602378f09cb2537355bcb8586f4cfab2 | refs/heads/master | 2023-06-14T08:01:21.999338 | 2021-07-10T16:05:16 | 2021-07-10T16:05:16 | 384,730,703 | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 963 | java | /**
* @author Francis
* @create 2021-06-19 18:56
*/
public class ArrayCopy {
public static void main(String[] args) {
//将int[]arr1={10,20,30};拷贝到arr2数组,
// 要求数据空间是独立的.
int[] arr1 = {10, 20, 30};
//创建一个新的数组arr2,开辟新的数据空间
// 大小arr1.length;
int[] arr2 = new int[arr1.length];
//遍历arr1,把每个元素拷贝到arr2对应的元素位置
for (int i = 0; i < arr1.length; i++) {
arr2[i] = arr1[i];
}
//修改arr2,不会对arr1有影响
arr2[0] = 100;
//输出arr1
System.out.println("====arr1的元素====");
for (int i = 0; i < arr1.length; i++) {
System.out.println(arr1[i]);//10,20,30
}
System.out.println("====arr2的元素====");
for(int i=0;i<arr2.length;i++){
System.out.println(arr2[i]);
}
}
}
| [
"1340073429@qq.com"
] | 1340073429@qq.com |
86238a409ea794f150e370ddbafddb35b5c77444 | 119cf728cc36846106bac61fa0cdc420a0562eeb | /RSyntaxTextArea/src/main/java/org/fife/ui/rsyntaxtextarea/modes/PPTokenMaker.java | 151d099eca0bc0eeded273479ef27898c05c4398 | [
"BSD-3-Clause"
] | permissive | HelloOO7/RSyntaxTextArea | c71f6a59bddf16431ae6b06bf5dcca5ba09faf75 | 228525408e7a38d249d6d166c7cca78d27c93f4a | refs/heads/master | 2023-07-13T00:13:57.444152 | 2021-08-19T10:27:54 | 2021-08-19T10:27:54 | 397,896,072 | 0 | 0 | null | null | null | null | IBM852 | Java | false | true | 124,270 | java | /* The following code was generated by JFlex 1.4.1 on 19.8.21 12:25 */
/*
* 07/28/2020
* 15/03/2021
* 19/08/2021
*
* PPTokenMaker.java - Scanner for the PokÚScript programming language.
*
* This library is distributed under a modified BSD license. See the included
* LICENSE file for details.
*/
package org.fife.ui.rsyntaxtextarea.modes;
import java.io.*;
import javax.swing.text.Segment;
import org.fife.ui.rsyntaxtextarea.*;
/**
* Scanner for the PseudoPawn programming language.<p>
*
* This implementation was created using
* <a href="http://www.jflex.de/">JFlex</a> 1.4.1; however, the generated file
* was modified for performance. Memory allocation needs to be almost
* completely removed to be competitive with the handwritten lexers (subclasses
* of <code>AbstractTokenMaker</code>, so this class has been modified so that
* Strings are never allocated (via yytext()), and the scanner never has to
* worry about refilling its buffer (needlessly copying chars around).
* We can achieve this because RText always scans exactly 1 line of tokens at a
* time, and hands the scanner this line as an array of characters (a Segment
* really). Since tokens contain pointers to char arrays instead of Strings
* holding their contents, there is no need for allocating new memory for
* Strings.<p>
*
* The actual algorithm generated for scanning has, of course, not been
* modified.<p>
*
* If you wish to regenerate this file yourself, keep in mind the following:
* <ul>
* <li>The generated <code>PPTokenMaker.java</code> file will contain two
* definitions of both <code>zzRefill</code> and <code>yyreset</code>.
* You should hand-delete the second of each definition (the ones
* generated by the lexer), as these generated methods modify the input
* buffer, which we'll never have to do.</li>
* <li>You should also change the declaration/definition of zzBuffer to NOT
* be initialized. This is a needless memory allocation for us since we
* will be pointing the array somewhere else anyway.</li>
* <li>You should NOT call <code>yylex()</code> on the generated scanner
* directly; rather, you should use <code>getTokenList</code> as you would
* with any other <code>TokenMaker</code> instance.</li>
* </ul>
*
* @author Robert Futrell
* @version 1.0
*
*/
public class PPTokenMaker extends AbstractJFlexCTokenMaker {
/** This character denotes the end of file */
public static final int YYEOF = -1;
/** initial size of the lookahead buffer */
private static final int ZZ_BUFFERSIZE = 16384;
/** lexical states */
public static final int EOL_COMMENT = 3;
public static final int DOCCOMMENT = 2;
public static final int YYINITIAL = 0;
public static final int MLC = 1;
/**
* Translates characters to character classes
*/
private static final String ZZ_CMAP_PACKED =
"\11\0\1\23\1\11\1\0\1\23\1\20\22\0\1\23\1\53\1\16"+
"\1\21\1\22\1\53\1\55\1\10\2\77\1\25\1\46\1\45\1\34"+
"\1\35\1\24\1\4\1\5\2\17\4\7\2\3\1\56\1\45\1\47"+
"\1\50\1\52\1\54\1\76\1\100\1\27\1\6\1\67\1\33\1\32"+
"\2\1\1\101\2\1\1\26\1\106\1\104\1\102\1\105\1\1\1\74"+
"\1\103\1\107\1\111\1\112\1\113\1\31\2\1\1\77\1\12\1\77"+
"\1\51\1\2\1\0\1\41\1\30\1\63\1\61\1\40\1\15\1\72"+
"\1\57\1\65\1\1\1\75\1\42\1\66\1\14\1\60\1\62\1\1"+
"\1\37\1\43\1\36\1\13\1\71\1\70\1\64\1\73\1\110\1\114"+
"\1\51\1\44\1\54\uff81\0";
/**
* Translates characters to character classes
*/
private static final char [] ZZ_CMAP = zzUnpackCMap(ZZ_CMAP_PACKED);
/**
* Translates DFA states to action switch labels.
*/
private static final int [] ZZ_ACTION = zzUnpackAction();
private static final String ZZ_ACTION_PACKED_0 =
"\4\0\1\1\1\2\2\3\1\2\1\4\1\5\2\2"+
"\1\6\1\1\1\7\2\10\5\2\1\10\5\2\1\11"+
"\1\2\5\10\12\2\1\12\11\2\1\13\1\14\5\13"+
"\1\15\10\13\1\16\3\13\1\1\2\17\1\20\1\3"+
"\1\17\1\20\2\17\1\21\2\17\2\2\1\4\1\22"+
"\1\0\1\4\5\2\2\6\1\23\1\24\1\25\20\2"+
"\1\0\1\10\7\2\1\26\7\2\1\12\22\2\2\0"+
"\1\27\4\0\1\30\2\0\1\31\22\0\1\1\1\3"+
"\1\20\1\0\2\21\1\3\1\21\3\2\1\4\1\32"+
"\2\4\1\22\1\4\4\2\1\6\1\33\1\6\1\34"+
"\26\2\1\35\7\2\1\1\35\2\37\0\1\1\2\17"+
"\3\2\1\4\3\2\1\6\1\36\12\2\1\37\14\2"+
"\1\1\37\2\2\0\1\40\2\0\1\41\10\0\1\42"+
"\17\0\1\43\1\1\3\2\1\4\1\35\1\6\6\2"+
"\1\44\14\2\1\1\37\2\35\0\1\1\5\2\1\4"+
"\1\6\10\2\1\45\3\2\1\1\41\2\22\0\16\2"+
"\1\1\42\2\2\0\1\42\6\0\61\2\11\0\10\2"+
"\1\44\45\2\5\0\53\2\5\0\42\2\2\0\205\2";
private static int [] zzUnpackAction() {
int [] result = new int[942];
int offset = 0;
offset = zzUnpackAction(ZZ_ACTION_PACKED_0, offset, result);
return result;
}
private static int zzUnpackAction(String packed, int offset, int [] result) {
int i = 0; /* index in packed string */
int j = offset; /* index in unpacked array */
int l = packed.length();
while (i < l) {
int count = packed.charAt(i++);
int value = packed.charAt(i++);
do result[j++] = value; while (--count > 0);
}
return j;
}
/**
* Translates a state to a row index in the transition table
*/
private static final int [] ZZ_ROWMAP = zzUnpackRowMap();
private static final String ZZ_ROWMAP_PACKED_0 =
"\0\0\0\115\0\232\0\347\0\u0134\0\u0181\0\u01ce\0\u021b"+
"\0\u0268\0\u02b5\0\u0302\0\u034f\0\u039c\0\u03e9\0\u0302\0\u0436"+
"\0\u0483\0\u04d0\0\u051d\0\u056a\0\u05b7\0\u0604\0\u0651\0\u069e"+
"\0\u06eb\0\u0738\0\u0785\0\u07d2\0\u081f\0\u0302\0\u0302\0\u086c"+
"\0\u08b9\0\u0906\0\u0302\0\u0953\0\u09a0\0\u09ed\0\u0a3a\0\u0a87"+
"\0\u0ad4\0\u0b21\0\u0b6e\0\u0bbb\0\u0c08\0\u0c55\0\u0ca2\0\u0cef"+
"\0\u0d3c\0\u0d89\0\u0dd6\0\u0e23\0\u0e70\0\u0ebd\0\u0f0a\0\u0f57"+
"\0\u0fa4\0\u0302\0\u0ff1\0\u103e\0\u108b\0\u10d8\0\u1125\0\u0302"+
"\0\u1172\0\u11bf\0\u120c\0\u1259\0\u12a6\0\u12f3\0\u1340\0\u138d"+
"\0\u0302\0\u13da\0\u1427\0\u1474\0\u14c1\0\u150e\0\u155b\0\u150e"+
"\0\u150e\0\u15a8\0\u15f5\0\u1642\0\u168f\0\u16dc\0\u1729\0\u1776"+
"\0\u17c3\0\u1810\0\u185d\0\u0302\0\u18aa\0\u18f7\0\u1944\0\u1991"+
"\0\u19de\0\u1a2b\0\u1a78\0\u1ac5\0\u1b12\0\u0302\0\u0302\0\u1b5f"+
"\0\u1bac\0\u1bf9\0\u1c46\0\u1c93\0\u1ce0\0\u1d2d\0\u1d7a\0\u1dc7"+
"\0\u1e14\0\u1e61\0\u1eae\0\u1efb\0\u1f48\0\u1f95\0\u1fe2\0\u202f"+
"\0\u04d0\0\u207c\0\u20c9\0\u2116\0\u2163\0\u21b0\0\u21fd\0\u224a"+
"\0\u2297\0\u0181\0\u22e4\0\u2331\0\u237e\0\u23cb\0\u2418\0\u2465"+
"\0\u24b2\0\u24ff\0\u254c\0\u2599\0\u25e6\0\u2633\0\u2680\0\u26cd"+
"\0\u271a\0\u2767\0\u27b4\0\u2801\0\u284e\0\u289b\0\u28e8\0\u2935"+
"\0\u2982\0\u29cf\0\u2a1c\0\u2a69\0\u2ab6\0\u2b03\0\u0302\0\u2b50"+
"\0\u2b9d\0\u2bea\0\u2c37\0\u0302\0\u2c84\0\u2cd1\0\u0302\0\u2d1e"+
"\0\u2d6b\0\u2db8\0\u2e05\0\u2e52\0\u2e9f\0\u2eec\0\u2f39\0\u2f86"+
"\0\u2fd3\0\u3020\0\u306d\0\u30ba\0\u3107\0\u3154\0\u31a1\0\u31ee"+
"\0\u323b\0\u3288\0\u32d5\0\u3322\0\u336f\0\u33bc\0\u150e\0\u3409"+
"\0\u3456\0\u34a3\0\u34f0\0\u353d\0\u358a\0\u0302\0\u35d7\0\u3624"+
"\0\u18aa\0\u3671\0\u36be\0\u370b\0\u3758\0\u37a5\0\u37f2\0\u0302"+
"\0\u383f\0\u388c\0\u38d9\0\u3926\0\u3973\0\u39c0\0\u3a0d\0\u3a5a"+
"\0\u3aa7\0\u3af4\0\u3b41\0\u3b8e\0\u3bdb\0\u3c28\0\u3c75\0\u3cc2"+
"\0\u3d0f\0\u3d5c\0\u3da9\0\u3df6\0\u3e43\0\u3e90\0\u3edd\0\u3f2a"+
"\0\u3f77\0\u3fc4\0\u4011\0\u405e\0\u40ab\0\u40f8\0\u4145\0\u4192"+
"\0\u41df\0\u422c\0\u4279\0\u42c6\0\u4313\0\u4360\0\u43ad\0\u43fa"+
"\0\u4447\0\u4494\0\u44e1\0\u452e\0\u457b\0\u45c8\0\u4615\0\u4662"+
"\0\u46af\0\u46fc\0\u4749\0\u4796\0\u47e3\0\u4830\0\u487d\0\u48ca"+
"\0\u4917\0\u4964\0\u49b1\0\u49fe\0\u4a4b\0\u4a98\0\u4ae5\0\u4b32"+
"\0\u4b7f\0\u4bcc\0\u4c19\0\u4c66\0\u4cb3\0\u4d00\0\u4d4d\0\u4d9a"+
"\0\u4de7\0\u4e34\0\u4e81\0\u4ece\0\u4f1b\0\u4f68\0\u4fb5\0\u5002"+
"\0\u504f\0\u509c\0\u50e9\0\u5136\0\u5183\0\u51d0\0\u521d\0\u526a"+
"\0\u52b7\0\u5304\0\u5351\0\u539e\0\u53eb\0\u5438\0\u3409\0\u5485"+
"\0\u54d2\0\u551f\0\u556c\0\u55b9\0\u5606\0\u5653\0\u56a0\0\u56ed"+
"\0\u0302\0\u573a\0\u5787\0\u57d4\0\u5821\0\u586e\0\u58bb\0\u5908"+
"\0\u5955\0\u59a2\0\u59ef\0\u0181\0\u5a3c\0\u5a89\0\u5ad6\0\u5b23"+
"\0\u5b70\0\u5bbd\0\u5c0a\0\u5c57\0\u5ca4\0\u5cf1\0\u5d3e\0\u5d8b"+
"\0\u5dd8\0\u5e25\0\u5e72\0\u5ebf\0\u5f0c\0\u5f59\0\u5fa6\0\u5ff3"+
"\0\u6040\0\u608d\0\u60da\0\u6127\0\u6174\0\u61c1\0\u620e\0\u625b"+
"\0\u62a8\0\u62f5\0\u6342\0\u638f\0\u63dc\0\u6429\0\u6476\0\u64c3"+
"\0\u6510\0\u655d\0\u65aa\0\u65f7\0\u6644\0\u6691\0\u66de\0\u672b"+
"\0\u6778\0\u67c5\0\u6812\0\u685f\0\u68ac\0\u68f9\0\u6946\0\u6993"+
"\0\u69e0\0\u6a2d\0\u6a7a\0\u6ac7\0\u6b14\0\u6b61\0\u0302\0\u6bae"+
"\0\u6bfb\0\u6c48\0\u6c95\0\u6ce2\0\u6d2f\0\u6d7c\0\u6dc9\0\u6e16"+
"\0\u6e63\0\u6eb0\0\u6efd\0\u6f4a\0\u6f97\0\u6fe4\0\u7031\0\u707e"+
"\0\u70cb\0\u7118\0\u7165\0\u71b2\0\u0181\0\u71ff\0\u724c\0\u7299"+
"\0\u72e6\0\u7333\0\u7380\0\u73cd\0\u0181\0\u741a\0\u7467\0\u74b4"+
"\0\u7501\0\u754e\0\u759b\0\u75e8\0\u7635\0\u7682\0\u76cf\0\u771c"+
"\0\u7769\0\u77b6\0\u7803\0\u7850\0\u789d\0\u78ea\0\u7937\0\u7984"+
"\0\u79d1\0\u7a1e\0\u7a6b\0\u7ab8\0\u7b05\0\u7b52\0\u7b9f\0\u7bec"+
"\0\u7c39\0\u7c86\0\u7cd3\0\u7d20\0\u7d6d\0\u7dba\0\u7e07\0\u7e54"+
"\0\u7ea1\0\u7eee\0\u7f3b\0\u7f88\0\u7fd5\0\u8022\0\u806f\0\u80bc"+
"\0\u8109\0\u8156\0\u6812\0\u81a3\0\u68f9\0\u81f0\0\u823d\0\u828a"+
"\0\u82d7\0\u8324\0\u8371\0\u83be\0\u840b\0\u8458\0\u84a5\0\u84f2"+
"\0\u853f\0\u858c\0\u85d9\0\u8626\0\u8673\0\u86c0\0\u870d\0\u875a"+
"\0\u87a7\0\u87f4\0\u8841\0\u888e\0\u88db\0\u7031\0\u8928\0\u8975"+
"\0\u89c2\0\u8a0f\0\u8a5c\0\u8aa9\0\u8af6\0\u8b43\0\u8b90\0\u8bdd"+
"\0\u8c2a\0\u8c77\0\u8cc4\0\u8d11\0\u8d5e\0\u8dab\0\u0181\0\u8df8"+
"\0\u8e45\0\u8e92\0\u8edf\0\u8f2c\0\u8f79\0\u8fc6\0\u9013\0\u9060"+
"\0\u90ad\0\u90fa\0\u9147\0\u9194\0\u91e1\0\u922e\0\u927b\0\u92c8"+
"\0\u9315\0\u9362\0\u93af\0\u93fc\0\u9449\0\u9496\0\u94e3\0\u9530"+
"\0\u957d\0\u95ca\0\u9617\0\u9664\0\u96b1\0\u96fe\0\u974b\0\u9798"+
"\0\u97e5\0\u9832\0\u987f\0\u98cc\0\u9919\0\u9966\0\u99b3\0\u9a00"+
"\0\u9a4d\0\u9a9a\0\u9ae7\0\u9b34\0\u9b81\0\u9bce\0\u9c1b\0\u9c68"+
"\0\u9cb5\0\u9d02\0\u9d4f\0\u9d9c\0\u9de9\0\u9e36\0\u9e83\0\u9ed0"+
"\0\u9f1d\0\u9f6a\0\u9fb7\0\ua004\0\ua051\0\ua09e\0\ua0eb\0\ua138"+
"\0\ua185\0\ua1d2\0\ua21f\0\ua26c\0\ua2b9\0\ua306\0\ua353\0\ua3a0"+
"\0\ua3ed\0\ua43a\0\ua487\0\ua4d4\0\ua521\0\ua56e\0\ua5bb\0\ua608"+
"\0\ua655\0\ua6a2\0\ua6ef\0\ua73c\0\ua789\0\ua7d6\0\ua823\0\ua870"+
"\0\ua8bd\0\ua90a\0\ua957\0\ua9a4\0\ua9f1\0\uaa3e\0\uaa8b\0\uaad8"+
"\0\uab25\0\uab72\0\uabbf\0\uac0c\0\uac59\0\uaca6\0\uacf3\0\uad40"+
"\0\uad8d\0\uadda\0\uae27\0\uae74\0\uaec1\0\uaf0e\0\uaf5b\0\uafa8"+
"\0\uaff5\0\ub042\0\ub08f\0\ub0dc\0\ub129\0\ub176\0\ub1c3\0\ub210"+
"\0\ub25d\0\ub2aa\0\ub2f7\0\ub344\0\ub391\0\ub3de\0\ub42b\0\ub478"+
"\0\ub4c5\0\ub512\0\ub55f\0\ub5ac\0\ub5f9\0\ub646\0\ub693\0\ub6e0"+
"\0\ub72d\0\ub77a\0\ub7c7\0\ub814\0\ub861\0\ub8ae\0\ub8fb\0\ub948"+
"\0\ub995\0\ub9e2\0\uba2f\0\uba7c\0\ubac9\0\ubb16\0\ubb63\0\ubbb0"+
"\0\ubbfd\0\ubc4a\0\ubc97\0\ubce4\0\ubd31\0\ubd7e\0\ubdcb\0\ube18"+
"\0\ube65\0\ubeb2\0\ubeff\0\ubf4c\0\ubf99\0\ubfe6\0\uc033\0\uc080"+
"\0\uc0cd\0\uc11a\0\uc167\0\uc1b4\0\uc201\0\uc24e\0\uc29b\0\uc2e8"+
"\0\uc335\0\uc382\0\uc3cf\0\uc41c\0\uc469\0\uc4b6\0\uc503\0\uc550"+
"\0\uc59d\0\uc5ea\0\uc637\0\uc684\0\uc6d1\0\uc71e\0\uc76b\0\uc7b8"+
"\0\uc805\0\uc852\0\uc89f\0\uc8ec\0\uc939\0\uc986\0\uc9d3\0\uca20"+
"\0\uca6d\0\ucaba\0\ucb07\0\ucb54\0\ucba1\0\ucbee\0\ucc3b\0\ucc88"+
"\0\uccd5\0\ucd22\0\ucd6f\0\ucdbc\0\uce09\0\uce56\0\ucea3\0\ucef0"+
"\0\ucf3d\0\ucf8a\0\ucfd7\0\ud024\0\ud071\0\ud0be\0\ud10b\0\ud158"+
"\0\ud1a5\0\ud1f2\0\ud23f\0\ud28c\0\ud2d9\0\ud326\0\ud373\0\ud3c0"+
"\0\ud40d\0\ud45a\0\ud4a7\0\ud4f4\0\ud541\0\ud58e\0\ud5db\0\ud628"+
"\0\ud675\0\ud6c2\0\ud70f\0\ud75c\0\ud7a9\0\ud7f6\0\ud843\0\ud890"+
"\0\ud8dd\0\ud92a\0\ud977\0\ud9c4\0\uda11\0\uda5e\0\udaab\0\udaf8"+
"\0\udb45\0\udb92\0\udbdf\0\udc2c\0\udc79\0\udcc6\0\udd13\0\udd60"+
"\0\uddad\0\uddfa\0\ude47\0\ude94\0\udee1\0\udf2e\0\udf7b\0\udfc8"+
"\0\ue015\0\ue062\0\ue0af\0\ue0fc\0\ue149\0\ue196\0\ue1e3\0\ue230"+
"\0\ue27d\0\ue2ca\0\ue317\0\ue364\0\ue3b1\0\ue3fe\0\ue44b\0\ue498"+
"\0\ue4e5\0\ue532\0\ue57f\0\ue5cc\0\ue619\0\ue666\0\ue6b3\0\ue700"+
"\0\ue74d\0\ue79a\0\ue7e7\0\ue834\0\ue881\0\ue8ce\0\ue91b\0\ue968"+
"\0\ue9b5\0\uea02\0\uea4f\0\uea9c\0\ueae9\0\ueb36\0\ueb83\0\uebd0"+
"\0\uec1d\0\uec6a\0\uecb7\0\ued04\0\ued51\0\ued9e\0\uedeb\0\uee38"+
"\0\uee85\0\ueed2\0\uef1f\0\uef6c\0\uefb9\0\uf006\0\uf053\0\uf0a0"+
"\0\uf0ed\0\uf13a\0\uf187\0\uf1d4\0\uf221\0\uf26e\0\uf2bb\0\uf308"+
"\0\uf355\0\uf3a2\0\uf3ef\0\uf43c\0\uf489\0\uf4d6\0\uf523\0\uf570"+
"\0\uf5bd\0\uf60a\0\uf657\0\uf6a4\0\uf6f1\0\uf73e\0\uf78b\0\uf7d8"+
"\0\uf825\0\uf872\0\uf8bf\0\uf90c\0\uf959\0\uf9a6\0\uf9f3\0\ufa40"+
"\0\ufa8d\0\ufada\0\ufb27\0\ufb74\0\ufbc1\0\ufc0e\0\ufc5b\0\ufca8"+
"\0\ufcf5\0\ufd42\0\ufd8f\0\ufddc\0\ufe29\0\ufe76\0\ufec3\0\uff10"+
"\0\uff5d\0\uffaa\0\ufff7\1\104\1\221\1\336\1\u012b\1\u0178"+
"\1\u01c5\1\u0212\1\u025f\1\u02ac\1\u02f9\1\u0346\1\u0393\1\u03e0"+
"\1\u042d\1\u047a\1\u04c7\1\u0514\1\u0561\1\u05ae\1\u05fb\1\u0648"+
"\1\u0695\1\u06e2\1\u072f\1\u077c\1\u07c9\1\u0816\1\u0863\1\u08b0"+
"\1\u08fd\1\u094a\1\u0997\1\u09e4\1\u0a31\1\u0a7e\1\u0acb\1\u0b18"+
"\1\u0b65\1\u0bb2\1\u0bff\1\u0c4c\1\u0c99\1\u0ce6\1\u0d33\1\u0d80"+
"\1\u0dcd\1\u0e1a\1\u0e67\1\u0eb4\1\u0f01\1\u0f4e\1\u0f9b\1\u0fe8"+
"\1\u1035\1\u1082\1\u10cf\1\u111c\1\u1169\1\u11b6";
private static int [] zzUnpackRowMap() {
int [] result = new int[942];
int offset = 0;
offset = zzUnpackRowMap(ZZ_ROWMAP_PACKED_0, offset, result);
return result;
}
private static int zzUnpackRowMap(String packed, int offset, int [] result) {
int i = 0; /* index in packed string */
int j = offset; /* index in unpacked array */
int l = packed.length();
while (i < l) {
int high = packed.charAt(i++) << 16;
result[j++] = high | packed.charAt(i++);
}
return j;
}
/**
* The transition table of the DFA
*/
private static final int [] ZZ_TRANS = zzUnpackTrans();
private static final String ZZ_TRANS_PACKED_0 =
"\1\5\2\6\1\7\1\10\1\7\1\11\1\7\1\12"+
"\1\13\1\5\1\6\1\14\1\15\1\16\1\7\1\17"+
"\1\5\1\6\1\20\1\21\1\22\1\23\1\24\1\25"+
"\1\6\1\26\1\27\1\30\1\31\1\32\1\33\1\34"+
"\2\6\1\35\1\36\1\37\1\40\1\41\2\22\1\42"+
"\1\22\1\43\1\44\1\43\2\6\1\45\1\46\1\47"+
"\1\6\1\50\1\51\1\52\1\53\1\54\1\55\1\6"+
"\1\56\1\6\1\57\1\36\1\60\1\61\1\62\1\63"+
"\1\64\1\6\1\65\1\66\1\6\1\67\1\70\1\6"+
"\1\36\11\71\1\72\3\71\1\73\7\71\1\74\31\71"+
"\1\75\10\71\1\76\24\71\11\77\1\100\3\77\1\101"+
"\7\77\1\102\21\77\1\103\7\77\1\104\10\77\1\105"+
"\5\77\1\106\15\77\1\107\11\110\1\111\3\110\1\112"+
"\41\110\1\113\10\110\1\114\24\110\10\5\2\0\4\5"+
"\1\0\1\5\1\0\2\5\3\0\6\5\2\0\6\5"+
"\13\0\20\5\1\0\14\5\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\2\116\1\117\3\7\1\116\1\7\2\0\3\116"+
"\1\120\1\0\1\7\1\0\2\116\3\0\1\121\3\116"+
"\1\120\1\122\1\0\1\123\2\116\1\122\1\116\1\121"+
"\1\116\13\0\2\116\1\120\5\116\1\120\7\116\1\0"+
"\14\116\1\0\2\116\1\124\1\125\2\126\1\116\1\126"+
"\2\0\3\116\1\120\1\0\1\126\1\0\2\116\3\0"+
"\1\121\2\127\1\130\1\120\1\122\1\0\1\123\2\116"+
"\1\122\1\116\1\121\1\116\13\0\2\116\1\120\2\116"+
"\1\130\2\116\1\120\7\116\1\0\14\116\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\4\6\1\131\1\6\13\0"+
"\1\6\1\132\15\6\1\5\1\0\14\6\1\0\10\133"+
"\1\134\1\135\1\136\102\133\115\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\3\6\1\137\2\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\3\6\1\140\1\141\1\6\13\0\1\6\1\142\4\6"+
"\1\143\10\6\1\5\1\0\14\6\1\0\11\16\1\144"+
"\1\145\3\16\1\146\76\16\23\0\1\20\115\0\1\147"+
"\1\150\22\0\1\43\114\0\1\43\44\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\6\6\1\151\10\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\1\6\1\152\15\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\1\6"+
"\1\153\4\6\13\0\1\6\1\154\4\6\1\155\10\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\1\6\1\156\15\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\1\6\1\157"+
"\1\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\6\1\160\4\6\13\0\5\6\1\161\1\6"+
"\1\162\7\6\1\5\1\0\14\6\35\0\1\43\13\0"+
"\1\43\47\0\3\123\1\0\1\123\7\0\1\123\75\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\1\6\1\163\4\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\2\6\1\164\3\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\1\6\1\165\1\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\4\6\1\166\1\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\167\5\6\13\0\11\6\1\170\5\6\1\5"+
"\1\0\14\6\47\0\1\43\1\0\1\43\113\0\1\171"+
"\1\43\114\0\1\43\1\0\1\172\112\0\1\43\4\0"+
"\1\43\37\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\2\6"+
"\1\173\3\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\1\174\2\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\1\6\1\175"+
"\1\6\1\176\2\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\3\6\1\166"+
"\1\177\1\6\13\0\1\6\1\200\15\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\1\6\1\201"+
"\1\202\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\7\6\1\203\7\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\2\6"+
"\1\204\3\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\1\205\2\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\1\206\16\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\3\6"+
"\1\142\2\6\13\0\1\6\1\207\15\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\1\6\1\210\15\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\1\211\2\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\2\212\3\5"+
"\1\212\1\5\2\0\1\5\3\212\1\0\1\5\1\0"+
"\1\5\1\212\3\0\6\212\2\0\6\212\13\0\17\212"+
"\1\5\1\0\14\212\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\2\6"+
"\1\213\3\6\2\0\1\6\1\214\3\6\1\215\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\1\6\1\216\1\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\4\6\1\217\1\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\1\220\2\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\1\221"+
"\1\6\1\222\3\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\1\223\2\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\2\6"+
"\1\224\3\6\13\0\1\6\1\225\15\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\6\6\1\226\10\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\1\227"+
"\1\230\12\6\1\231\2\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\1\6\1\232\1\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\2\6\1\233\3\6\13\0\6\6"+
"\1\234\10\6\1\5\1\0\14\6\1\0\11\71\1\0"+
"\3\71\1\0\7\71\1\0\31\71\1\0\10\71\1\0"+
"\24\71\36\0\1\235\26\0\1\236\53\0\1\237\126\0"+
"\1\240\146\0\1\241\24\0\11\77\1\0\3\77\1\0"+
"\7\77\1\0\21\77\1\0\7\77\1\0\10\77\1\0"+
"\5\77\1\0\15\77\37\0\1\242\26\0\1\243\53\0"+
"\1\244\71\0\1\245\4\0\1\245\4\0\3\245\6\0"+
"\1\246\1\0\6\245\2\0\6\245\6\0\1\247\4\0"+
"\17\245\2\0\14\245\37\0\1\250\146\0\1\251\62\0"+
"\1\252\1\253\1\254\1\255\1\0\1\256\14\0\1\257"+
"\1\260\1\261\1\262\1\0\1\263\3\0\1\264\121\0"+
"\1\265\16\0\11\110\1\0\3\110\1\0\41\110\1\0"+
"\10\110\1\0\24\110\36\0\1\266\26\0\1\267\65\0"+
"\1\270\146\0\1\271\24\0\10\5\2\0\1\5\1\272"+
"\2\5\1\0\1\5\1\0\2\5\3\0\6\5\2\0"+
"\6\5\13\0\20\5\1\0\14\5\1\0\10\116\2\0"+
"\4\116\1\0\1\116\1\0\2\116\3\0\6\116\2\0"+
"\6\116\13\0\20\116\1\0\14\116\1\0\2\116\1\117"+
"\3\273\1\116\1\273\2\0\4\116\1\0\1\273\1\0"+
"\2\116\3\0\6\116\2\0\6\116\13\0\20\116\1\0"+
"\14\116\1\0\3\116\3\274\1\116\1\274\2\0\4\116"+
"\1\0\1\274\1\0\2\116\3\0\6\116\1\275\1\0"+
"\6\116\2\0\1\275\10\0\20\116\1\0\14\116\1\0"+
"\3\116\3\123\1\116\1\123\2\0\3\116\1\120\1\0"+
"\1\123\1\0\2\116\3\0\4\116\1\120\1\122\2\0"+
"\2\116\1\122\3\116\13\0\2\116\1\120\5\116\1\120"+
"\7\116\1\0\14\116\1\0\2\116\1\124\1\116\2\276"+
"\1\116\1\276\2\0\4\116\1\0\1\276\1\0\2\116"+
"\3\0\6\116\2\0\6\116\13\0\20\116\1\0\14\116"+
"\1\0\3\116\3\125\1\116\1\125\2\0\3\116\1\120"+
"\1\0\1\125\1\0\2\116\3\0\4\116\1\120\1\122"+
"\1\0\1\123\2\116\1\122\3\116\13\0\2\116\1\120"+
"\5\116\1\120\7\116\1\0\14\116\1\0\2\116\1\124"+
"\1\125\2\126\1\116\1\126\2\0\3\116\1\120\1\0"+
"\1\126\1\0\2\116\3\0\1\277\3\116\1\120\1\122"+
"\1\0\1\123\2\116\1\122\1\116\1\277\1\116\13\0"+
"\2\116\1\120\5\116\1\120\7\116\1\0\14\116\1\0"+
"\4\116\2\300\2\116\2\0\4\116\1\0\1\116\1\0"+
"\2\116\3\0\6\116\2\0\6\116\13\0\20\116\1\0"+
"\14\116\1\0\3\116\5\301\2\0\3\116\1\301\1\0"+
"\1\301\1\0\2\116\3\0\1\116\2\301\1\116\2\301"+
"\2\0\2\116\2\301\2\116\13\0\2\116\1\301\1\116"+
"\1\301\3\116\1\301\7\116\1\0\1\301\13\116\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\3\6\1\302\2\6"+
"\13\0\1\6\1\303\15\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\1\6\1\304\1\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\10\305\1\306"+
"\1\0\103\305\10\0\1\306\104\0\4\305\2\307\1\305"+
"\1\310\1\311\1\0\1\133\1\312\3\133\1\307\10\305"+
"\1\133\5\305\2\133\55\305\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\313\5\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\4\6\1\314"+
"\1\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\1\6\1\315"+
"\15\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\1\6\1\202\4\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\1\6"+
"\1\316\1\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\12\144\1\317\3\144\1\320\102\144\2\16\1\144"+
"\2\16\1\0\1\16\1\321\4\16\10\144\1\16\5\144"+
"\2\16\55\144\25\0\1\322\67\0\1\5\7\6\2\0"+
"\1\115\1\6\1\323\1\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\1\6\1\324\15\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\2\6\1\325"+
"\3\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\1\6\1\326"+
"\15\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\1\327\5\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\1\6"+
"\1\330\4\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\1\331\2\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\1\6\1\332\4\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\4\6\1\333\12\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\3\6\1\334\13\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\1\335\2\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\336\5\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\1\337\2\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\5\6\1\340\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\3\6\1\341\2\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\6\6\1\342\10\6\1\5\1\0\14\6\51\0\1\43"+
"\1\0\1\22\42\0\1\5\7\6\2\0\1\115\2\6"+
"\1\343\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\2\6\1\344\3\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\6\6\1\345\10\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\1\166\2\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\4\6\1\346\12\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\3\6\1\347\2\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\1\6\1\350\1\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\351\5\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\3\6\1\352\13\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\1\353"+
"\5\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\3\6\1\354"+
"\13\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\6\6\1\355\10\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\6\6\1\356\10\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\1\357\5\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\1\6\1\360\1\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\212\2\0\1\361"+
"\3\212\1\0\1\212\1\0\1\5\1\212\3\0\6\212"+
"\2\0\6\212\13\0\17\212\1\5\1\0\14\212\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\5\6\1\362\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\1\6\1\363\4\6\13\0\6\6\1\364"+
"\10\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\5\6\1\365\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\1\366"+
"\4\6\1\367\13\0\2\6\1\370\1\371\1\372\5\6"+
"\1\373\4\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\4\6\1\374\1\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\375\5\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\1\6\1\376"+
"\1\6\1\377\2\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\1\6\1\u0100"+
"\4\6\13\0\4\6\1\u0101\12\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\4\6\1\u0102"+
"\1\6\13\0\7\6\1\u0103\7\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\13\6\1\u0104\3\6\1\5\1\0\14\6\1\0\1\5"+
"\5\6\1\u0105\1\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\3\6\1\u0106\10\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\5\6\1\u0107\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\6\1\u0108\4\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\1\6\1\u0109\15\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\3\6"+
"\1\u010a\13\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\5\6\1\u010b\13\0\16\6\1\u010c"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\6\1\u010d\4\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\1\6"+
"\1\u010e\4\6\13\0\17\6\1\5\1\0\14\6\63\0"+
"\1\u010f\74\0\1\u0110\110\0\1\u0111\146\0\1\u0112\106\0"+
"\1\u0113\74\0\1\u0114\52\0\52\245\1\247\42\245\1\0"+
"\1\245\4\0\1\245\4\0\3\245\10\0\6\245\2\0"+
"\6\245\6\0\1\247\4\0\17\245\2\0\14\245\37\0"+
"\1\u0115\146\0\1\u0116\37\0\1\u0117\43\0\1\u0118\1\u0119"+
"\74\0\1\u011a\140\0\1\u011b\43\0\1\u011c\141\0\1\u011d"+
"\24\0\1\u011e\57\0\1\u011f\124\0\1\u0120\115\0\1\u0121"+
"\114\0\1\u0122\67\0\1\u0123\140\0\1\u0124\116\0\1\u0125"+
"\16\0\1\u0126\1\0\1\u0127\1\0\1\u0128\3\0\1\u0129"+
"\105\0\1\u012a\74\0\1\u012b\110\0\1\u012c\146\0\1\u012d"+
"\24\0\3\5\5\u012e\2\0\3\5\1\u012e\1\0\1\u012e"+
"\1\0\2\5\3\0\1\5\2\u012e\1\5\2\u012e\2\0"+
"\2\5\2\u012e\2\5\13\0\2\5\1\u012e\1\5\1\u012e"+
"\3\5\1\u012e\7\5\1\0\1\u012e\13\5\1\0\2\116"+
"\1\117\3\273\1\116\1\273\2\0\4\116\1\0\1\273"+
"\1\0\2\116\3\0\1\121\5\116\2\0\4\116\1\121"+
"\1\116\13\0\20\116\1\0\14\116\1\0\3\116\3\274"+
"\1\116\1\274\2\0\3\116\1\120\1\0\1\274\1\0"+
"\2\116\3\0\4\116\1\120\1\116\2\0\6\116\13\0"+
"\2\116\1\120\5\116\1\120\7\116\1\0\14\116\4\0"+
"\3\274\1\0\1\274\7\0\1\274\75\0\2\116\1\124"+
"\1\116\2\276\1\116\1\276\2\0\4\116\1\0\1\276"+
"\1\0\2\116\3\0\1\277\5\116\2\0\4\116\1\277"+
"\1\116\13\0\20\116\1\0\14\116\1\0\2\116\1\u012f"+
"\1\116\2\300\2\116\2\0\4\116\1\0\1\116\1\0"+
"\2\116\3\0\6\116\2\0\6\116\13\0\20\116\1\0"+
"\14\116\1\0\2\116\1\u0130\5\301\2\0\3\116\1\301"+
"\1\0\1\301\1\0\2\116\3\0\1\277\2\301\1\116"+
"\2\301\2\0\2\116\2\301\1\277\1\116\13\0\2\116"+
"\1\301\1\116\1\301\3\116\1\301\7\116\1\0\1\301"+
"\13\116\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\5\6"+
"\1\u0131\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\1\6\1\u0132\1\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\4\6\1\u0133\12\6\1\5"+
"\1\0\14\6\1\0\10\305\1\134\1\0\107\305\2\310"+
"\1\305\1\310\1\306\1\0\5\305\1\310\101\305\2\133"+
"\1\305\1\133\1\306\1\0\5\305\1\133\100\305\5\u0134"+
"\1\134\1\0\3\305\1\u0134\1\305\1\u0134\7\305\2\u0134"+
"\1\305\2\u0134\4\305\2\u0134\17\305\1\u0134\1\305\1\u0134"+
"\3\305\1\u0134\10\305\1\u0134\14\305\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\6\6\1\u0135\10\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\5\6\1\335\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\3\6\1\u0136\2\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\3\6\1\u0137\2\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\11\144\1\0\106\144\5\u0138"+
"\2\144\1\317\2\144\1\u0138\1\320\1\u0138\7\144\2\u0138"+
"\1\144\2\u0138\4\144\2\u0138\17\144\1\u0138\1\144\1\u0138"+
"\3\144\1\u0138\10\144\1\u0138\14\144\24\0\1\u0139\70\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\16\6"+
"\1\u013a\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\1\u013b\5\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\3\6"+
"\1\u013c\2\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\4\6\1\u013d\1\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\2\6\1\u013e\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\7\6\1\u013f\7\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\7\6\1\u0140\7\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\1\6\1\u0141"+
"\15\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\2\6\1\u0142\3\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\1\u0143\5\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\2\6\1\u0144\3\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\1\u0145\2\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\7\6\1\202\7\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\2\6\1\202"+
"\3\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\u0146\5\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\u0147\5\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\3\6\1\u0148"+
"\2\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\4\6\1\u0146\1\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\12\6\1\u0149\4\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\16\6\1\u014a\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\5\6\1\u014b\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\1\u014c\5\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\2\6"+
"\1\u014d\3\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\1\6"+
"\1\u014e\15\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\3\6\1\202\2\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\4\6\1\u014f\1\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\4\6"+
"\1\340\1\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\2\6"+
"\1\202\14\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\1\6\1\202\15\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\u0150\5\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\10\5\2\0\1\5\1\u0151\2\5\1\0\1\5"+
"\1\0\2\5\3\0\6\5\2\0\6\5\13\0\20\5"+
"\1\0\14\5\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\1\u0152\5\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\3\6\1\u0153\2\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\1\u0154\5\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\2\6\1\u0155\3\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\2\6\1\u0156"+
"\3\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\u0157\5\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\2\6\1\u0158\3\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\1\u0159\2\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\1\6\1\u015a"+
"\15\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\3\6\1\u015b\2\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\2\6"+
"\1\u015c\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\2\6\1\u015d\3\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\2\6\1\u015e\11\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\6\6"+
"\1\u015f\10\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\4\6\1\u0160\12\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\12\6\1\u0161\4\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\1\u0162\2\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\4\6\1\u0163\1\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\2\6\1\u0164\3\6\2\0\6\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\3\6\1\u0165\2\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\4\6\1\u0166"+
"\1\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\1\u0167\2\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\5\6\1\u0168\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\2\6\1\u0169"+
"\3\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\17\6\1\5"+
"\1\0\6\6\1\u016a\5\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\2\6\1\u016b\3\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\1\u016c"+
"\2\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\3\6\1\u016d\2\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\1\6\1\u016e"+
"\1\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\6\6"+
"\1\u016f\10\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\1\u0170\5\6\13\0\17\6\1\5"+
"\1\0\14\6\57\0\1\u0171\76\0\1\u010f\136\0\1\u0172"+
"\67\0\1\u0173\135\0\1\u0174\76\0\1\u0113\136\0\1\u0175"+
"\67\0\1\u0176\115\0\1\u0177\115\0\1\u0178\136\0\1\u0179"+
"\71\0\1\u017a\117\0\1\u017b\21\0\1\u017c\67\0\1\u017d"+
"\115\0\1\u017e\1\u017f\70\0\1\u0180\143\0\1\u0181\133\0"+
"\1\u0182\71\0\1\u0183\113\0\1\u0184\114\0\1\u0185\22\0"+
"\1\u0186\72\0\1\u0187\142\0\1\u0188\107\0\1\u0189\114\0"+
"\1\u018a\50\0\1\u018b\141\0\1\u018c\131\0\1\u018d\76\0"+
"\1\u012a\136\0\1\u018e\67\0\1\u018f\57\0\3\5\5\u0190"+
"\2\0\3\5\1\u0190\1\0\1\u0190\1\0\2\5\3\0"+
"\1\5\2\u0190\1\5\2\u0190\2\0\2\5\2\u0190\2\5"+
"\13\0\2\5\1\u0190\1\5\1\u0190\3\5\1\u0190\7\5"+
"\1\0\1\u0190\13\5\1\0\2\116\1\u0130\5\301\2\0"+
"\3\116\1\301\1\0\1\301\1\0\2\116\3\0\1\116"+
"\2\301\1\116\2\301\2\0\2\116\2\301\2\116\13\0"+
"\2\116\1\301\1\116\1\301\3\116\1\301\7\116\1\0"+
"\1\301\13\116\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\5\6\1\u0191\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\2\6\1\u0192\3\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\1\u0193\2\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\3\305\5\u0194\1\134\1\0\3\305"+
"\1\u0194\1\305\1\u0194\7\305\2\u0194\1\305\2\u0194\4\305"+
"\2\u0194\17\305\1\u0194\1\305\1\u0194\3\305\1\u0194\10\305"+
"\1\u0194\14\305\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\12\6\1\340\4\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\1\u0195\5\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\4\6\1\202\1\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\3\144\5\u0196\2\144\1\317\2\144"+
"\1\u0196\1\320\1\u0196\7\144\2\u0196\1\144\2\u0196\4\144"+
"\2\u0196\17\144\1\u0196\1\144\1\u0196\3\144\1\u0196\10\144"+
"\1\u0196\14\144\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\3\6"+
"\1\u0197\2\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\5\6\1\u0198\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\16\6\1\202\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\2\6"+
"\1\u0199\3\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\4\6\1\u019a\1\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\3\6\1\u019b\2\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\5\6\1\u019c\1\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\1\6"+
"\1\u019d\4\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\3\6"+
"\1\u019e\13\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\14\6\1\u019f\2\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\6\1\u01a0\4\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\6\6\1\u01a1\10\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\4\6"+
"\1\u01a2\12\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\1\u01a3\2\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\3\6\1\u01a4\2\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\3\6\1\u01a5"+
"\2\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\5\6\1\202\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\6\6\1\u01a6\10\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\1\6"+
"\1\143\4\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\1\6\1\u01a7\4\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\6\6\1\u01a8\10\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\6\6\1\u01a9\10\6\1\5\1\0"+
"\14\6\1\0\3\5\5\u01aa\2\0\3\5\1\u01aa\1\0"+
"\1\u01aa\1\0\2\5\3\0\1\5\2\u01aa\1\5\2\u01aa"+
"\2\0\2\5\2\u01aa\2\5\13\0\2\5\1\u01aa\1\5"+
"\1\u01aa\3\5\1\u01aa\7\5\1\0\1\u01aa\13\5\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\1\6\1\u01ab\4\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\14\6\1\u01ac\2\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\1\u01ad\16\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\1\6\1\u01ae"+
"\4\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\6\1\u01af\4\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\3\6\1\u01b0\2\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\5\6\1\u01b1\11\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\1\u01b2\5\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\7\6\1\u01b3\7\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\4\6\1\u01b4\1\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\1\6\1\u01b5\15\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\13\6"+
"\1\u01b6\3\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\2\6\1\u01b7\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\1\6"+
"\1\u01b8\1\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\16\6\1\u01b9\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\6\6\1\u01ba\10\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\6\1\u01bb\4\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\5\6\1\u01bc\6\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\2\6\1\u01bd\3\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\1\u01be\5\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\3\6\1\u01bf\2\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\4\6\1\u01c0\12\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\6\6\1\u01c1"+
"\10\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\3\6\1\u01c2\2\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\3\6\1\u01c3\2\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\4\6\1\u01c4\7\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\3\6\1\u01c5"+
"\13\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\1\u01c6\5\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\1\6\1\u01c7\15\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\2\6\1\u01c8\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\1\u01c9\2\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\17\6\1\5\1\0"+
"\14\6\25\0\1\u01ca\133\0\1\u010f\12\0\1\u0171\37\0"+
"\1\u0173\1\u01cb\5\u0173\1\u01cb\2\0\3\u0173\1\0\1\u0173"+
"\1\0\1\u01cb\1\u0173\1\0\1\u0173\1\u01cb\6\u0173\2\u01cb"+
"\6\u0173\1\0\2\u01cb\1\0\1\u01cb\2\0\4\u01cb\17\u0173"+
"\2\u01cb\14\u0173\25\0\1\u01cc\133\0\1\u0113\12\0\1\u0174"+
"\37\0\1\u0176\1\u01cd\5\u0176\1\u01cd\2\0\3\u0176\1\0"+
"\1\u0176\1\0\1\u01cd\1\u0176\1\0\1\u0176\1\u01cd\6\u0176"+
"\2\u01cd\6\u0176\1\0\2\u01cd\1\0\1\u01cd\2\0\4\u01cd"+
"\17\u0176\2\u01cd\14\u0176\61\0\1\u01ce\74\0\1\u01cf\17\0"+
"\1\u01d0\114\0\1\u017f\47\0\1\u01d1\167\0\1\u01d2\66\0"+
"\1\u01d3\1\0\1\u01d4\131\0\1\u01d5\122\0\1\u01d6\112\0"+
"\1\u01d7\111\0\1\u01d8\73\0\1\u01d9\116\0\1\u01da\113\0"+
"\1\u01db\114\0\1\u01dc\114\0\1\u01dd\117\0\1\u01de\65\0"+
"\1\u01df\21\0\1\u01e0\141\0\1\u01e1\112\0\1\u01e2\112\0"+
"\1\u01e3\77\0\1\u01e4\76\0\1\u01e5\133\0\1\u012a\12\0"+
"\1\u018d\37\0\1\u018f\1\u01e6\5\u018f\1\u01e6\2\0\3\u018f"+
"\1\0\1\u018f\1\0\1\u01e6\1\u018f\1\0\1\u018f\1\u01e6"+
"\6\u018f\2\u01e6\6\u018f\1\0\2\u01e6\1\0\1\u01e6\2\0"+
"\4\u01e6\17\u018f\2\u01e6\14\u018f\1\0\3\5\5\u01e7\2\0"+
"\3\5\1\u01e7\1\0\1\u01e7\1\0\2\5\3\0\1\5"+
"\2\u01e7\1\5\2\u01e7\2\0\2\5\2\u01e7\2\5\13\0"+
"\2\5\1\u01e7\1\5\1\u01e7\3\5\1\u01e7\7\5\1\0"+
"\1\u01e7\13\5\1\0\1\5\5\6\1\u01e8\1\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\4\6\1\u01e9\1\6\2\0\6\6\13\0\17\6\1\5"+
"\1\0\4\6\1\u01ea\7\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\17\6\1\5\1\0\4\6"+
"\1\u01eb\7\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\1\6\1\u01ec\4\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\3\305\5\u01ed\1\134\1\0\3\305\1\u01ed\1\305"+
"\1\u01ed\7\305\2\u01ed\1\305\2\u01ed\4\305\2\u01ed\17\305"+
"\1\u01ed\1\305\1\u01ed\3\305\1\u01ed\10\305\1\u01ed\14\305"+
"\3\144\5\u01ee\2\144\1\317\2\144\1\u01ee\1\320\1\u01ee"+
"\7\144\2\u01ee\1\144\2\u01ee\4\144\2\u01ee\17\144\1\u01ee"+
"\1\144\1\u01ee\3\144\1\u01ee\10\144\1\u01ee\14\144\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\13\6\1\u01ef"+
"\3\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\1\u01f0\5\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\3\6"+
"\1\u01f1\2\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\3\6\1\u01f2\2\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\1\u01f3\5\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\1\6\1\u01f4\15\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\1\u01f5\5\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\17\6\1\5\1\0"+
"\3\6\1\u01f6\10\6\1\0\1\5\7\6\2\0\1\115"+
"\1\6\1\u01f7\1\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\4\6\1\202\12\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\1\202"+
"\16\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\4\6\1\u01a7\1\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\1\340\5\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\13\6"+
"\1\340\3\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\1\6\1\u01f8\1\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\202\5\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\4\6\1\u01f9\12\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\7\6\1\u01fa"+
"\7\6\1\5\1\0\14\6\1\0\3\5\5\u01fb\2\0"+
"\3\5\1\u01fb\1\0\1\u01fb\1\0\2\5\3\0\1\5"+
"\2\u01fb\1\5\2\u01fb\2\0\2\5\2\u01fb\2\5\13\0"+
"\2\5\1\u01fb\1\5\1\u01fb\3\5\1\u01fb\7\5\1\0"+
"\1\u01fb\13\5\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\3\6\1\u01fc\2\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\1\6\1\u01fd\1\6\1\u01fe\10\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\7\6\1\u01ff\7\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\u0200\5\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\1\6\1\u0201\1\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\1\6\1\u0202\4\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\1\6\1\u0203\1\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\2\6\1\u0204\11\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\17\6"+
"\1\5\1\0\6\6\1\u0205\5\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\3\6\1\u0206\13\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\6\6\1\u0207\10\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\1\6"+
"\1\u0208\4\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\3\6\1\u0209\2\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\17\6\1\5\1\0"+
"\6\6\1\u020a\5\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\13\6\1\u020b\3\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\2\6\1\u020c\11\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\4\6"+
"\1\u020d\12\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\6\6\1\u020e\10\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\1\6\1\u020f\15\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\1\6"+
"\1\u0210\4\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\6\6"+
"\1\u0211\10\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\5\6\1\u0212\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\1\u0213\16\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\1\6\1\u0214\1\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\2\6\1\u0215\14\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\1\6\1\u0216\1\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\1\6\1\u0217\15\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\3\6"+
"\1\u0218\13\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\6\6\1\u0219\10\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\11\6\1\u021a\5\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\14\6\1\u021b\2\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\3\6\1\u021c\2\6"+
"\13\0\17\6\1\5\1\0\14\6\25\0\1\u0173\114\0"+
"\1\u0176\127\0\1\u021d\116\0\1\u021e\143\0\1\u021f\63\0"+
"\1\u0220\137\0\1\u0221\114\0\1\u0222\45\0\1\u0223\161\0"+
"\1\u0224\75\0\1\u0225\113\0\1\u017f\116\0\1\u0226\112\0"+
"\1\u0227\142\0\1\u017f\120\0\1\u0228\61\0\1\u0229\141\0"+
"\1\u017f\115\0\1\u022a\124\0\1\u022b\57\0\1\u022c\150\0"+
"\1\u022d\60\0\1\u022b\114\0\1\u022e\67\0\1\u01e2\125\0"+
"\1\u018f\70\0\3\5\5\6\2\0\3\5\1\6\1\0"+
"\1\6\1\0\2\5\3\0\1\5\2\6\1\5\2\6"+
"\2\0\2\5\2\6\2\5\13\0\2\5\1\6\1\5"+
"\1\6\3\5\1\6\7\5\1\0\1\6\13\5\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\3\6\1\u022f\2\6"+
"\13\0\6\6\1\u0230\10\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\1\6"+
"\1\u0231\15\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\1\6\1\u0232\15\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\1\6\1\u0233\15\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\1\6"+
"\1\u0234\4\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\3\305\5\133\1\134\1\0\3\305\1\133\1\305\1\133"+
"\7\305\2\133\1\305\2\133\4\305\2\133\17\305\1\133"+
"\1\305\1\133\3\305\1\133\10\305\1\133\14\305\3\144"+
"\5\16\2\144\1\317\2\144\1\16\1\320\1\16\7\144"+
"\2\16\1\144\2\16\4\144\2\16\17\144\1\16\1\144"+
"\1\16\3\144\1\16\10\144\1\16\14\144\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\2\6\1\u021b\3\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\6\1\u0235\4\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\1\6\1\u0195"+
"\1\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\13\6"+
"\1\u014b\3\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\4\6\1\u0236\1\6\2\0\1\u0237\5\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\1\6\1\u0238\1\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\6\6\1\u0239\10\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\1\u023a\5\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\1\340\2\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\3\6\1\u023b\2\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\2\6\1\u023c"+
"\3\6\13\0\17\6\1\5\1\0\14\6\1\0\3\5"+
"\5\u023d\2\0\3\5\1\u023d\1\0\1\u023d\1\0\2\5"+
"\3\0\1\5\2\u023d\1\5\2\u023d\2\0\2\5\2\u023d"+
"\2\5\13\0\2\5\1\u023d\1\5\1\u023d\3\5\1\u023d"+
"\7\5\1\0\1\u023d\13\5\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\4\6\1\u023e\12\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\1\6"+
"\1\u023f\1\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\1\u0240\5\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\2\6\1\u0241\3\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\6\6\1\u0242\10\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\3\6"+
"\1\u0243\2\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\1\u0244\2\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\1\u0245\5\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\1\u0246\2\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\6\6\1\u0247"+
"\10\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\3\6\1\u0248\2\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\2\6\1\u0249\14\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\7\6\1\u024a\7\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\4\6\1\u024b\1\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\2\6\1\u024c\3\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\17\6\1\5\1\0\1\6\1\u01fd\12\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\12\6\1\u024d\4\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\2\6\1\u024e\3\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\1\u024f\5\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\6\6\1\u0250\10\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\4\6\1\u0251\1\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\12\6\1\u0252\4\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\5\6\1\u0253\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\4\6\1\u0254\1\u0255\2\0"+
"\6\6\13\0\17\6\1\5\1\0\6\6\1\u0256\5\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\13\6\1\u0257\3\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\10\6\1\u0258"+
"\6\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\14\6\1\u0259\2\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\1\u025a\5\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\1\6"+
"\1\u025b\15\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\5\6\1\u025c\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\1\6"+
"\1\u025d\1\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\5\6\1\u025e\2\0\6\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\4\6\1\u025f\1\6\13\0\17\6"+
"\1\5\1\0\14\6\66\0\1\u0260\110\0\1\u0261\76\0"+
"\1\u017f\65\0\1\u017f\142\0\1\u01d7\110\0\1\u01de\137\0"+
"\1\u01d7\72\0\1\u017f\117\0\1\u0262\112\0\1\u0263\137\0"+
"\1\u0264\111\0\1\u0265\50\0\1\u0260\160\0\1\u0220\34\0"+
"\44\u022b\1\u017f\50\u022b\37\0\1\u0266\135\0\1\u0267\73\0"+
"\1\u0268\55\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\5\6"+
"\1\u0269\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\6\1\u026a\4\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\1\6\1\u026b\4\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\1\u026c\5\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\1\u026d\5\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\2\6\1\u026e\3\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\3\6\1\u026f\2\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\4\6\1\u0270"+
"\1\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\2\6\1\u0271\3\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\5\6\1\u0272\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\1\6\1\u0273\15\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\3\6\1\u0274\2\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\1\u0275\5\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\5\6\1\u0276"+
"\2\0\6\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\3\5\5\212\2\0\3\5\1\212\1\0\1\212\1\0"+
"\2\5\3\0\1\5\2\212\1\5\2\212\2\0\2\5"+
"\2\212\2\5\13\0\2\5\1\212\1\5\1\212\3\5"+
"\1\212\7\5\1\0\1\212\13\5\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\1\u0277\5\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\2\6\1\370\14\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\1\6\1\u0278\15\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\u0279\5\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\1\6\1\u027a\15\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\4\6"+
"\1\u021b\1\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\3\6"+
"\1\u027b\13\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\6\6\1\u027c\10\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\u027d\5\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\5\6\1\u027e"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\1\u027f\5\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\17\6\1\5\1\0\5\6\1\u0280\6\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\2\6\1\u0281"+
"\3\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\4\6\1\u0282\1\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\1\u0283\2\6\1\u0284\2\6\1\u0285"+
"\1\u0286\4\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\7\6\1\u0287\7\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\2\6\1\u0288"+
"\3\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\5\6\1\u0289\1\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\14\6\1\u023c\2\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\1\6"+
"\1\u028a\1\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\1\6\1\u028b\15\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\2\6\1\u028c\3\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\10\6\1\u028d\6\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\6\6\1\u028e\10\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\4\6\1\u028f"+
"\1\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\2\6\1\u0290\3\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\4\6\1\u0291\1\6\2\0\6\6\13\0\15\6\1\u0292"+
"\1\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\2\6\1\u0293\3\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\1\u0294\5\6"+
"\2\0\6\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\17\6"+
"\1\5\1\0\5\6\1\u0295\6\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\1\6\1\u0296\4\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\2\6\1\u0297\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\4\6\1\u0298\1\u025e\2\0"+
"\6\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\6\1\160\4\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\17\6\1\5\1\0\6\6"+
"\1\u0299\5\6\42\0\1\u029a\116\0\1\u029b\103\0\1\u029c"+
"\34\0\1\u029d\63\0\1\u01d7\117\0\1\u029e\112\0\1\u029f"+
"\116\0\1\u02a0\133\0\1\u02a1\121\0\1\u02a2\27\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\u023c\5\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\4\6\1\u02a3\12\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\7\6\1\u02a4\7\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\4\6\1\u02a5\1\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\17\6\1\5\1\0"+
"\3\6\1\u02a6\10\6\1\0\1\5\7\6\2\0\1\115"+
"\1\6\1\u02a7\1\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\3\6\1\u0277\13\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\3\6\1\u02a8\2\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\1\6\1\u02a9\4\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\u02aa\5\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\1\6\1\u02ab\1\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\4\6\1\u02ac"+
"\12\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\2\6\1\u02ad\3\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\5\6\1\u02ae\11\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\6\6\1\u02af\5\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\6\1\u01fa\4\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\6\6\1\u02b0\10\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\1\6"+
"\1\u021b\1\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\1\u02b1\5\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\3\6\1\u02b2\2\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\17\6\1\5\1\0\2\6\1\u02b3"+
"\11\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\7\6\1\u02b4\7\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\6\6"+
"\1\u02b5\10\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\1\6\1\u02b6\4\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\2\6\1\u02b7\14\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\1\6\1\u02b8\15\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\1\6\1\u02b9\4\6"+
"\13\0\4\6\1\u02ba\12\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\1\u02bb\5\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\1\6\1\u02bc\15\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\1\u02bd\16\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\1\6"+
"\1\u02be\15\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\1\6\1\u02bf\4\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\1\6\1\u02c0\15\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\1\u02c1"+
"\5\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\6\1\u02c2\4\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\17\6\1\5\1\0\1\u02c3"+
"\13\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\2\6"+
"\1\u02c4\3\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\2\6\1\u02c5\3\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\2\6\1\u02c6\3\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\u02c7\5\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\1\6\1\u02c8\15\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\2\6\1\u02c9\3\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\3\6\1\u02ca\2\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\6\6\1\u02cb\10\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\1\6\1\u02cc"+
"\4\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\u02cd\5\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\6\6\1\u02ce\10\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\1\6\1\u02cf\15\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\3\6\1\u02d0\2\6"+
"\13\0\17\6\1\5\1\0\14\6\43\0\1\u017f\113\0"+
"\1\u02d1\140\0\1\u02d2\70\0\1\u02d3\111\0\1\u02d4\151\0"+
"\1\u017f\63\0\1\u022b\110\0\1\u022b\114\0\1\u02d5\56\0"+
"\1\5\7\6\2\0\1\115\1\u02d6\2\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\3\6\1\u02d7\2\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\1\6\1\u02d8\15\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\1\u02d9\2\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\1\u02da\5\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\13\6\1\u02db\3\6\1\5\1\0\14\6"+
"\1\0\1\5\5\6\1\u02dc\1\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\3\6\1\u02dd\2\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\17\6\1\5\1\0\1\6"+
"\1\u02de\12\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\16\6\1\u023c\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\4\6\1\u02df\1\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\4\6\1\u02e0\12\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\2\6\1\u02e1\3\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\4\6\1\u023c\12\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\2\6\1\u02e2\3\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\1\u02e3\5\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\2\6"+
"\1\u02e4\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\3\6\1\u02e5\2\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\2\6\1\u02e6\3\6\2\0\6\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\1\6\1\u02e7\15\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\1\u02e8\5\6\2\0"+
"\6\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\6\1\u02e9\4\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\13\6\1\u02ea\3\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\4\6\1\u02eb\12\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\3\6\1\u02ec"+
"\2\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\1\6\1\u02ed\1\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\1\6\1\u02ee\4\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\1\6\1\u01c8\4\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\2\6\1\u02ef\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\1\6\1\u02f0\1\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\2\6\1\u02f1\3\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\7\6\1\u02f2\7\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\1\6\1\u02f3\4\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\2\6\1\u02f4\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\4\6\1\u02f5\1\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\7\6\1\u02f6\7\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\1\u02f7\16\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\6\1\u02f8\4\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\5\6"+
"\1\u02f9\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\u02fa\5\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\5\6\1\u02fb\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\2\6\1\u02fc"+
"\3\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\2\6\1\u02fd\3\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\2\6\1\u02fe\3\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\1\6\1\u02ff\4\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\4\6\1\u0300\12\6\1\5\1\0\14\6\16\0\1\u0301"+
"\137\0\1\u0302\112\0\1\u0303\116\0\1\u0304\143\0\1\u0305"+
"\25\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\4\6\1\u0306"+
"\1\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\u021b\5\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\1\u0307\2\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\3\6\1\u0308\13\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\17\6\1\5"+
"\1\0\6\6\1\u0309\5\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\5\6\1\u030a\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\4\6"+
"\1\u030b\1\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\1\6\1\u030c\1\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\1\6\1\u030d\1\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\1\6\1\u030e\15\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\2\6"+
"\1\u030f\3\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\1\u0310\5\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\2\6\1\u023c\14\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\6\6\1\u0311\10\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\1\6\1\u0312\4\6\2\0"+
"\6\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\u0313\5\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\4\6\1\u0314\1\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\3\6\1\u0315\13\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\1\6"+
"\1\u0316\15\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\7\6\1\u0317\7\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\1\u02c6\2\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\2\6\1\u0318"+
"\3\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\u01fa\5\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\6\6\1\u0319\10\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\2\6"+
"\1\u031a\3\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\4\6\1\u031b\1\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\2\6\1\u031c\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\1\6\1\u023c\4\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\3\6\1\u0269"+
"\2\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\6\1\u031d\4\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\4\6\1\u031e\1\6\2\0\6\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\2\6\1\u031f\14\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\2\6\1\u0320"+
"\3\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\1\6\1\u02f5"+
"\15\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\7\6\1\u0321\7\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\1\6\1\u0322\15\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\1\u019d\16\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\1\u0323\5\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\5\6\1\u02f6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\2\6"+
"\1\u0324\14\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\2\6\1\u0325\14\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\7\6\1\u0326\7\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\1\u0327\16\6\1\5\1\0\14\6\41\0\1\u0328"+
"\116\0\1\u0304\113\0\1\u017f\134\0\1\u017f\113\0\1\u0329"+
"\34\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\3\6\1\u032a"+
"\2\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\1\6\1\u02e2\1\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\3\6\1\u032b\13\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\1\6\1\u032c\15\6\1\5\1\0\14\6"+
"\1\0\1\5\5\6\1\u032d\1\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\1\6\1\u032e"+
"\15\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\1\u016b\5\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\1\6\1\u032f\12\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\1\6\1\u0330\4\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\3\6\1\u0331\13\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\1\u0332\16\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\1\6\1\u0333\15\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\1\6\1\u0334"+
"\15\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\4\6\1\u0335\12\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\2\6\1\u0336\3\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\2\6\1\u0337"+
"\3\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\4\6\1\u0338"+
"\12\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\3\6\1\u0339\2\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\5\6\1\u033a\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\1\u033b\5\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\3\6\1\u033c\2\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\1\6\1\u033d\15\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\6\6\1\u033e\10\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\3\6\1\u033f\2\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\1\6\1\u0340\15\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\5\6\1\u0341"+
"\2\0\6\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\1\6\1\u0269\1\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\3\6\1\u0342\2\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\1\u0343\2\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\2\6\1\u0344"+
"\3\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\5\6\1\u0345\1\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\2\6\1\u0346\11\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\1\u0347\5\6\2\0\6\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\3\6\1\u0348\2\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\6\6\1\u0349\10\6\1\5\1\0\14\6\37\0"+
"\1\u029f\141\0\1\u022b\31\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\6\1\u034a\4\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\1\6\1\u034b\15\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\2\6"+
"\1\u034c\14\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\1\6\1\u034d\15\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\5\6\1\u02b1\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\1\6\1\u034e\1\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\7\6\1\u034f"+
"\7\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\1\u0350\5\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\1\6\1\u0351\15\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\1\6\1\u031f\1\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\1\u0352\2\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\1\u023c\16\6\1\5\1\0\14\6\1\0"+
"\1\5\5\6\1\u0353\1\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\1\6\1\u0354\4\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\3\6\1\u0355\2\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\1\u0356"+
"\5\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\5\6\1\u031f\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\1\6\1\u0357\15\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\2\6\1\u0358\14\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\11\6"+
"\1\u021b\5\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\13\6\1\u0359\3\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\14\6\1\u035a\2\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\1\u035b\2\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\6\1\160\4\6\13\0"+
"\5\6\1\u02ae\11\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\u035c\5\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\6\1\u035d\4\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\1\6\1\u035e"+
"\1\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\4\6\1\u035f\1\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\3\6\1\u0360\13\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\6\6\1\u0361\10\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\1\u0362"+
"\5\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\1\6\1\u01ef\1\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\6\6\1\u0363\10\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\1\6\1\u027b\4\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\6\6\1\u0364\10\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\1\6\1\u0365\1\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\6\6\1\u0366\10\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\3\6\1\u0367\2\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\6\6\1\u0368\10\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\2\6\1\u021b"+
"\14\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\1\6\1\u0369\1\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\4\6\1\u036a\1\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\1\u036b\5\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\4\6\1\u01fa\1\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\5\6\1\u036c\1\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\4\6\1\u036d\1\u0276\2\0\6\6\13\0\17\6"+
"\1\5\1\0\5\6\1\u036e\5\6\1\u036f\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\6\1\u0358\4\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\17\6\1\5\1\0\3\6"+
"\1\u0284\10\6\1\0\1\5\7\6\2\0\1\115\1\u0370"+
"\2\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\17\6"+
"\1\5\1\0\3\6\1\u0371\10\6\1\0\1\5\7\6"+
"\2\0\1\115\1\6\1\u0351\1\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\17\6\1\5\1\0\1\u0372\12\6"+
"\1\u036f\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\4\6\1\u01fa\12\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\2\6\1\u0373\3\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\3\6\1\u0374\2\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\2\6\1\u0375\3\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\1\6\1\u0376"+
"\1\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\5\6\1\u0377\1\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\4\6\1\u036d\1\6"+
"\2\0\6\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\1\u01c8\5\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\2\6\1\u0378\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\12\6\1\u0379\4\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\1\u037a\5\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\1\u037b\5\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\1\6\1\u037c\15\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\2\6"+
"\1\u037d\14\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\3\6\1\u037e\2\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\6\6\1\u037f\10\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\1\6\1\u0380\15\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\4\6\1\u0381\1\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\1\6\1\u0382\4\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\6\6\1\u0383\10\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\1\6"+
"\1\u0384\4\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\6\6"+
"\1\u0385\10\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\1\6\1\u02b9\4\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\6\1\u037d\4\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\5\6"+
"\1\u0386\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\1\6\1\u0387\4\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\16\6\1\u021b\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\1\6\1\u0388\15\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\6\6"+
"\1\u0389\10\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\2\6\1\u038a\3\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\6\6\1\u038b\10\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\4\6\1\u036d\1\6"+
"\2\0\6\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\1\6\1\u019d\1\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\5\6\1\u023c\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\5\6\1\u038c\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\2\6\1\u038d\3\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\1\6\1\u038e\1\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\2\6"+
"\1\u038f\14\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\3\6\1\u0390\2\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\2\6\1\u0391\3\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\2\6\1\u0392\14\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\3\6\1\u01ae\2\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\17\6\1\5\1\0"+
"\10\6\1\u01fa\3\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\5\6\1\u0393\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\3\6\1\u0394"+
"\2\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\1\6\1\u038e\1\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\4\6\1\u0387\12\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\1\6\1\u0395\4\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\3\6\1\u0396"+
"\2\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\5\6\1\u0397\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\5\6\1\u0210\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\6\6\13\0"+
"\12\6\1\u0398\4\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\2\6\1\u0399\3\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\13\6\1\u037d\3\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\4\6\1\u039a\12\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\1\u0335\5\6"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\17\6\1\5\1\0"+
"\12\6\1\u039b\1\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\1\u039c\5\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\5\6\1\u039d"+
"\13\0\17\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\4\6\1\u039e\1\6\13\0\17\6"+
"\1\5\1\0\14\6\1\0\1\5\5\6\1\u039f\1\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\2\6"+
"\1\u03a0\3\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\17\6"+
"\1\5\1\0\5\6\1\u03a1\6\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\6\6\1\u03a2\10\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\2\6\1\u03a3\3\6\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\6\6"+
"\13\0\6\6\1\u03a4\10\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\6\6"+
"\1\u03a5\10\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\6\6\1\u03a6\10\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\1\u03a7\16\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\3\6\1\0\1\6"+
"\1\0\1\5\1\6\3\0\6\6\2\0\1\6\1\u03a2"+
"\4\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\1\6\1\u03a8"+
"\15\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\3\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\5\6\1\u039c\13\0\17\6\1\5\1\0"+
"\14\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\1\6"+
"\1\u03a9\4\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\1\6"+
"\1\u03aa\15\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\6\6\13\0\1\6\1\u03ab\15\6"+
"\1\5\1\0\14\6\1\0\1\5\7\6\2\0\1\115"+
"\3\6\1\0\1\6\1\0\1\5\1\6\3\0\6\6"+
"\2\0\6\6\13\0\17\6\1\5\1\0\10\6\1\u03ac"+
"\3\6\1\0\1\5\7\6\2\0\1\115\3\6\1\0"+
"\1\6\1\0\1\5\1\6\3\0\6\6\2\0\3\6"+
"\1\u03ad\2\6\13\0\17\6\1\5\1\0\14\6\1\0"+
"\1\5\7\6\2\0\1\115\3\6\1\0\1\6\1\0"+
"\1\5\1\6\3\0\6\6\2\0\6\6\13\0\6\6"+
"\1\u0320\10\6\1\5\1\0\14\6\1\0\1\5\7\6"+
"\2\0\1\115\3\6\1\0\1\6\1\0\1\5\1\6"+
"\3\0\6\6\2\0\5\6\1\u0200\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\1\6"+
"\1\u023c\1\6\1\0\1\6\1\0\1\5\1\6\3\0"+
"\6\6\2\0\6\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0\1\5\7\6\2\0\1\115\1\6\1\u01b2\1\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\6\6\13\0\17\6\1\5\1\0\14\6\1\0\1\5"+
"\7\6\2\0\1\115\3\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\2\6\1\u03ae\3\6\13\0"+
"\17\6\1\5\1\0\14\6\1\0\1\5\7\6\2\0"+
"\1\115\1\6\1\u0197\1\6\1\0\1\6\1\0\1\5"+
"\1\6\3\0\6\6\2\0\6\6\13\0\17\6\1\5"+
"\1\0\14\6\1\0\1\5\7\6\2\0\1\115\3\6"+
"\1\0\1\6\1\0\1\5\1\6\3\0\6\6\2\0"+
"\1\6\1\u021b\4\6\13\0\17\6\1\5\1\0\14\6"+
"\1\0";
private static int [] zzUnpackTrans() {
int [] result = new int[70147];
int offset = 0;
offset = zzUnpackTrans(ZZ_TRANS_PACKED_0, offset, result);
return result;
}
private static int zzUnpackTrans(String packed, int offset, int [] result) {
int i = 0; /* index in packed string */
int j = offset; /* index in unpacked array */
int l = packed.length();
while (i < l) {
int count = packed.charAt(i++);
int value = packed.charAt(i++);
value--;
do result[j++] = value; while (--count > 0);
}
return j;
}
/* error codes */
private static final int ZZ_UNKNOWN_ERROR = 0;
private static final int ZZ_NO_MATCH = 1;
private static final int ZZ_PUSHBACK_2BIG = 2;
/* error messages for the codes above */
private static final String ZZ_ERROR_MSG[] = {
"Unkown internal scanner error",
"Error: could not match input",
"Error: pushback value was too large"
};
/**
* ZZ_ATTRIBUTE[aState] contains the attributes of state <code>aState</code>
*/
private static final int [] ZZ_ATTRIBUTE = zzUnpackAttribute();
private static final String ZZ_ATTRIBUTE_PACKED_0 =
"\4\0\6\1\1\11\3\1\1\11\16\1\2\11\3\1"+
"\1\11\26\1\1\11\5\1\1\11\10\1\1\11\22\1"+
"\1\11\1\0\10\1\2\11\21\1\1\0\43\1\2\0"+
"\1\11\4\0\1\11\2\0\1\11\22\0\3\1\1\0"+
"\10\1\1\11\11\1\1\11\76\1\37\0\13\1\1\11"+
"\67\1\2\0\1\1\2\0\1\1\10\0\1\11\17\0"+
"\73\1\35\0\66\1\22\0\61\1\2\0\1\1\6\0"+
"\61\1\11\0\56\1\5\0\53\1\5\0\42\1\2\0"+
"\205\1";
private static int [] zzUnpackAttribute() {
int [] result = new int[942];
int offset = 0;
offset = zzUnpackAttribute(ZZ_ATTRIBUTE_PACKED_0, offset, result);
return result;
}
private static int zzUnpackAttribute(String packed, int offset, int [] result) {
int i = 0; /* index in packed string */
int j = offset; /* index in unpacked array */
int l = packed.length();
while (i < l) {
int count = packed.charAt(i++);
int value = packed.charAt(i++);
do result[j++] = value; while (--count > 0);
}
return j;
}
/** the input device */
private java.io.Reader zzReader;
/** the current state of the DFA */
private int zzState;
/** the current lexical state */
private int zzLexicalState = YYINITIAL;
/** this buffer contains the current text to be matched and is
the source of the yytext() string */
private char zzBuffer[];
/** the textposition at the last accepting state */
private int zzMarkedPos;
/** the textposition at the last state to be included in yytext */
private int zzPushbackPos;
/** the current text position in the buffer */
private int zzCurrentPos;
/** startRead marks the beginning of the yytext() string in the buffer */
private int zzStartRead;
/** endRead marks the last character in the buffer, that has been read
from input */
private int zzEndRead;
/** number of newlines encountered up to the start of the matched text */
private int yyline;
/** the number of characters up to the start of the matched text */
private int yychar;
/**
* the number of characters from the last newline up to the start of the
* matched text
*/
private int yycolumn;
/**
* zzAtBOL == true <=> the scanner is currently at the beginning of a line
*/
private boolean zzAtBOL = true;
/** zzAtEOF == true <=> the scanner is at the EOF */
private boolean zzAtEOF;
/* user code: */
/**
* Constructor. This must be here because JFlex does not generate a
* no-parameter constructor.
*/
public PPTokenMaker() {
}
/**
* Adds the token specified to the current linked list of tokens.
*
* @param tokenType The token's type.
* @see #addToken(int, int, int)
*/
private void addHyperlinkToken(int start, int end, int tokenType) {
int so = start + offsetShift;
addToken(zzBuffer, start,end, tokenType, so, true);
}
/**
* Adds the token specified to the current linked list of tokens.
*
* @param tokenType The token's type.
*/
private void addToken(int tokenType) {
addToken(zzStartRead, zzMarkedPos-1, tokenType);
}
/**
* Adds the token specified to the current linked list of tokens.
*
* @param tokenType The token's type.
* @see #addHyperlinkToken(int, int, int)
*/
private void addToken(int start, int end, int tokenType) {
int so = start + offsetShift;
addToken(zzBuffer, start,end, tokenType, so, false);
}
/**
* Adds the token specified to the current linked list of tokens.
*
* @param array The character array.
* @param start The starting offset in the array.
* @param end The ending offset in the array.
* @param tokenType The token's type.
* @param startOffset The offset in the document at which this token
* occurs.
* @param hyperlink Whether this token is a hyperlink.
*/
@Override
public void addToken(char[] array, int start, int end, int tokenType,
int startOffset, boolean hyperlink) {
super.addToken(array, start,end, tokenType, startOffset, hyperlink);
zzStartRead = zzMarkedPos;
}
/**
* {@inheritDoc}
*/
@Override
public String[] getLineCommentStartAndEnd(int languageIndex) {
return new String[] { "//", null };
}
/**
* Returns the first token in the linked list of tokens generated
* from <code>text</code>. This method must be implemented by
* subclasses so they can correctly implement syntax highlighting.
*
* @param text The text from which to get tokens.
* @param initialTokenType The token type we should start with.
* @param startOffset The offset into the document at which
* <code>text</code> starts.
* @return The first <code>Token</code> in a linked list representing
* the syntax highlighted text.
*/
public Token getTokenList(Segment text, int initialTokenType, int startOffset) {
resetTokenList();
this.offsetShift = -text.offset + startOffset;
// Start off in the proper state.
int state = Token.NULL;
switch (initialTokenType) {
case Token.COMMENT_MULTILINE:
state = MLC;
start = text.offset;
break;
case Token.COMMENT_DOCUMENTATION:
state = DOCCOMMENT;
start = text.offset;
break;
default:
state = Token.NULL;
}
s = text;
try {
yyreset(zzReader);
yybegin(state);
return yylex();
} catch (IOException ioe) {
ioe.printStackTrace();
return new TokenImpl();
}
}
/**
* Refills the input buffer.
*
* @return <code>true</code> if EOF was reached, otherwise
* <code>false</code>.
*/
private boolean zzRefill() {
return zzCurrentPos>=s.offset+s.count;
}
/**
* Resets the scanner to read from a new input stream.
* Does not close the old reader.
*
* All internal variables are reset, the old input stream
* <b>cannot</b> be reused (internal buffer is discarded and lost).
* Lexical state is set to <tt>YY_INITIAL</tt>.
*
* @param reader the new input stream
*/
public final void yyreset(Reader reader) {
// 's' has been updated.
zzBuffer = s.array;
/*
* We replaced the line below with the two below it because zzRefill
* no longer "refills" the buffer (since the way we do it, it's always
* "full" the first time through, since it points to the segment's
* array). So, we assign zzEndRead here.
*/
//zzStartRead = zzEndRead = s.offset;
zzStartRead = s.offset;
zzEndRead = zzStartRead + s.count - 1;
zzCurrentPos = zzMarkedPos = zzPushbackPos = s.offset;
zzLexicalState = YYINITIAL;
zzReader = reader;
zzAtBOL = true;
zzAtEOF = false;
}
/**
* Creates a new scanner
* There is also a java.io.InputStream version of this constructor.
*
* @param in the java.io.Reader to read input from.
*/
public PPTokenMaker(java.io.Reader in) {
this.zzReader = in;
}
/**
* Creates a new scanner.
* There is also java.io.Reader version of this constructor.
*
* @param in the java.io.Inputstream to read input from.
*/
public PPTokenMaker(java.io.InputStream in) {
this(new java.io.InputStreamReader(in));
}
/**
* Unpacks the compressed character translation table.
*
* @param packed the packed character translation table
* @return the unpacked character translation table
*/
private static char [] zzUnpackCMap(String packed) {
char [] map = new char[0x10000];
int i = 0; /* index in packed string */
int j = 0; /* index in unpacked array */
while (i < 188) {
int count = packed.charAt(i++);
char value = packed.charAt(i++);
do map[j++] = value; while (--count > 0);
}
return map;
}
/**
* Closes the input stream.
*/
public final void yyclose() throws java.io.IOException {
zzAtEOF = true; /* indicate end of file */
zzEndRead = zzStartRead; /* invalidate buffer */
if (zzReader != null)
zzReader.close();
}
/**
* Returns the current lexical state.
*/
public final int yystate() {
return zzLexicalState;
}
/**
* Enters a new lexical state
*
* @param newState the new lexical state
*/
public final void yybegin(int newState) {
zzLexicalState = newState;
}
/**
* Returns the text matched by the current regular expression.
*/
public final String yytext() {
return new String( zzBuffer, zzStartRead, zzMarkedPos-zzStartRead );
}
/**
* Returns the character at position <tt>pos</tt> from the
* matched text.
*
* It is equivalent to yytext().charAt(pos), but faster
*
* @param pos the position of the character to fetch.
* A value from 0 to yylength()-1.
*
* @return the character at position pos
*/
public final char yycharat(int pos) {
return zzBuffer[zzStartRead+pos];
}
/**
* Returns the length of the matched text region.
*/
public final int yylength() {
return zzMarkedPos-zzStartRead;
}
/**
* Reports an error that occured while scanning.
*
* In a wellformed scanner (no or only correct usage of
* yypushback(int) and a match-all fallback rule) this method
* will only be called with things that "Can't Possibly Happen".
* If this method is called, something is seriously wrong
* (e.g. a JFlex bug producing a faulty scanner etc.).
*
* Usual syntax/scanner level error handling should be done
* in error fallback rules.
*
* @param errorCode the code of the errormessage to display
*/
private void zzScanError(int errorCode) {
String message;
try {
message = ZZ_ERROR_MSG[errorCode];
}
catch (ArrayIndexOutOfBoundsException e) {
message = ZZ_ERROR_MSG[ZZ_UNKNOWN_ERROR];
}
throw new Error(message);
}
/**
* Pushes the specified amount of characters back into the input stream.
*
* They will be read again by then next call of the scanning method
*
* @param number the number of characters to be read again.
* This number must not be greater than yylength()!
*/
public void yypushback(int number) {
if ( number > yylength() )
zzScanError(ZZ_PUSHBACK_2BIG);
zzMarkedPos -= number;
}
/**
* Resumes scanning until the next regular expression is matched,
* the end of input is encountered or an I/O-Error occurs.
*
* @return the next token
* @exception java.io.IOException if any I/O-Error occurs
*/
public org.fife.ui.rsyntaxtextarea.Token yylex() throws java.io.IOException {
int zzInput;
int zzAction;
// cached fields:
int zzCurrentPosL;
int zzMarkedPosL;
int zzEndReadL = zzEndRead;
char [] zzBufferL = zzBuffer;
char [] zzCMapL = ZZ_CMAP;
int [] zzTransL = ZZ_TRANS;
int [] zzRowMapL = ZZ_ROWMAP;
int [] zzAttrL = ZZ_ATTRIBUTE;
while (true) {
zzMarkedPosL = zzMarkedPos;
zzAction = -1;
zzCurrentPosL = zzCurrentPos = zzStartRead = zzMarkedPosL;
zzState = zzLexicalState;
zzForAction: {
while (true) {
if (zzCurrentPosL < zzEndReadL)
zzInput = zzBufferL[zzCurrentPosL++];
else if (zzAtEOF) {
zzInput = YYEOF;
break zzForAction;
}
else {
// store back cached positions
zzCurrentPos = zzCurrentPosL;
zzMarkedPos = zzMarkedPosL;
boolean eof = zzRefill();
// get translated positions and possibly new buffer
zzCurrentPosL = zzCurrentPos;
zzMarkedPosL = zzMarkedPos;
zzBufferL = zzBuffer;
zzEndReadL = zzEndRead;
if (eof) {
zzInput = YYEOF;
break zzForAction;
}
else {
zzInput = zzBufferL[zzCurrentPosL++];
}
}
int zzNext = zzTransL[ zzRowMapL[zzState] + zzCMapL[zzInput] ];
if (zzNext == -1) break zzForAction;
zzState = zzNext;
int zzAttributes = zzAttrL[zzState];
if ( (zzAttributes & 1) == 1 ) {
zzAction = zzState;
zzMarkedPosL = zzCurrentPosL;
if ( (zzAttributes & 8) == 8 ) break zzForAction;
}
}
}
// store back cached position
zzMarkedPos = zzMarkedPosL;
switch (zzAction < 0 ? zzAction : ZZ_ACTION[zzAction]) {
case 2:
{ addToken(Token.IDENTIFIER);
}
case 38: break;
case 31:
{ addToken(Token.LITERAL_BOOLEAN);
}
case 39: break;
case 13:
{ addToken(start,zzStartRead-1, Token.COMMENT_DOCUMENTATION); return firstToken;
}
case 40: break;
case 18:
{ addToken(Token.ERROR_CHAR);
}
case 41: break;
case 15:
{ addToken(Token.ERROR_NUMBER_FORMAT);
}
case 42: break;
case 4:
{ addToken(Token.ERROR_CHAR); addNullToken(); return firstToken;
}
case 43: break;
case 19:
{ addToken(Token.LITERAL_STRING_DOUBLE_QUOTE);
}
case 44: break;
case 36:
{ addToken(Token.FUNCTION);
}
case 45: break;
case 10:
{ addToken(Token.ANNOTATION);
}
case 46: break;
case 6:
{ addToken(Token.ERROR_STRING_DOUBLE); addNullToken(); return firstToken;
}
case 47: break;
case 1:
{ addToken(Token.ERROR_IDENTIFIER);
}
case 48: break;
case 33:
{ int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_DOCUMENTATION); addHyperlinkToken(temp,zzMarkedPos-1, Token.COMMENT_DOCUMENTATION); start = zzMarkedPos;
}
case 49: break;
case 26:
{ addToken(Token.LITERAL_CHAR);
}
case 50: break;
case 17:
{ addToken(Token.LITERAL_NUMBER_HEXADECIMAL);
}
case 51: break;
case 21:
{ start = zzMarkedPos-2; yybegin(MLC);
}
case 52: break;
case 7:
{ addToken(Token.WHITESPACE);
}
case 53: break;
case 24:
{ yybegin(YYINITIAL); addToken(start,zzStartRead+1, Token.COMMENT_DOCUMENTATION);
}
case 54: break;
case 29:
{ addToken(Token.DATA_TYPE);
}
case 55: break;
case 23:
{ yybegin(YYINITIAL); addToken(start,zzStartRead+1, Token.COMMENT_MULTILINE);
}
case 56: break;
case 3:
{ addToken(Token.LITERAL_NUMBER_DECIMAL_INT);
}
case 57: break;
case 25:
{ int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_DOCUMENTATION); addToken(temp,zzMarkedPos-1, Token.COMMENT_MARKUP); start = zzMarkedPos;
}
case 58: break;
case 28:
{ start = zzMarkedPos-3; yybegin(DOCCOMMENT);
}
case 59: break;
case 34:
{ int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_DOCUMENTATION); addToken(temp,zzMarkedPos-1, Token.COMMENT_KEYWORD); start = zzMarkedPos;
}
case 60: break;
case 22:
{ addToken(Token.RESERVED_WORD);
}
case 61: break;
case 32:
{ int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); addHyperlinkToken(temp,zzMarkedPos-1, Token.COMMENT_MULTILINE); start = zzMarkedPos;
}
case 62: break;
case 37:
{ addToken(Token.RESERVED_WORD_2);
}
case 63: break;
case 14:
{ addToken(start,zzStartRead-1, Token.COMMENT_EOL); addNullToken(); return firstToken;
}
case 64: break;
case 9:
{ addToken(Token.SEPARATOR);
}
case 65: break;
case 5:
{ addNullToken(); return firstToken;
}
case 66: break;
case 12:
{ addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); return firstToken;
}
case 67: break;
case 8:
{ addToken(Token.OPERATOR);
}
case 68: break;
case 16:
{ addToken(Token.LITERAL_NUMBER_FLOAT);
}
case 69: break;
case 35:
{ int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_EOL); addHyperlinkToken(temp,zzMarkedPos-1, Token.COMMENT_EOL); start = zzMarkedPos;
}
case 70: break;
case 20:
{ start = zzMarkedPos-2; yybegin(EOL_COMMENT);
}
case 71: break;
case 30:
{ addToken(Token.COMMENT_MULTILINE);
}
case 72: break;
case 11:
{
}
case 73: break;
case 27:
{ addToken(Token.ERROR_STRING_DOUBLE);
}
case 74: break;
default:
if (zzInput == YYEOF && zzStartRead == zzCurrentPos) {
zzAtEOF = true;
switch (zzLexicalState) {
case EOL_COMMENT: {
addToken(start,zzStartRead-1, Token.COMMENT_EOL); addNullToken(); return firstToken;
}
case 943: break;
case DOCCOMMENT: {
yybegin(YYINITIAL); addToken(start,zzEndRead, Token.COMMENT_DOCUMENTATION); return firstToken;
}
case 944: break;
case YYINITIAL: {
addNullToken(); return firstToken;
}
case 945: break;
case MLC: {
addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); return firstToken;
}
case 946: break;
default:
return null;
}
}
else {
zzScanError(ZZ_NO_MATCH);
}
}
}
}
}
| [
"cendarehor@gmail.com"
] | cendarehor@gmail.com |
371b6d128a8474b1e18dbdccdac0c20827ac48fd | 88f2e364da69689943083896e4b18819cb599740 | /dsdeliver-service/src/main/java/com/pablovicz/dsdeliver/services/ProductService.java | 6924d50baa6070ca1f0764e9f15f994b4f479a5d | [] | no_license | pablovicz/dsdeliver | c6ed7c30265151eea60a810bfeac493ce1cf5d2a | 6a12232da6706407da8cc46818da8453ebb6f52c | refs/heads/main | 2023-02-18T14:55:56.647929 | 2021-01-18T18:51:09 | 2021-01-18T18:51:09 | 328,202,799 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 778 | java | package com.pablovicz.dsdeliver.services;
import java.util.List;
import java.util.stream.Collectors;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.pablovicz.dsdeliver.dto.ProductDTO;
import com.pablovicz.dsdeliver.entities.Product;
import com.pablovicz.dsdeliver.repositories.ProductRepository;
@Service
public class ProductService {
@Autowired
private ProductRepository productRepo;
@Transactional(readOnly = true)
public List<ProductDTO> findAll(){
List<Product> productsList = productRepo.findAllByOrderByNameAsc();
return productsList.stream().map(p -> new ProductDTO(p)).collect(Collectors.toList());
}
}
| [
"pablowoina2205@gmail.com"
] | pablowoina2205@gmail.com |
433ecb9ae7cbfef994a4bf7846635dbf86d8ae30 | 85e989d34307c2667dfb5e135584eee18700ae60 | /order-charge-gateway-notify/src/main/java/com/snowalker/notify/mq/notify/listener/NotifySendListenerImpl.java | 7101c16e3ffcf025f87f54d0fb7dbd14cd61a910 | [
"Apache-2.0"
] | permissive | TaXueWWL/order-charge-notify | 37783634e47147b9c8909d2cd4fad2b07002fb0b | 1533cca61b2145e115e64a3aa728f08b4af97011 | refs/heads/master | 2023-06-21T19:30:53.472976 | 2022-04-10T03:57:56 | 2022-04-10T03:57:56 | 191,669,118 | 61 | 32 | Apache-2.0 | 2023-06-14T22:33:12 | 2019-06-13T01:31:50 | Java | UTF-8 | Java | false | false | 8,061 | java | package com.snowalker.notify.mq.notify.listener;
import com.snowalker.notify.common.constant.NotifyConstant;
import com.snowalker.notify.common.util.DateUtil;
import com.snowalker.notify.common.util.LogExceptionWapper;
import com.snowalker.notify.mq.payment.producer.OrderStatusUpdateProducer;
import com.snowalker.order.charge.message.constant.MessageProtocolConst;
import com.snowalker.order.charge.message.constant.UpdateEventTypeConst;
import com.snowalker.order.charge.message.protocol.OrderResultNofityProtocol;
import com.snowalker.order.charge.message.protocol.OrderStatusUpdateProtocol;
import com.snowalker.order.charge.request.ChargeNotifyRequest;
import org.apache.rocketmq.client.consumer.listener.ConsumeConcurrentlyContext;
import org.apache.rocketmq.client.consumer.listener.ConsumeConcurrentlyStatus;
import org.apache.rocketmq.client.consumer.listener.MessageListenerConcurrently;
import org.apache.rocketmq.client.exception.MQBrokerException;
import org.apache.rocketmq.client.exception.MQClientException;
import org.apache.rocketmq.common.message.Message;
import org.apache.rocketmq.common.message.MessageExt;
import org.apache.rocketmq.remoting.exception.RemotingException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.*;
import org.springframework.stereotype.Component;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.web.client.RestTemplate;
import java.util.Date;
import java.util.List;
/**
* @author snowalker
* @version 1.0
* @date 2019/6/12 14:17
* @className NotifySendListenerImpl
* @desc 通知发送消息回调
*/
@Component(value = "notifySendListenerImpl")
public class NotifySendListenerImpl implements MessageListenerConcurrently {
private static final Logger LOGGER = LoggerFactory.getLogger(NotifySendListenerImpl.class);
@Autowired
RestTemplate restTemplate;
@Autowired
OrderStatusUpdateProducer orderStatusUpdateProducer;
private static final Integer MAX_RECONSUME_TIMES = 5;
@Override
public ConsumeConcurrentlyStatus consumeMessage(List<MessageExt> msgs, ConsumeConcurrentlyContext context) {
try {
for (MessageExt msg : msgs) {
// 消息解码
String message = new String(msg.getBody());
// 消费次数
int reconsumeTimes = msg.getReconsumeTimes();
String msgId = msg.getMsgId();
String logSuffix = ",msgId=" + msgId + ",reconsumeTimes=" + reconsumeTimes;
LOGGER.info("[通知发送消息消费者]-OrderNotifySendProducer-接收到消息,message={},{}", message, logSuffix);
// 请求组装
OrderResultNofityProtocol protocol = new OrderResultNofityProtocol();
protocol.decode(message);
// 参数加签,获取用户privatekey
String privateKey = protocol.getPrivateKey();
String notifyUrl = protocol.getMerchantNotifyUrl();
String purseId = protocol.getPurseId();
ChargeNotifyRequest chargeNotifyRequest = new ChargeNotifyRequest();
chargeNotifyRequest.setChannel_orderid(protocol.getChannelOrderId())
.setFinish_time(DateUtil.formatDate(new Date(System.currentTimeMillis())))
.setOrder_status(NotifyConstant.NOTIFY_SUCCESS)
.setPlat_orderid(protocol.getOrderId())
.setSign(chargeNotifyRequest.sign(privateKey));
LOGGER.info("[通知发送消息消费者]-OrderNotifySendProducer-订单结果通知入参:{},{}", chargeNotifyRequest.toString(), logSuffix);
// 通知发送
return sendNotifyByPost(reconsumeTimes, logSuffix, protocol, notifyUrl, purseId, chargeNotifyRequest);
}
} catch (Exception e) {
LOGGER.error("[通知发送消息消费者]消费异常,e={}", LogExceptionWapper.getStackTrace(e));
}
return ConsumeConcurrentlyStatus.RECONSUME_LATER;
}
/**
* 进行通知POST报文发送
* @param reconsumeTimes
* @param logSuffix
* @param protocol
* @param notifyUrl
* @param purseId
* @param chargeNotifyRequest
* @return
* @throws MQClientException
* @throws RemotingException
* @throws MQBrokerException
* @throws InterruptedException
*/
private ConsumeConcurrentlyStatus sendNotifyByPost(int reconsumeTimes, String logSuffix, OrderResultNofityProtocol protocol, String notifyUrl, String purseId, ChargeNotifyRequest chargeNotifyRequest) throws MQClientException, RemotingException, MQBrokerException, InterruptedException {
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED);
// 封装参数,千万不要替换为Map与HashMap,否则参数无法传递
MultiValueMap<String, String> params= new LinkedMultiValueMap<String, String>();
params.add("order_status", chargeNotifyRequest.getOrder_status());
params.add("channel_orderid", chargeNotifyRequest.getChannel_orderid());
params.add("plat_orderid", chargeNotifyRequest.getPlat_orderid());
params.add("finish_time", chargeNotifyRequest.getFinish_time());
params.add("sign", chargeNotifyRequest.getSign());
HttpEntity<MultiValueMap<String, String>> requestEntity = new HttpEntity<MultiValueMap<String, String>>(params, headers);
ResponseEntity<String> notifyResponse = restTemplate.exchange(
notifyUrl, HttpMethod.POST, requestEntity, String.class);
// 返回参校验
if (notifyResponse == null) {
LOGGER.error("[通知发送消息消费者]-OrderNotifySendProducer-当前商户通知返回为空,等待下次通知.purseId={},{}", purseId, logSuffix);
return ConsumeConcurrentlyStatus.RECONSUME_LATER;
}
if (reconsumeTimes > MAX_RECONSUME_TIMES) {
// TODO 入冲发表
LOGGER.info("[通知发送消息消费者]-OrderNotifySendProducer-当前商户通知次数大于5次,不再通知,purseId={},{}", purseId, logSuffix);
return ConsumeConcurrentlyStatus.CONSUME_SUCCESS;
}
// 解析返回参
String notifyBody = notifyResponse.getBody();
LOGGER.info("[通知发送消息消费者]-OrderNotifySendProducer-订单结果通知出参:[{}],{}", notifyBody, logSuffix);
if (!NotifyConstant.NOTIFY_RETURN_SUCC.equals(notifyBody)) {
LOGGER.info("[通知发送消息消费者]-OrderNotifySendProducer-订单结果通知[失败],等待下次通知.purseId={},{}", purseId, logSuffix);
return ConsumeConcurrentlyStatus.RECONSUME_LATER;
}
// 通知成功,发送订单状态更新消息,事件=EVENT_UPDATE_NOTIFY_OD_STATUS
OrderStatusUpdateProtocol orderStatusUpdateProtocol = new OrderStatusUpdateProtocol();
orderStatusUpdateProtocol.setTopicName(MessageProtocolConst.ORDER_STATUS_UPDATE_TOPIC.getTopic());
orderStatusUpdateProtocol.setOrderId(protocol.getOrderId())
.setChargeMoney(protocol.getChargeMoney())
.setPurseId(protocol.getPurseId())
.setMerchantName(protocol.getMerchantName())
.setEventType(UpdateEventTypeConst.EVENT_UPDATE_NOTIFY_OD_STATUS.getEventType());
Message updateOrderStatusMsg =
new Message(MessageProtocolConst.ORDER_STATUS_UPDATE_TOPIC.getTopic(),
orderStatusUpdateProtocol.encode().getBytes());
orderStatusUpdateProducer.getProducer().send(updateOrderStatusMsg);
LOGGER.info("[通知发送消息消费者]-OrderNotifySendProducer-发送通知状态更新消息结束,purseId={},{}", purseId, logSuffix);
return ConsumeConcurrentlyStatus.CONSUME_SUCCESS;
}
}
| [
"1210812591@qq.com"
] | 1210812591@qq.com |
e0999e9294214a089a7aee2b1a3cfed16ca5a2bb | c462185c68cf1805b5398e3d7b55415cd1a63447 | /src/main/java/com/labuladong/tree/CountNodes_2.java | bdc5ae3d24fba7919f6bfc618ca3b82398196bb9 | [] | no_license | yamonc/leetcode | f3775410ecc9838c2ac11ddea464a01fa9b7f265 | c7fe10b2011d826d0dd5dd70eb7348bcef0cad9f | refs/heads/master | 2023-07-17T13:38:22.691131 | 2021-08-30T09:57:08 | 2021-08-30T09:57:08 | 300,613,688 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,862 | java | package com.labuladong.tree;
import com.labuladong.preDefine.TreeNode;
/**
* @Author yamon
* @Date 2021-06-28 14:29
* @Description 给你一棵 完全二叉树 的根节点 root ,求出该树的节点个数。
*
* 完全二叉树 的定义如下:在完全二叉树中,除了最底层节点可能没填满外,其余每层节点数都达到最大值,并且最下面一层的节点都集中在该层最左边的若干位置。若最底层为第 h 层,则该层包含 1~ 2h 个节点。
*
*
*
* 示例 1:
*
*
* 输入:root = [1,2,3,4,5,6]
* 输出:6
* 示例 2:
*
* 输入:root = []
* 输出:0
* 示例 3:
*
* 输入:root = [1]
* 输出:1
*
* 来源:力扣(LeetCode)
* 链接:https://leetcode-cn.com/problems/count-complete-tree-nodes
* 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
* @Version 1.0
*/
public class CountNodes_2 {
public int countNodes(TreeNode root) {
TreeNode l = root;
TreeNode r = root;
//记录做和右子树的高度
int hl = 0, hr = 0;
while (l!=null){
l= l.left;
hl++;
}
while (r!=null){
r = r.right;
hr++;
}
//如果左右子树的高度相同,则是一颗满二叉树
if (hl == hr){
return (int) Math.pow(2, hl)-1;
}
return 1+countNodes(root.left)+countNodes(root.right);
}
public static void main(String[] args) {
TreeNode ll = new TreeNode(4);
TreeNode lr = new TreeNode(5);
TreeNode rl = new TreeNode(6);
TreeNode l = new TreeNode(2,ll,lr);
TreeNode r = new TreeNode(3,null,rl);
TreeNode root = new TreeNode(1,l,r);
System.out.println(new CountNodes_2().countNodes(root));
}
}
| [
"lovechen1996428@qq.com"
] | lovechen1996428@qq.com |
59b49d3f4c47ef03b6ad42579c6c8a9076e21064 | 995f73d30450a6dce6bc7145d89344b4ad6e0622 | /MATE-20_EMUI_11.0.0/src/main/java/android/hardware/radio/V1_3/IRadio.java | 9cfa0e7d548e27f21152813f8ba86123de43c8eb | [] | no_license | morningblu/HWFramework | 0ceb02cbe42585d0169d9b6c4964a41b436039f5 | 672bb34094b8780806a10ba9b1d21036fd808b8e | refs/heads/master | 2023-07-29T05:26:14.603817 | 2021-09-03T05:23:34 | 2021-09-03T05:23:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 217,054 | java | package android.hardware.radio.V1_3;
import android.bluetooth.BluetoothHidDevice;
import android.hardware.radio.V1_0.CallForwardInfo;
import android.hardware.radio.V1_0.CarrierRestrictions;
import android.hardware.radio.V1_0.CdmaBroadcastSmsConfigInfo;
import android.hardware.radio.V1_0.CdmaSmsAck;
import android.hardware.radio.V1_0.CdmaSmsMessage;
import android.hardware.radio.V1_0.CdmaSmsWriteArgs;
import android.hardware.radio.V1_0.DataProfileInfo;
import android.hardware.radio.V1_0.Dial;
import android.hardware.radio.V1_0.GsmBroadcastSmsConfigInfo;
import android.hardware.radio.V1_0.GsmSmsMessage;
import android.hardware.radio.V1_0.IRadioIndication;
import android.hardware.radio.V1_0.IRadioResponse;
import android.hardware.radio.V1_0.IccIo;
import android.hardware.radio.V1_0.ImsSmsMessage;
import android.hardware.radio.V1_0.NvWriteItem;
import android.hardware.radio.V1_0.RadioCapability;
import android.hardware.radio.V1_0.SelectUiccSub;
import android.hardware.radio.V1_0.SimApdu;
import android.hardware.radio.V1_0.SmsWriteArgs;
import android.hardware.radio.V1_1.ImsiEncryptionInfo;
import android.hardware.radio.V1_1.KeepaliveRequest;
import android.hardware.radio.V1_1.NetworkScanRequest;
import android.hardware.radio.V1_1.RadioAccessSpecifier;
import android.internal.hidl.base.V1_0.DebugInfo;
import android.internal.hidl.base.V1_0.IBase;
import android.net.wifi.WifiScanner;
import android.os.HidlSupport;
import android.os.HwBinder;
import android.os.HwBlob;
import android.os.HwParcel;
import android.os.IHwBinder;
import android.os.IHwInterface;
import android.os.NativeHandle;
import android.os.RemoteException;
import com.android.internal.midi.MidiConstants;
import com.android.internal.telephony.GsmAlphabet;
import com.android.internal.telephony.PhoneConstants;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator;
import java.util.Objects;
public interface IRadio extends android.hardware.radio.V1_2.IRadio {
public static final String kInterfaceName = "android.hardware.radio@1.3::IRadio";
@Override // android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase, android.os.IHwInterface
IHwBinder asBinder();
@Override // android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
void debug(NativeHandle nativeHandle, ArrayList<String> arrayList) throws RemoteException;
void enableModem(int i, boolean z) throws RemoteException;
@Override // android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
DebugInfo getDebugInfo() throws RemoteException;
@Override // android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
ArrayList<byte[]> getHashChain() throws RemoteException;
void getModemStackStatus(int i) throws RemoteException;
@Override // android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
ArrayList<String> interfaceChain() throws RemoteException;
@Override // android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
String interfaceDescriptor() throws RemoteException;
@Override // android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
boolean linkToDeath(IHwBinder.DeathRecipient deathRecipient, long j) throws RemoteException;
@Override // android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
void notifySyspropsChanged() throws RemoteException;
@Override // android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
void ping() throws RemoteException;
@Override // android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
void setHALInstrumentation() throws RemoteException;
void setSystemSelectionChannels(int i, boolean z, ArrayList<RadioAccessSpecifier> arrayList) throws RemoteException;
@Override // android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
boolean unlinkToDeath(IHwBinder.DeathRecipient deathRecipient) throws RemoteException;
static IRadio asInterface(IHwBinder binder) {
if (binder == null) {
return null;
}
IHwInterface iface = binder.queryLocalInterface(kInterfaceName);
if (iface != null && (iface instanceof IRadio)) {
return (IRadio) iface;
}
IRadio proxy = new Proxy(binder);
try {
Iterator<String> it = proxy.interfaceChain().iterator();
while (it.hasNext()) {
if (it.next().equals(kInterfaceName)) {
return proxy;
}
}
} catch (RemoteException e) {
}
return null;
}
static IRadio castFrom(IHwInterface iface) {
if (iface == null) {
return null;
}
return asInterface(iface.asBinder());
}
static IRadio getService(String serviceName, boolean retry) throws RemoteException {
return asInterface(HwBinder.getService(kInterfaceName, serviceName, retry));
}
static IRadio getService(boolean retry) throws RemoteException {
return getService(PhoneConstants.APN_TYPE_DEFAULT, retry);
}
static IRadio getService(String serviceName) throws RemoteException {
return asInterface(HwBinder.getService(kInterfaceName, serviceName));
}
static IRadio getService() throws RemoteException {
return getService(PhoneConstants.APN_TYPE_DEFAULT);
}
public static final class Proxy implements IRadio {
private IHwBinder mRemote;
public Proxy(IHwBinder remote) {
this.mRemote = (IHwBinder) Objects.requireNonNull(remote);
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase, android.os.IHwInterface
public IHwBinder asBinder() {
return this.mRemote;
}
public String toString() {
try {
return interfaceDescriptor() + "@Proxy";
} catch (RemoteException e) {
return "[class or subclass of android.hardware.radio@1.3::IRadio]@Proxy";
}
}
public final boolean equals(Object other) {
return HidlSupport.interfacesEqual(this, other);
}
public final int hashCode() {
return asBinder().hashCode();
}
@Override // android.hardware.radio.V1_0.IRadio
public void setResponseFunctions(IRadioResponse radioResponse, IRadioIndication radioIndication) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
IHwBinder iHwBinder = null;
_hidl_request.writeStrongBinder(radioResponse == null ? null : radioResponse.asBinder());
if (radioIndication != null) {
iHwBinder = radioIndication.asBinder();
}
_hidl_request.writeStrongBinder(iHwBinder);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(1, _hidl_request, _hidl_reply, 0);
_hidl_reply.verifySuccess();
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getIccCardStatus(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(2, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void supplyIccPinForApp(int serial, String pin, String aid) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(pin);
_hidl_request.writeString(aid);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(3, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void supplyIccPukForApp(int serial, String puk, String pin, String aid) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(puk);
_hidl_request.writeString(pin);
_hidl_request.writeString(aid);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(4, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void supplyIccPin2ForApp(int serial, String pin2, String aid) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(pin2);
_hidl_request.writeString(aid);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(5, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void supplyIccPuk2ForApp(int serial, String puk2, String pin2, String aid) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(puk2);
_hidl_request.writeString(pin2);
_hidl_request.writeString(aid);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(6, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void changeIccPinForApp(int serial, String oldPin, String newPin, String aid) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(oldPin);
_hidl_request.writeString(newPin);
_hidl_request.writeString(aid);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(7, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void changeIccPin2ForApp(int serial, String oldPin2, String newPin2, String aid) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(oldPin2);
_hidl_request.writeString(newPin2);
_hidl_request.writeString(aid);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(8, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void supplyNetworkDepersonalization(int serial, String netPin) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(netPin);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(9, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getCurrentCalls(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(10, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void dial(int serial, Dial dialInfo) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
dialInfo.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(11, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getImsiForApp(int serial, String aid) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(aid);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(12, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void hangup(int serial, int gsmIndex) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(gsmIndex);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(13, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void hangupWaitingOrBackground(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(14, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void hangupForegroundResumeBackground(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(15, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void switchWaitingOrHoldingAndActive(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(16, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void conference(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(17, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void rejectCall(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(18, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getLastCallFailCause(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(19, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getSignalStrength(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(20, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getVoiceRegistrationState(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(21, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getDataRegistrationState(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(22, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getOperator(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(23, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setRadioPower(int serial, boolean on) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeBool(on);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(24, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void sendDtmf(int serial, String s) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(s);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(25, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void sendSms(int serial, GsmSmsMessage message) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
message.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(26, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void sendSMSExpectMore(int serial, GsmSmsMessage message) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
message.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(27, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setupDataCall(int serial, int radioTechnology, DataProfileInfo dataProfileInfo, boolean modemCognitive, boolean roamingAllowed, boolean isRoaming) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(radioTechnology);
dataProfileInfo.writeToParcel(_hidl_request);
_hidl_request.writeBool(modemCognitive);
_hidl_request.writeBool(roamingAllowed);
_hidl_request.writeBool(isRoaming);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(28, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void iccIOForApp(int serial, IccIo iccIo) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
iccIo.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(29, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void sendUssd(int serial, String ussd) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(ussd);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(30, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void cancelPendingUssd(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(31, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getClir(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(32, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setClir(int serial, int status) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(status);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(33, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getCallForwardStatus(int serial, CallForwardInfo callInfo) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
callInfo.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(34, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setCallForward(int serial, CallForwardInfo callInfo) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
callInfo.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(35, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getCallWaiting(int serial, int serviceClass) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(serviceClass);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(36, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setCallWaiting(int serial, boolean enable, int serviceClass) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeBool(enable);
_hidl_request.writeInt32(serviceClass);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(37, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void acknowledgeLastIncomingGsmSms(int serial, boolean success, int cause) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeBool(success);
_hidl_request.writeInt32(cause);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(38, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void acceptCall(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(39, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void deactivateDataCall(int serial, int cid, boolean reasonRadioShutDown) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(cid);
_hidl_request.writeBool(reasonRadioShutDown);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(40, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getFacilityLockForApp(int serial, String facility, String password, int serviceClass, String appId) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(facility);
_hidl_request.writeString(password);
_hidl_request.writeInt32(serviceClass);
_hidl_request.writeString(appId);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(41, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setFacilityLockForApp(int serial, String facility, boolean lockState, String password, int serviceClass, String appId) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(facility);
_hidl_request.writeBool(lockState);
_hidl_request.writeString(password);
_hidl_request.writeInt32(serviceClass);
_hidl_request.writeString(appId);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(42, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setBarringPassword(int serial, String facility, String oldPassword, String newPassword) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(facility);
_hidl_request.writeString(oldPassword);
_hidl_request.writeString(newPassword);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(43, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getNetworkSelectionMode(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(44, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setNetworkSelectionModeAutomatic(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(45, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setNetworkSelectionModeManual(int serial, String operatorNumeric) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(operatorNumeric);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(46, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getAvailableNetworks(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(47, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void startDtmf(int serial, String s) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(s);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(48, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void stopDtmf(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(49, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getBasebandVersion(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(50, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void separateConnection(int serial, int gsmIndex) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(gsmIndex);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(51, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setMute(int serial, boolean enable) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeBool(enable);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(52, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getMute(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(53, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getClip(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(54, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getDataCallList(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(55, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setSuppServiceNotifications(int serial, boolean enable) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeBool(enable);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(56, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void writeSmsToSim(int serial, SmsWriteArgs smsWriteArgs) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
smsWriteArgs.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(57, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void deleteSmsOnSim(int serial, int index) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(index);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(58, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setBandMode(int serial, int mode) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(mode);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(59, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getAvailableBandModes(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(60, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void sendEnvelope(int serial, String command) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(command);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(61, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void sendTerminalResponseToSim(int serial, String commandResponse) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(commandResponse);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(62, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void handleStkCallSetupRequestFromSim(int serial, boolean accept) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeBool(accept);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(63, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void explicitCallTransfer(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(64, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setPreferredNetworkType(int serial, int nwType) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(nwType);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(65, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getPreferredNetworkType(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(66, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getNeighboringCids(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(67, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setLocationUpdates(int serial, boolean enable) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeBool(enable);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(68, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setCdmaSubscriptionSource(int serial, int cdmaSub) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(cdmaSub);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(69, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setCdmaRoamingPreference(int serial, int type) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(type);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(70, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getCdmaRoamingPreference(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(71, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setTTYMode(int serial, int mode) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(mode);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(72, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getTTYMode(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(73, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setPreferredVoicePrivacy(int serial, boolean enable) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeBool(enable);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(74, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getPreferredVoicePrivacy(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(75, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void sendCDMAFeatureCode(int serial, String featureCode) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(featureCode);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(76, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void sendBurstDtmf(int serial, String dtmf, int on, int off) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(dtmf);
_hidl_request.writeInt32(on);
_hidl_request.writeInt32(off);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(77, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void sendCdmaSms(int serial, CdmaSmsMessage sms) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
sms.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(78, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void acknowledgeLastIncomingCdmaSms(int serial, CdmaSmsAck smsAck) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
smsAck.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(79, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getGsmBroadcastConfig(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(80, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setGsmBroadcastConfig(int serial, ArrayList<GsmBroadcastSmsConfigInfo> configInfo) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
GsmBroadcastSmsConfigInfo.writeVectorToParcel(_hidl_request, configInfo);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(81, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setGsmBroadcastActivation(int serial, boolean activate) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeBool(activate);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(82, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getCdmaBroadcastConfig(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(83, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setCdmaBroadcastConfig(int serial, ArrayList<CdmaBroadcastSmsConfigInfo> configInfo) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
CdmaBroadcastSmsConfigInfo.writeVectorToParcel(_hidl_request, configInfo);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(84, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setCdmaBroadcastActivation(int serial, boolean activate) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeBool(activate);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(85, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getCDMASubscription(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(86, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void writeSmsToRuim(int serial, CdmaSmsWriteArgs cdmaSms) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
cdmaSms.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(87, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void deleteSmsOnRuim(int serial, int index) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(index);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(88, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getDeviceIdentity(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(89, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void exitEmergencyCallbackMode(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(90, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getSmscAddress(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(91, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setSmscAddress(int serial, String smsc) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(smsc);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(92, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void reportSmsMemoryStatus(int serial, boolean available) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeBool(available);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(93, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void reportStkServiceIsRunning(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(94, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getCdmaSubscriptionSource(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(95, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void requestIsimAuthentication(int serial, String challenge) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(challenge);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(96, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void acknowledgeIncomingGsmSmsWithPdu(int serial, boolean success, String ackPdu) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeBool(success);
_hidl_request.writeString(ackPdu);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(97, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void sendEnvelopeWithStatus(int serial, String contents) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(contents);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(98, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getVoiceRadioTechnology(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(99, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getCellInfoList(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(100, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setCellInfoListRate(int serial, int rate) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(rate);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(101, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setInitialAttachApn(int serial, DataProfileInfo dataProfileInfo, boolean modemCognitive, boolean isRoaming) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
dataProfileInfo.writeToParcel(_hidl_request);
_hidl_request.writeBool(modemCognitive);
_hidl_request.writeBool(isRoaming);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(102, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getImsRegistrationState(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(103, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void sendImsSms(int serial, ImsSmsMessage message) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
message.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(104, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void iccTransmitApduBasicChannel(int serial, SimApdu message) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
message.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(105, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void iccOpenLogicalChannel(int serial, String aid, int p2) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeString(aid);
_hidl_request.writeInt32(p2);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(106, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void iccCloseLogicalChannel(int serial, int channelId) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(channelId);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(107, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void iccTransmitApduLogicalChannel(int serial, SimApdu message) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
message.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(108, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void nvReadItem(int serial, int itemId) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(itemId);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(109, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void nvWriteItem(int serial, NvWriteItem item) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
item.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(110, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void nvWriteCdmaPrl(int serial, ArrayList<Byte> prl) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt8Vector(prl);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(111, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void nvResetConfig(int serial, int resetType) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(resetType);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(112, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setUiccSubscription(int serial, SelectUiccSub uiccSub) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
uiccSub.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(113, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setDataAllowed(int serial, boolean allow) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeBool(allow);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(114, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getHardwareConfig(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(115, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void requestIccSimAuthentication(int serial, int authContext, String authData, String aid) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(authContext);
_hidl_request.writeString(authData);
_hidl_request.writeString(aid);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(116, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setDataProfile(int serial, ArrayList<DataProfileInfo> profiles, boolean isRoaming) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
DataProfileInfo.writeVectorToParcel(_hidl_request, profiles);
_hidl_request.writeBool(isRoaming);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(117, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void requestShutdown(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(118, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getRadioCapability(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(119, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setRadioCapability(int serial, RadioCapability rc) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
rc.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(120, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void startLceService(int serial, int reportInterval, boolean pullMode) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(reportInterval);
_hidl_request.writeBool(pullMode);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(121, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void stopLceService(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(122, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void pullLceData(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(123, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getModemActivityInfo(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(124, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setAllowedCarriers(int serial, boolean allAllowed, CarrierRestrictions carriers) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeBool(allAllowed);
carriers.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(125, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void getAllowedCarriers(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(126, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void sendDeviceState(int serial, int deviceStateType, boolean state) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(deviceStateType);
_hidl_request.writeBool(state);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(127, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setIndicationFilter(int serial, int indicationFilter) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(indicationFilter);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(128, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void setSimCardPower(int serial, boolean powerUp) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeBool(powerUp);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(129, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_0.IRadio
public void responseAcknowledgement() throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_0.IRadio.kInterfaceName);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(130, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_1.IRadio
public void setCarrierInfoForImsiEncryption(int serial, ImsiEncryptionInfo imsiEncryptionInfo) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_1.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
imsiEncryptionInfo.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(131, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_1.IRadio
public void setSimCardPower_1_1(int serial, int powerUp) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_1.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(powerUp);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(132, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_1.IRadio
public void startNetworkScan(int serial, NetworkScanRequest request) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_1.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
request.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(133, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_1.IRadio
public void stopNetworkScan(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_1.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(134, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_1.IRadio
public void startKeepalive(int serial, KeepaliveRequest keepalive) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_1.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
keepalive.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(135, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_1.IRadio
public void stopKeepalive(int serial, int sessionHandle) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_1.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(sessionHandle);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(136, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_2.IRadio
public void startNetworkScan_1_2(int serial, android.hardware.radio.V1_2.NetworkScanRequest request) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_2.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
request.writeToParcel(_hidl_request);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(137, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_2.IRadio
public void setIndicationFilter_1_2(int serial, int indicationFilter) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_2.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(indicationFilter);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(138, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_2.IRadio
public void setSignalStrengthReportingCriteria(int serial, int hysteresisMs, int hysteresisDb, ArrayList<Integer> thresholdsDbm, int accessNetwork) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_2.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(hysteresisMs);
_hidl_request.writeInt32(hysteresisDb);
_hidl_request.writeInt32Vector(thresholdsDbm);
_hidl_request.writeInt32(accessNetwork);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(139, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_2.IRadio
public void setLinkCapacityReportingCriteria(int serial, int hysteresisMs, int hysteresisDlKbps, int hysteresisUlKbps, ArrayList<Integer> thresholdsDownlinkKbps, ArrayList<Integer> thresholdsUplinkKbps, int accessNetwork) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_2.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(hysteresisMs);
_hidl_request.writeInt32(hysteresisDlKbps);
_hidl_request.writeInt32(hysteresisUlKbps);
_hidl_request.writeInt32Vector(thresholdsDownlinkKbps);
_hidl_request.writeInt32Vector(thresholdsUplinkKbps);
_hidl_request.writeInt32(accessNetwork);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(140, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_2.IRadio
public void setupDataCall_1_2(int serial, int accessNetwork, DataProfileInfo dataProfileInfo, boolean modemCognitive, boolean roamingAllowed, boolean isRoaming, int reason, ArrayList<String> addresses, ArrayList<String> dnses) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_2.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(accessNetwork);
dataProfileInfo.writeToParcel(_hidl_request);
_hidl_request.writeBool(modemCognitive);
_hidl_request.writeBool(roamingAllowed);
_hidl_request.writeBool(isRoaming);
_hidl_request.writeInt32(reason);
_hidl_request.writeStringVector(addresses);
_hidl_request.writeStringVector(dnses);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(141, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_2.IRadio
public void deactivateDataCall_1_2(int serial, int cid, int reason) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(android.hardware.radio.V1_2.IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeInt32(cid);
_hidl_request.writeInt32(reason);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(142, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_3.IRadio
public void setSystemSelectionChannels(int serial, boolean specifyChannels, ArrayList<RadioAccessSpecifier> specifiers) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeBool(specifyChannels);
RadioAccessSpecifier.writeVectorToParcel(_hidl_request, specifiers);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(143, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_3.IRadio
public void enableModem(int serial, boolean on) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
_hidl_request.writeBool(on);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(144, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_3.IRadio
public void getModemStackStatus(int serial) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(IRadio.kInterfaceName);
_hidl_request.writeInt32(serial);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(145, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
public ArrayList<String> interfaceChain() throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(IBase.kInterfaceName);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(256067662, _hidl_request, _hidl_reply, 0);
_hidl_reply.verifySuccess();
_hidl_request.releaseTemporaryStorage();
return _hidl_reply.readStringVector();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
public void debug(NativeHandle fd, ArrayList<String> options) throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(IBase.kInterfaceName);
_hidl_request.writeNativeHandle(fd);
_hidl_request.writeStringVector(options);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(256131655, _hidl_request, _hidl_reply, 0);
_hidl_reply.verifySuccess();
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
public String interfaceDescriptor() throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(IBase.kInterfaceName);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(256136003, _hidl_request, _hidl_reply, 0);
_hidl_reply.verifySuccess();
_hidl_request.releaseTemporaryStorage();
return _hidl_reply.readString();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
public ArrayList<byte[]> getHashChain() throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(IBase.kInterfaceName);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(256398152, _hidl_request, _hidl_reply, 0);
_hidl_reply.verifySuccess();
_hidl_request.releaseTemporaryStorage();
ArrayList<byte[]> _hidl_out_hashchain = new ArrayList<>();
HwBlob _hidl_blob = _hidl_reply.readBuffer(16);
int _hidl_vec_size = _hidl_blob.getInt32(8);
HwBlob childBlob = _hidl_reply.readEmbeddedBuffer((long) (_hidl_vec_size * 32), _hidl_blob.handle(), 0, true);
_hidl_out_hashchain.clear();
for (int _hidl_index_0 = 0; _hidl_index_0 < _hidl_vec_size; _hidl_index_0++) {
byte[] _hidl_vec_element = new byte[32];
childBlob.copyToInt8Array((long) (_hidl_index_0 * 32), _hidl_vec_element, 32);
_hidl_out_hashchain.add(_hidl_vec_element);
}
return _hidl_out_hashchain;
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
public void setHALInstrumentation() throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(IBase.kInterfaceName);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(256462420, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
public boolean linkToDeath(IHwBinder.DeathRecipient recipient, long cookie) throws RemoteException {
return this.mRemote.linkToDeath(recipient, cookie);
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
public void ping() throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(IBase.kInterfaceName);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(256921159, _hidl_request, _hidl_reply, 0);
_hidl_reply.verifySuccess();
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
public DebugInfo getDebugInfo() throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(IBase.kInterfaceName);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(257049926, _hidl_request, _hidl_reply, 0);
_hidl_reply.verifySuccess();
_hidl_request.releaseTemporaryStorage();
DebugInfo _hidl_out_info = new DebugInfo();
_hidl_out_info.readFromParcel(_hidl_reply);
return _hidl_out_info;
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
public void notifySyspropsChanged() throws RemoteException {
HwParcel _hidl_request = new HwParcel();
_hidl_request.writeInterfaceToken(IBase.kInterfaceName);
HwParcel _hidl_reply = new HwParcel();
try {
this.mRemote.transact(257120595, _hidl_request, _hidl_reply, 1);
_hidl_request.releaseTemporaryStorage();
} finally {
_hidl_reply.release();
}
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
public boolean unlinkToDeath(IHwBinder.DeathRecipient recipient) throws RemoteException {
return this.mRemote.unlinkToDeath(recipient);
}
}
public static abstract class Stub extends HwBinder implements IRadio {
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase, android.os.IHwInterface
public IHwBinder asBinder() {
return this;
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
public final ArrayList<String> interfaceChain() {
return new ArrayList<>(Arrays.asList(IRadio.kInterfaceName, android.hardware.radio.V1_2.IRadio.kInterfaceName, android.hardware.radio.V1_1.IRadio.kInterfaceName, android.hardware.radio.V1_0.IRadio.kInterfaceName, IBase.kInterfaceName));
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
public void debug(NativeHandle fd, ArrayList<String> arrayList) {
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
public final String interfaceDescriptor() {
return IRadio.kInterfaceName;
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
public final ArrayList<byte[]> getHashChain() {
return new ArrayList<>(Arrays.asList(new byte[]{-95, -58, MidiConstants.STATUS_CONTROL_CHANGE, 118, GsmAlphabet.GSM_EXTENDED_ESCAPE, -53, -119, -42, -65, 21, -95, 86, -7, 48, 107, Byte.MIN_VALUE, MidiConstants.STATUS_NOTE_ON, -77, -87, 22, -95, 95, -22, 22, -119, -76, MidiConstants.STATUS_CONTROL_CHANGE, -63, 115, -114, 56, 47}, new byte[]{29, 25, 114, 13, 79, -45, -117, WifiScanner.PnoSettings.PnoNetwork.FLAG_SAME_NETWORK, -107, -16, -11, 85, -92, -67, -110, -77, -79, 44, -101, 29, MidiConstants.STATUS_CHANNEL_MASK, 86, 11, BluetoothHidDevice.ERROR_RSP_UNKNOWN, -102, 71, 76, -42, -36, -62, 13, -74}, new byte[]{-9, -98, -33, 80, -93, 120, -87, -55, -69, 115, Byte.MAX_VALUE, -109, MidiConstants.STATUS_SONG_POSITION, 5, -38, -71, GsmAlphabet.GSM_EXTENDED_ESCAPE, 76, 99, -22, 73, 114, 58, -4, 111, -123, 108, 19, -126, 3, -22, -127}, new byte[]{-101, 90, -92, -103, -20, 59, 66, 38, MidiConstants.STATUS_MIDI_TIME_CODE, 95, 72, -11, -19, 8, -119, 110, 47, -64, 103, 111, -105, -116, -98, 25, -100, 29, -94, 29, -86, -16, 2, -90}, new byte[]{-20, Byte.MAX_VALUE, -41, -98, MidiConstants.STATUS_CHANNEL_PRESSURE, 45, -6, -123, -68, 73, -108, 38, -83, -82, 62, -66, 35, -17, 5, 36, MidiConstants.STATUS_SONG_SELECT, -51, 105, 87, 19, -109, 36, -72, 59, 24, -54, 76}));
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
public final void setHALInstrumentation() {
}
@Override // android.os.IHwBinder, android.hardware.cas.V1_0.ICas, android.internal.hidl.base.V1_0.IBase
public final boolean linkToDeath(IHwBinder.DeathRecipient recipient, long cookie) {
return true;
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
public final void ping() {
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
public final DebugInfo getDebugInfo() {
DebugInfo info = new DebugInfo();
info.pid = HidlSupport.getPidIfSharable();
info.ptr = 0;
info.arch = 0;
return info;
}
@Override // android.hardware.radio.V1_3.IRadio, android.hardware.radio.V1_2.IRadio, android.hardware.radio.V1_1.IRadio, android.hardware.radio.V1_0.IRadio, android.internal.hidl.base.V1_0.IBase
public final void notifySyspropsChanged() {
HwBinder.enableInstrumentation();
}
@Override // android.os.IHwBinder, android.hardware.cas.V1_0.ICas, android.internal.hidl.base.V1_0.IBase
public final boolean unlinkToDeath(IHwBinder.DeathRecipient recipient) {
return true;
}
@Override // android.os.IHwBinder
public IHwInterface queryLocalInterface(String descriptor) {
if (IRadio.kInterfaceName.equals(descriptor)) {
return this;
}
return null;
}
public void registerAsService(String serviceName) throws RemoteException {
registerService(serviceName);
}
public String toString() {
return interfaceDescriptor() + "@Stub";
}
@Override // android.os.HwBinder
public void onTransact(int _hidl_code, HwParcel _hidl_request, HwParcel _hidl_reply, int _hidl_flags) throws RemoteException {
boolean _hidl_is_oneway = false;
boolean _hidl_is_oneway2 = true;
switch (_hidl_code) {
case 1:
if ((_hidl_flags & 1) == 0) {
_hidl_is_oneway2 = false;
}
if (_hidl_is_oneway2) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setResponseFunctions(IRadioResponse.asInterface(_hidl_request.readStrongBinder()), IRadioIndication.asInterface(_hidl_request.readStrongBinder()));
_hidl_reply.writeStatus(0);
_hidl_reply.send();
return;
case 2:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getIccCardStatus(_hidl_request.readInt32());
return;
case 3:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
supplyIccPinForApp(_hidl_request.readInt32(), _hidl_request.readString(), _hidl_request.readString());
return;
case 4:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
supplyIccPukForApp(_hidl_request.readInt32(), _hidl_request.readString(), _hidl_request.readString(), _hidl_request.readString());
return;
case 5:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
supplyIccPin2ForApp(_hidl_request.readInt32(), _hidl_request.readString(), _hidl_request.readString());
return;
case 6:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
supplyIccPuk2ForApp(_hidl_request.readInt32(), _hidl_request.readString(), _hidl_request.readString(), _hidl_request.readString());
return;
case 7:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
changeIccPinForApp(_hidl_request.readInt32(), _hidl_request.readString(), _hidl_request.readString(), _hidl_request.readString());
return;
case 8:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
changeIccPin2ForApp(_hidl_request.readInt32(), _hidl_request.readString(), _hidl_request.readString(), _hidl_request.readString());
return;
case 9:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
supplyNetworkDepersonalization(_hidl_request.readInt32(), _hidl_request.readString());
return;
case 10:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getCurrentCalls(_hidl_request.readInt32());
return;
case 11:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial = _hidl_request.readInt32();
Dial dialInfo = new Dial();
dialInfo.readFromParcel(_hidl_request);
dial(serial, dialInfo);
return;
case 12:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getImsiForApp(_hidl_request.readInt32(), _hidl_request.readString());
return;
case 13:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
hangup(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 14:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
hangupWaitingOrBackground(_hidl_request.readInt32());
return;
case 15:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
hangupForegroundResumeBackground(_hidl_request.readInt32());
return;
case 16:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
switchWaitingOrHoldingAndActive(_hidl_request.readInt32());
return;
case 17:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
conference(_hidl_request.readInt32());
return;
case 18:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
rejectCall(_hidl_request.readInt32());
return;
case 19:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getLastCallFailCause(_hidl_request.readInt32());
return;
case 20:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getSignalStrength(_hidl_request.readInt32());
return;
case 21:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getVoiceRegistrationState(_hidl_request.readInt32());
return;
case 22:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getDataRegistrationState(_hidl_request.readInt32());
return;
case 23:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getOperator(_hidl_request.readInt32());
return;
case 24:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setRadioPower(_hidl_request.readInt32(), _hidl_request.readBool());
return;
case 25:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
sendDtmf(_hidl_request.readInt32(), _hidl_request.readString());
return;
case 26:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial2 = _hidl_request.readInt32();
GsmSmsMessage message = new GsmSmsMessage();
message.readFromParcel(_hidl_request);
sendSms(serial2, message);
return;
case 27:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial3 = _hidl_request.readInt32();
GsmSmsMessage message2 = new GsmSmsMessage();
message2.readFromParcel(_hidl_request);
sendSMSExpectMore(serial3, message2);
return;
case 28:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial4 = _hidl_request.readInt32();
int radioTechnology = _hidl_request.readInt32();
DataProfileInfo dataProfileInfo = new DataProfileInfo();
dataProfileInfo.readFromParcel(_hidl_request);
setupDataCall(serial4, radioTechnology, dataProfileInfo, _hidl_request.readBool(), _hidl_request.readBool(), _hidl_request.readBool());
return;
case 29:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial5 = _hidl_request.readInt32();
IccIo iccIo = new IccIo();
iccIo.readFromParcel(_hidl_request);
iccIOForApp(serial5, iccIo);
return;
case 30:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
sendUssd(_hidl_request.readInt32(), _hidl_request.readString());
return;
case 31:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
cancelPendingUssd(_hidl_request.readInt32());
return;
case 32:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getClir(_hidl_request.readInt32());
return;
case 33:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setClir(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 34:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial6 = _hidl_request.readInt32();
CallForwardInfo callInfo = new CallForwardInfo();
callInfo.readFromParcel(_hidl_request);
getCallForwardStatus(serial6, callInfo);
return;
case 35:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial7 = _hidl_request.readInt32();
CallForwardInfo callInfo2 = new CallForwardInfo();
callInfo2.readFromParcel(_hidl_request);
setCallForward(serial7, callInfo2);
return;
case 36:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getCallWaiting(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 37:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setCallWaiting(_hidl_request.readInt32(), _hidl_request.readBool(), _hidl_request.readInt32());
return;
case 38:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
acknowledgeLastIncomingGsmSms(_hidl_request.readInt32(), _hidl_request.readBool(), _hidl_request.readInt32());
return;
case 39:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
acceptCall(_hidl_request.readInt32());
return;
case 40:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
deactivateDataCall(_hidl_request.readInt32(), _hidl_request.readInt32(), _hidl_request.readBool());
return;
case 41:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getFacilityLockForApp(_hidl_request.readInt32(), _hidl_request.readString(), _hidl_request.readString(), _hidl_request.readInt32(), _hidl_request.readString());
return;
case 42:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setFacilityLockForApp(_hidl_request.readInt32(), _hidl_request.readString(), _hidl_request.readBool(), _hidl_request.readString(), _hidl_request.readInt32(), _hidl_request.readString());
return;
case 43:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setBarringPassword(_hidl_request.readInt32(), _hidl_request.readString(), _hidl_request.readString(), _hidl_request.readString());
return;
case 44:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getNetworkSelectionMode(_hidl_request.readInt32());
return;
case 45:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setNetworkSelectionModeAutomatic(_hidl_request.readInt32());
return;
case 46:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setNetworkSelectionModeManual(_hidl_request.readInt32(), _hidl_request.readString());
return;
case 47:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getAvailableNetworks(_hidl_request.readInt32());
return;
case 48:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
startDtmf(_hidl_request.readInt32(), _hidl_request.readString());
return;
case 49:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
stopDtmf(_hidl_request.readInt32());
return;
case 50:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getBasebandVersion(_hidl_request.readInt32());
return;
case 51:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
separateConnection(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 52:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setMute(_hidl_request.readInt32(), _hidl_request.readBool());
return;
case 53:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getMute(_hidl_request.readInt32());
return;
case 54:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getClip(_hidl_request.readInt32());
return;
case 55:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getDataCallList(_hidl_request.readInt32());
return;
case 56:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setSuppServiceNotifications(_hidl_request.readInt32(), _hidl_request.readBool());
return;
case 57:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial8 = _hidl_request.readInt32();
SmsWriteArgs smsWriteArgs = new SmsWriteArgs();
smsWriteArgs.readFromParcel(_hidl_request);
writeSmsToSim(serial8, smsWriteArgs);
return;
case 58:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
deleteSmsOnSim(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 59:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setBandMode(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 60:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getAvailableBandModes(_hidl_request.readInt32());
return;
case 61:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
sendEnvelope(_hidl_request.readInt32(), _hidl_request.readString());
return;
case 62:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
sendTerminalResponseToSim(_hidl_request.readInt32(), _hidl_request.readString());
return;
case 63:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
handleStkCallSetupRequestFromSim(_hidl_request.readInt32(), _hidl_request.readBool());
return;
case 64:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
explicitCallTransfer(_hidl_request.readInt32());
return;
case 65:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setPreferredNetworkType(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 66:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getPreferredNetworkType(_hidl_request.readInt32());
return;
case 67:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getNeighboringCids(_hidl_request.readInt32());
return;
case 68:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setLocationUpdates(_hidl_request.readInt32(), _hidl_request.readBool());
return;
case 69:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setCdmaSubscriptionSource(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 70:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setCdmaRoamingPreference(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 71:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getCdmaRoamingPreference(_hidl_request.readInt32());
return;
case 72:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setTTYMode(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 73:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getTTYMode(_hidl_request.readInt32());
return;
case 74:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setPreferredVoicePrivacy(_hidl_request.readInt32(), _hidl_request.readBool());
return;
case 75:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getPreferredVoicePrivacy(_hidl_request.readInt32());
return;
case 76:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
sendCDMAFeatureCode(_hidl_request.readInt32(), _hidl_request.readString());
return;
case 77:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
sendBurstDtmf(_hidl_request.readInt32(), _hidl_request.readString(), _hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 78:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial9 = _hidl_request.readInt32();
CdmaSmsMessage sms = new CdmaSmsMessage();
sms.readFromParcel(_hidl_request);
sendCdmaSms(serial9, sms);
return;
case 79:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial10 = _hidl_request.readInt32();
CdmaSmsAck smsAck = new CdmaSmsAck();
smsAck.readFromParcel(_hidl_request);
acknowledgeLastIncomingCdmaSms(serial10, smsAck);
return;
case 80:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getGsmBroadcastConfig(_hidl_request.readInt32());
return;
case 81:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setGsmBroadcastConfig(_hidl_request.readInt32(), GsmBroadcastSmsConfigInfo.readVectorFromParcel(_hidl_request));
return;
case 82:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setGsmBroadcastActivation(_hidl_request.readInt32(), _hidl_request.readBool());
return;
case 83:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getCdmaBroadcastConfig(_hidl_request.readInt32());
return;
case 84:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setCdmaBroadcastConfig(_hidl_request.readInt32(), CdmaBroadcastSmsConfigInfo.readVectorFromParcel(_hidl_request));
return;
case 85:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setCdmaBroadcastActivation(_hidl_request.readInt32(), _hidl_request.readBool());
return;
case 86:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getCDMASubscription(_hidl_request.readInt32());
return;
case 87:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial11 = _hidl_request.readInt32();
CdmaSmsWriteArgs cdmaSms = new CdmaSmsWriteArgs();
cdmaSms.readFromParcel(_hidl_request);
writeSmsToRuim(serial11, cdmaSms);
return;
case 88:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
deleteSmsOnRuim(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 89:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getDeviceIdentity(_hidl_request.readInt32());
return;
case 90:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
exitEmergencyCallbackMode(_hidl_request.readInt32());
return;
case 91:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getSmscAddress(_hidl_request.readInt32());
return;
case 92:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setSmscAddress(_hidl_request.readInt32(), _hidl_request.readString());
return;
case 93:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
reportSmsMemoryStatus(_hidl_request.readInt32(), _hidl_request.readBool());
return;
case 94:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
reportStkServiceIsRunning(_hidl_request.readInt32());
return;
case 95:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getCdmaSubscriptionSource(_hidl_request.readInt32());
return;
case 96:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
requestIsimAuthentication(_hidl_request.readInt32(), _hidl_request.readString());
return;
case 97:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
acknowledgeIncomingGsmSmsWithPdu(_hidl_request.readInt32(), _hidl_request.readBool(), _hidl_request.readString());
return;
case 98:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
sendEnvelopeWithStatus(_hidl_request.readInt32(), _hidl_request.readString());
return;
case 99:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getVoiceRadioTechnology(_hidl_request.readInt32());
return;
case 100:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getCellInfoList(_hidl_request.readInt32());
return;
case 101:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setCellInfoListRate(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 102:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial12 = _hidl_request.readInt32();
DataProfileInfo dataProfileInfo2 = new DataProfileInfo();
dataProfileInfo2.readFromParcel(_hidl_request);
setInitialAttachApn(serial12, dataProfileInfo2, _hidl_request.readBool(), _hidl_request.readBool());
return;
case 103:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getImsRegistrationState(_hidl_request.readInt32());
return;
case 104:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial13 = _hidl_request.readInt32();
ImsSmsMessage message3 = new ImsSmsMessage();
message3.readFromParcel(_hidl_request);
sendImsSms(serial13, message3);
return;
case 105:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial14 = _hidl_request.readInt32();
SimApdu message4 = new SimApdu();
message4.readFromParcel(_hidl_request);
iccTransmitApduBasicChannel(serial14, message4);
return;
case 106:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
iccOpenLogicalChannel(_hidl_request.readInt32(), _hidl_request.readString(), _hidl_request.readInt32());
return;
case 107:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
iccCloseLogicalChannel(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 108:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial15 = _hidl_request.readInt32();
SimApdu message5 = new SimApdu();
message5.readFromParcel(_hidl_request);
iccTransmitApduLogicalChannel(serial15, message5);
return;
case 109:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
nvReadItem(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 110:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial16 = _hidl_request.readInt32();
NvWriteItem item = new NvWriteItem();
item.readFromParcel(_hidl_request);
nvWriteItem(serial16, item);
return;
case 111:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
nvWriteCdmaPrl(_hidl_request.readInt32(), _hidl_request.readInt8Vector());
return;
case 112:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
nvResetConfig(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 113:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial17 = _hidl_request.readInt32();
SelectUiccSub uiccSub = new SelectUiccSub();
uiccSub.readFromParcel(_hidl_request);
setUiccSubscription(serial17, uiccSub);
return;
case 114:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setDataAllowed(_hidl_request.readInt32(), _hidl_request.readBool());
return;
case 115:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getHardwareConfig(_hidl_request.readInt32());
return;
case 116:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
requestIccSimAuthentication(_hidl_request.readInt32(), _hidl_request.readInt32(), _hidl_request.readString(), _hidl_request.readString());
return;
case 117:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setDataProfile(_hidl_request.readInt32(), DataProfileInfo.readVectorFromParcel(_hidl_request), _hidl_request.readBool());
return;
case 118:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
requestShutdown(_hidl_request.readInt32());
return;
case 119:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getRadioCapability(_hidl_request.readInt32());
return;
case 120:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial18 = _hidl_request.readInt32();
RadioCapability rc = new RadioCapability();
rc.readFromParcel(_hidl_request);
setRadioCapability(serial18, rc);
return;
case 121:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
startLceService(_hidl_request.readInt32(), _hidl_request.readInt32(), _hidl_request.readBool());
return;
case 122:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
stopLceService(_hidl_request.readInt32());
return;
case 123:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
pullLceData(_hidl_request.readInt32());
return;
case 124:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getModemActivityInfo(_hidl_request.readInt32());
return;
case 125:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
int serial19 = _hidl_request.readInt32();
boolean allAllowed = _hidl_request.readBool();
CarrierRestrictions carriers = new CarrierRestrictions();
carriers.readFromParcel(_hidl_request);
setAllowedCarriers(serial19, allAllowed, carriers);
return;
case 126:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
getAllowedCarriers(_hidl_request.readInt32());
return;
case 127:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
sendDeviceState(_hidl_request.readInt32(), _hidl_request.readInt32(), _hidl_request.readBool());
return;
case 128:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setIndicationFilter(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 129:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
setSimCardPower(_hidl_request.readInt32(), _hidl_request.readBool());
return;
case 130:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_0.IRadio.kInterfaceName);
responseAcknowledgement();
return;
case 131:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_1.IRadio.kInterfaceName);
int serial20 = _hidl_request.readInt32();
ImsiEncryptionInfo imsiEncryptionInfo = new ImsiEncryptionInfo();
imsiEncryptionInfo.readFromParcel(_hidl_request);
setCarrierInfoForImsiEncryption(serial20, imsiEncryptionInfo);
return;
case 132:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_1.IRadio.kInterfaceName);
setSimCardPower_1_1(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 133:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_1.IRadio.kInterfaceName);
int serial21 = _hidl_request.readInt32();
NetworkScanRequest request = new NetworkScanRequest();
request.readFromParcel(_hidl_request);
startNetworkScan(serial21, request);
return;
case 134:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_1.IRadio.kInterfaceName);
stopNetworkScan(_hidl_request.readInt32());
return;
case 135:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_1.IRadio.kInterfaceName);
int serial22 = _hidl_request.readInt32();
KeepaliveRequest keepalive = new KeepaliveRequest();
keepalive.readFromParcel(_hidl_request);
startKeepalive(serial22, keepalive);
return;
case 136:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_1.IRadio.kInterfaceName);
stopKeepalive(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 137:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_2.IRadio.kInterfaceName);
int serial23 = _hidl_request.readInt32();
android.hardware.radio.V1_2.NetworkScanRequest request2 = new android.hardware.radio.V1_2.NetworkScanRequest();
request2.readFromParcel(_hidl_request);
startNetworkScan_1_2(serial23, request2);
return;
case 138:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_2.IRadio.kInterfaceName);
setIndicationFilter_1_2(_hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 139:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_2.IRadio.kInterfaceName);
setSignalStrengthReportingCriteria(_hidl_request.readInt32(), _hidl_request.readInt32(), _hidl_request.readInt32(), _hidl_request.readInt32Vector(), _hidl_request.readInt32());
return;
case 140:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_2.IRadio.kInterfaceName);
setLinkCapacityReportingCriteria(_hidl_request.readInt32(), _hidl_request.readInt32(), _hidl_request.readInt32(), _hidl_request.readInt32(), _hidl_request.readInt32Vector(), _hidl_request.readInt32Vector(), _hidl_request.readInt32());
return;
case 141:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_2.IRadio.kInterfaceName);
int serial24 = _hidl_request.readInt32();
int accessNetwork = _hidl_request.readInt32();
DataProfileInfo dataProfileInfo3 = new DataProfileInfo();
dataProfileInfo3.readFromParcel(_hidl_request);
setupDataCall_1_2(serial24, accessNetwork, dataProfileInfo3, _hidl_request.readBool(), _hidl_request.readBool(), _hidl_request.readBool(), _hidl_request.readInt32(), _hidl_request.readStringVector(), _hidl_request.readStringVector());
return;
case 142:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(android.hardware.radio.V1_2.IRadio.kInterfaceName);
deactivateDataCall_1_2(_hidl_request.readInt32(), _hidl_request.readInt32(), _hidl_request.readInt32());
return;
case 143:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(IRadio.kInterfaceName);
setSystemSelectionChannels(_hidl_request.readInt32(), _hidl_request.readBool(), RadioAccessSpecifier.readVectorFromParcel(_hidl_request));
return;
case 144:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(IRadio.kInterfaceName);
enableModem(_hidl_request.readInt32(), _hidl_request.readBool());
return;
case 145:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(IRadio.kInterfaceName);
getModemStackStatus(_hidl_request.readInt32());
return;
default:
switch (_hidl_code) {
case 256067662:
if ((_hidl_flags & 1) == 0) {
_hidl_is_oneway2 = false;
}
if (_hidl_is_oneway2) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(IBase.kInterfaceName);
ArrayList<String> _hidl_out_descriptors = interfaceChain();
_hidl_reply.writeStatus(0);
_hidl_reply.writeStringVector(_hidl_out_descriptors);
_hidl_reply.send();
return;
case 256131655:
if ((_hidl_flags & 1) == 0) {
_hidl_is_oneway2 = false;
}
if (_hidl_is_oneway2) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(IBase.kInterfaceName);
debug(_hidl_request.readNativeHandle(), _hidl_request.readStringVector());
_hidl_reply.writeStatus(0);
_hidl_reply.send();
return;
case 256136003:
if ((_hidl_flags & 1) == 0) {
_hidl_is_oneway2 = false;
}
if (_hidl_is_oneway2) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(IBase.kInterfaceName);
String _hidl_out_descriptor = interfaceDescriptor();
_hidl_reply.writeStatus(0);
_hidl_reply.writeString(_hidl_out_descriptor);
_hidl_reply.send();
return;
case 256398152:
if ((_hidl_flags & 1) == 0) {
_hidl_is_oneway2 = false;
}
if (_hidl_is_oneway2) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(IBase.kInterfaceName);
ArrayList<byte[]> _hidl_out_hashchain = getHashChain();
_hidl_reply.writeStatus(0);
HwBlob _hidl_blob = new HwBlob(16);
int _hidl_vec_size = _hidl_out_hashchain.size();
_hidl_blob.putInt32(8, _hidl_vec_size);
_hidl_blob.putBool(12, false);
HwBlob childBlob = new HwBlob(_hidl_vec_size * 32);
for (int _hidl_index_0 = 0; _hidl_index_0 < _hidl_vec_size; _hidl_index_0++) {
long _hidl_array_offset_1 = (long) (_hidl_index_0 * 32);
byte[] _hidl_array_item_1 = _hidl_out_hashchain.get(_hidl_index_0);
if (_hidl_array_item_1 == null || _hidl_array_item_1.length != 32) {
throw new IllegalArgumentException("Array element is not of the expected length");
}
childBlob.putInt8Array(_hidl_array_offset_1, _hidl_array_item_1);
}
_hidl_blob.putBlob(0, childBlob);
_hidl_reply.writeBuffer(_hidl_blob);
_hidl_reply.send();
return;
case 256462420:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(IBase.kInterfaceName);
setHALInstrumentation();
return;
case 256660548:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
return;
case 256921159:
if ((_hidl_flags & 1) == 0) {
_hidl_is_oneway2 = false;
}
if (_hidl_is_oneway2) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(IBase.kInterfaceName);
ping();
_hidl_reply.writeStatus(0);
_hidl_reply.send();
return;
case 257049926:
if ((_hidl_flags & 1) == 0) {
_hidl_is_oneway2 = false;
}
if (_hidl_is_oneway2) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(IBase.kInterfaceName);
DebugInfo _hidl_out_info = getDebugInfo();
_hidl_reply.writeStatus(0);
_hidl_out_info.writeToParcel(_hidl_reply);
_hidl_reply.send();
return;
case 257120595:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (!_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
_hidl_request.enforceInterface(IBase.kInterfaceName);
notifySyspropsChanged();
return;
case 257250372:
if ((_hidl_flags & 1) != 0) {
_hidl_is_oneway = true;
}
if (_hidl_is_oneway) {
_hidl_reply.writeStatus(Integer.MIN_VALUE);
_hidl_reply.send();
return;
}
return;
default:
return;
}
}
}
}
}
| [
"dstmath@163.com"
] | dstmath@163.com |
a2d0ce9b2d2edc45726ae2bd9e8a366f975d5612 | 76b00b7be11ab2c21eb4a604a9484065a500c52f | /customerLR-service-portlet/docroot/WEB-INF/src/com/pacnet/connect/service/impl/FacilityStaffMappingServiceImpl.java | 3ceb9c9e23f07573f2075251d9d645013a3986ff | [] | no_license | pankajsharmaatcloudsmartz/Pacnet-Connect | 8cf201cbcf6de2deae4407df564784fb42fbf55c | 2bdc4d44f35373aad6c83cd29ce8dc970091b79d | refs/heads/master | 2021-01-23T14:47:10.167327 | 2015-03-10T11:21:56 | 2015-03-10T11:30:53 | 31,952,143 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,684 | java | /**
* Copyright (c) 2000-2012 Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library 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 Lesser General Public License for more
* details.
*/
package com.pacnet.connect.service.impl;
import com.pacnet.connect.service.base.FacilityStaffMappingServiceBaseImpl;
/**
* The implementation of the facility staff mapping remote service.
*
* <p>
* All custom service methods should be put in this class. Whenever methods are added, rerun ServiceBuilder to copy their definitions into the {@link com.pacnet.connect.service.FacilityStaffMappingService} interface.
*
* <p>
* This is a remote service. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.
* </p>
*
* @author CloudSmartz
* @see com.pacnet.connect.service.base.FacilityStaffMappingServiceBaseImpl
* @see com.pacnet.connect.service.FacilityStaffMappingServiceUtil
*/
public class FacilityStaffMappingServiceImpl
extends FacilityStaffMappingServiceBaseImpl {
/*
* NOTE FOR DEVELOPERS:
*
* Never reference this interface directly. Always use {@link com.pacnet.connect.service.FacilityStaffMappingServiceUtil} to access the facility staff mapping remote service.
*/
} | [
"pankshar@IDCPANKSHAR-LT.cloudsmartz.net"
] | pankshar@IDCPANKSHAR-LT.cloudsmartz.net |
abc775f357a7d72bd9a655474c34e4e938c0cfc4 | e61fad192bca233e8f252f931081a67be5a903a4 | /src/main/java/codigobarras/validator/CodigoBarrasValidatorArrayOrganizado.java | be80f4bda5bbe1f1ee985ad25dda058ec8b6c7c9 | [] | no_license | longas123/playground-2021 | 1f9e65ba5500391350acd3f16597b51035054698 | 911f88ff137e6d974c306bd7c8e4aebe33605219 | refs/heads/main | 2023-03-13T06:15:36.475031 | 2021-03-02T01:09:20 | 2021-03-02T01:09:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,275 | java | package codigobarras.validator;
import java.util.Scanner;
/*
- Lançamos um novo tipo de código de barras composto de 22 dígitos
- Os 20 números primeiros números são a numeração definida pelo estabelecimento e os 2 restantes são os dígitos verificadores.
- Os dígitos verificadores são compostos da soma dos 20 primeiros números.
- Caso a soma ultrapasse 99, ou seja, use mais de 2 casas, são consideradas somente as duas últimas casas.
*/
public class CodigoBarrasValidatorArrayOrganizado {
public static void main(String[] args) {
//Inválidos
//2135785552341234567843
//int[] codigoBarras = {2,1,3,5,7,8,5,5,5,2,3,4,1,2,3,4,5,6,7,8,4,3};// Deveria ser 86
//int[] codigoBarras = {4,2,4,2,3,4,2,3,4,2,3,4,2,4,2,3,4,2,3,4,2,3};//Digito 61 - invalido
//int[] codigoBarras = {1,2,7,9,1,9};//Menor tamanho - inválido
//Válidos
//2135785552341234567886
//int[] codigoBarras = {2,1,3,5,7,8,5,5,5,2,3,4,1,2,3,4,5,6,7,8,8,6};
//9889997999899989797970
//int[] codigoBarras = {9,8,8,9,9,9,7,9,9,9,8,9,9,9,8,9,7,9,7,9,7,0};//Digito 170
//Perguntar
int[] codigoBarras = perguntaCodigoDeBarras();
boolean valido = validaCodigoBarras(codigoBarras);
if(valido){
System.out.println("* Código de Barras válido!");
}else{
System.err.println("* Código de Barras inválido!");
}
}
private static int[] perguntaCodigoDeBarras() {
System.out.println("Informe o código de barras:");
char[] entrada = new Scanner(System.in).nextLine().toCharArray();
int[] codigoBarrasNovo = new int[22];
for (int i = 0; i < entrada.length; i++) {
codigoBarrasNovo[ i ] = Character.getNumericValue(entrada[i]);
}
return codigoBarrasNovo;
}
public static boolean validaCodigoBarras(int[] codigoBarras){
if(codigoBarras.length != 22){
System.err.println("* Tamanho deve ser igual a 22!");
return false;
}
int[] digitosExtraidos = extraiDigitoVerificador(codigoBarras);
int[] digitoCalculado = calculaDigitoVerificador(codigoBarras);
return digitoCalculado[0] == digitosExtraidos[0] &&
digitoCalculado[1] == digitosExtraidos[1];
}
public static int[] extraiDigitoVerificador(int[] codigoBarras){
int[] digitos = new int[]{codigoBarras[20], codigoBarras[21]};
System.out.println(" -> Dígito verificador original: " + codigoBarras[20] + codigoBarras[21]);
return digitos;
}
public static int[] calculaDigitoVerificador(int[] codigoBarras){
int soma = 0;
for (int i = 0; i < 20; i++) {
soma += codigoBarras[i];
}
System.out.println(" -> Soma: "+ soma);
//MOD10 - se 1, fica 1. Se 23 fica 3. Se 227 fica 7.
int unidade = soma % 10;
// Divisão/10 para pegar o decimal e o MOD10 é para resolver o > 99
int decimal = (soma/10) % 10;
System.out.println(" -> Digito verificador calculado: "+ decimal + unidade);
//int[] digito = new int[]{ decimal, unidade};
//return digito;
return new int[]{ decimal, unidade};
}
}
| [
"gilberto.lupatini@gmail.com"
] | gilberto.lupatini@gmail.com |
fda25a5e804a92365617de4048e8f5dc0f7b7487 | 7633ea1d83c2bb282d21db995ec8c9d7f0ade9be | /app/src/androidTest/java/text/qiao/com/multistate/ExampleInstrumentedTest.java | bb3891481c595bde83e88095780916053e5c47f5 | [] | no_license | qiaoscong/Multistate | 4db037186b878a11cb496faaec1e9e1be753e809 | e9d6da7ec81965cb658000a32e73636be51c596d | refs/heads/master | 2020-05-04T21:36:15.378183 | 2019-04-11T08:08:23 | 2019-04-11T08:08:23 | 179,482,427 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 732 | java | package text.qiao.com.multistate;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();
assertEquals("text.qiao.com.multistate", appContext.getPackageName());
}
}
| [
"2986584919@qq.com"
] | 2986584919@qq.com |
b27dafb4fd91529f8b81efc30a68e7e8d5f41f25 | 27946456acb2fe726a5b9cf1f7f057e712ebe6d1 | /src/main/java/com/rumaruka/powercraft/api/network/packet/PCPacketWindowItems.java | eaf262f463d85d1e407ef75a32b4330f9ec4ea5e | [] | no_license | Rumaruka/powercraft-newlife | 6d7884d852db8f80d00a03083fb5084db7becc11 | c6e69ef284b001229cda9b1fc22821b3767bff07 | refs/heads/master | 2020-12-05T17:51:47.901389 | 2020-01-10T15:34:17 | 2020-01-10T15:34:17 | 232,196,287 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,876 | java | package com.rumaruka.powercraft.api.network.packet;
import com.rumaruka.powercraft.api.gres.PCGresBaseWithInventory;
import com.rumaruka.powercraft.api.network.PCPacket;
import com.rumaruka.powercraft.api.network.PCPacketServerToClient;
import io.netty.buffer.ByteBuf;
import net.minecraft.client.network.NetHandlerPlayClient;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.network.play.server.SPacketWindowItems;
import net.minecraft.util.NonNullList;
import net.minecraft.world.World;
import java.util.ArrayList;
import java.util.List;
public class PCPacketWindowItems extends PCPacketServerToClient {
private int windowId;
private NonNullList<ItemStack> itemStacks;
public PCPacketWindowItems(){
}
public PCPacketWindowItems(int windowId, NonNullList<ItemStack> itemStacks){
this.windowId = windowId;
this.itemStacks = itemStacks;
}
@Override
protected PCPacket doAndReply(NetHandlerPlayClient playClient, World world, EntityPlayer player) {
PCGresBaseWithInventory.SETTING_OK = true;
playClient.handleWindowItems(new SPacketWindowItems(this.windowId, this.itemStacks));
PCGresBaseWithInventory.SETTING_OK = false;
return null;
}
@Override
protected void fromByteBuffer(ByteBuf buf) {
this.windowId = buf.readInt();
int size = buf.readInt();
this.itemStacks = NonNullList.<ItemStack>withSize(size, ItemStack.EMPTY);
for(int i=0; i<size; i++){
this.itemStacks.add(readItemStackFromBuf(buf));
}
}
@Override
protected void toByteBuffer(ByteBuf buf) {
buf.writeInt(this.windowId);
buf.writeInt(this.itemStacks.size());
for(ItemStack itemStack:this.itemStacks){
writeItemStackToBuf(buf, itemStack);
}
}
}
| [
"rumarukakunnya@gmail.com"
] | rumarukakunnya@gmail.com |
f9a4aca0099904fae586cc7a2b12969b582827e1 | a6166998681a66fd44c4dc71bf504bab37a1282d | /hrmapp/src/com/charles/hrm/controller/DocumentController.java | e155c2e2c2c95c1e4a940304690587c8f174699e | [] | no_license | icloud-art/hrm-app | 899f1cf4138f8f425750721dd77e39b5906f3cb6 | b18e26f0f4e8649615377031f2b19cf20eeb793e | refs/heads/master | 2021-07-24T00:30:52.210725 | 2017-10-30T14:32:34 | 2017-10-30T14:32:34 | 107,246,560 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,467 | java | package com.charles.hrm.controller;
import com.charles.hrm.domain.Document;
import com.charles.hrm.domain.User;
import com.charles.hrm.service.HrmService;
import com.charles.hrm.util.common.HrmConstants;
import com.charles.hrm.util.tag.PageModel;
import com.sun.org.apache.xpath.internal.operations.Mod;
import org.apache.commons.io.FileUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.servlet.ModelAndView;
import sun.jvm.hotspot.debugger.Page;
import javax.print.Doc;
import javax.servlet.http.HttpSession;
import java.io.File;
import java.util.List;
@Controller
public class DocumentController {
@Autowired
@Qualifier("hrmService")
private HrmService hrmService;
@RequestMapping(value = "/document/selectDocument")
public String selectDocument(Model model,
Integer pageIndex,
@ModelAttribute Document document) {
PageModel pageModel = new PageModel();
if (pageIndex != null) {
pageModel.setPageIndex(pageIndex);
}
List<Document> documents = hrmService.findDocument(document,pageModel);
model.addAttribute("documents",documents);
model.addAttribute("pageModel",pageModel);
return "document/document";
}
@RequestMapping(value = "/document/addDocument")
public ModelAndView addDocument(String flag,
@ModelAttribute Document document,
ModelAndView mv,
HttpSession session) throws Exception {
if (flag.equals("1")) {
mv.setViewName("document/showAddDocument");
}else {
String path = session.getServletContext().getRealPath("/upload/");
String fileName = document.getFile().getOriginalFilename();
document.getFile().transferTo(new File(path+File.separator + fileName));
document.setFileName(fileName);
User user = (User) session.getAttribute(HrmConstants.USER_SESSION);
document.setUser(user);
hrmService.addDocument(document);
mv.setViewName("document/selectDocument");
}
return mv;
}
@RequestMapping(value = "/document/removeDocument")
public ModelAndView removeDocument(String ids,ModelAndView mv) {
String[] idArray = ids.split(",");
for (String id : idArray) {
hrmService.removeDocumentById(Integer.parseInt(id));
}
mv.setViewName("redirect:/document/selectDocument");
return mv;
}
@RequestMapping(value = "/document/updateDocument")
public ModelAndView updateDocument(String flag,
@ModelAttribute Document document,
ModelAndView mv) {
if (flag.equals("1")) {
Document target = hrmService.findDocumentById(document.getId());
mv.addObject("document",target);
mv.setViewName("document/showUpdateDocument");
} else {
hrmService.modifyDocument(document);
mv.setViewName("redirect:/document/selectDocument");
}
return mv;
}
@RequestMapping(value = "/document/download")
public ResponseEntity<byte[]> downLoad(Integer id,HttpSession session) throws Exception {
Document target = hrmService.findDocumentById(id);
String fileName = target.getFileName();
String path = session.getServletContext().getRealPath("/upload/");
File file = new File(path+File.separator+fileName);
HttpHeaders headers = new HttpHeaders();
String downloadFileName = new String(fileName.getBytes("UTF-8"),"iso-8859-1");
headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
return new ResponseEntity<byte[]>(FileUtils.readFileToByteArray(file),headers, HttpStatus.CREATED);
}
}
| [
"iosdeveloperleo@163.com"
] | iosdeveloperleo@163.com |
37f1f2cfad4aa32e528d3110bcf5478d6c62f0a1 | d927f865544e66f27933d9504b50500409b44618 | /app/src/main/java/com/lambroszannettos/themindmanifesto/AnalyticsApplication.java | c521766008f731495620427db0539b6c7743f8ef | [] | no_license | jermenkoo/audava_meditation | 4ac64995e343de6257ce28de5f200e1cc83b0554 | 27cf52808eab27f95160d6c3a64e29e379152941 | refs/heads/master | 2020-04-16T05:22:25.975260 | 2016-04-26T11:37:14 | 2016-04-26T11:37:14 | 51,002,048 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,351 | java | /*
* Copyright Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.lambroszannettos.themindmanifesto;
import android.app.Application;
import com.google.android.gms.analytics.GoogleAnalytics;
import com.google.android.gms.analytics.Tracker;
/**
*
* Class responsible for creating a shared Tracker object
* for Google Analytics tracking. It creates an instance
* of the Tracker object and loads the settings automatically.
*
*/
public class AnalyticsApplication extends Application {
private Tracker mTracker;
synchronized public Tracker getDefaultTracker() {
if (mTracker == null) {
GoogleAnalytics analytics = GoogleAnalytics.getInstance(this);
mTracker = analytics.newTracker(R.xml.global_tracker);
}
return mTracker;
}
} | [
"latal.jaromir@gmail.com"
] | latal.jaromir@gmail.com |
33296ed825e44c3ec048b25622a93341d8e702c7 | 9438ff7e661cab6bdb8a773beff8305b1434d11d | /star/src/main/java/learn/process/io/bufferStream/CharBufferedReader.java | aa4f940e511a890d4ed8030aa276902595d63709 | [] | no_license | duducc/star | 0d6f97e723256f07325552f13e0009a519d6e01f | 36c9b8045a71a71f66a3e01f8f9b9464e346dcea | refs/heads/master | 2023-08-16T20:12:35.208273 | 2021-09-27T10:14:07 | 2021-09-27T10:14:07 | 410,830,015 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,994 | java | package javaprocess.io.bufferStream;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
/**
*
* java.io.BufferedReader extends Reader
*
* 继承自父类的成员方法:
* //。。。类似 同字符缓冲输出流
* 构造方法:
* 1.
* 2.
* 同字符缓冲输出流
* 参数:
* 同字符缓冲输出流
* 特有的成员方法:
* String readLine() 读取一个文本行。读取一行数据
* 行的终止符号:怎么认定是一行数据呢? 通过下列字符之一即可认为某行已终止:换行 ('\n')、回车 ('\r') 或回车后直接跟着换行(\r\n)。
* 返回值:包含该行内容的字符串,不包含任何行终止符,如果已到达流末尾,则返回 null
*
*/
public class CharBufferedReader {
public static void main(String[] args) throws IOException {
//1.创建字符缓冲输入流对象,构造方法中传递字符输入流
BufferedReader bw = new BufferedReader(new FileReader("D:\\workspace\\Devlop\\b.txt"));
//2.使用字符缓冲输入流对象中的方法read/readLine读取文本
//read方法不讲 前面已经用过很多次了 和之前使用的方法完全一模一样 重点来说readLine()方法
String line = bw.readLine();
System.out.println(line);
line = bw.readLine();
System.out.println(line);
line = bw.readLine();
System.out.println(line);
line = bw.readLine();
System.out.println(line);
/**
* 发现以上读取是一个重复的过程,所以可以使用循环优化
* 不知道文件中有多少行数据,所以使用while循环
* while的结束条件,读取到null的时候结束
*
*/
String line2;
while ((line2=bw.readLine())!=null){
System.out.println(line2);
}
//3.释放资源
bw.close();
}
}
| [
"2974434075@qq.com"
] | 2974434075@qq.com |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.