View source
<?php
namespace Drupal\system\Tests\Entity;
use Drupal\Component\Utility\Unicode;
use Drupal\entity_test\Entity\EntityTestMulRev;
use Drupal\field\Entity\FieldConfig;
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\language\Entity\ConfigurableLanguage;
use Drupal\taxonomy\Entity\Term;
use Drupal\taxonomy\Entity\Vocabulary;
use Symfony\Component\HttpFoundation\Request;
class EntityQueryTest extends EntityUnitTestBase {
public static $modules = array(
'field_test',
'language',
);
protected $queryResults;
protected $factory;
protected $bundles;
public $greetings;
public $figures;
protected function setUp() {
parent::setUp();
$this
->installEntitySchema('entity_test_mulrev');
$this
->installConfig(array(
'language',
));
$figures = Unicode::strtolower($this
->randomMachineName());
$greetings = Unicode::strtolower($this
->randomMachineName());
foreach (array(
$figures => 'shape',
$greetings => 'text',
) as $field_name => $field_type) {
$field_storage = entity_create('field_storage_config', array(
'field_name' => $field_name,
'entity_type' => 'entity_test_mulrev',
'type' => $field_type,
'cardinality' => 2,
));
$field_storage
->save();
$field_storages[] = $field_storage;
}
$bundles = array();
for ($i = 0; $i < 2; $i++) {
do {
$bundle = $this
->randomMachineName();
} while ($bundles && strtolower($bundles[0]) >= strtolower($bundle));
entity_test_create_bundle($bundle);
foreach ($field_storages as $field_storage) {
entity_create('field_config', array(
'field_storage' => $field_storage,
'bundle' => $bundle,
))
->save();
}
$bundles[] = $bundle;
}
$units[] = array(
$figures,
'en',
array(
'color' => 'red',
'shape' => 'triangle',
),
);
$units[] = array(
$figures,
'en',
array(
'color' => 'blue',
'shape' => 'circle',
),
);
$units[] = array(
$greetings,
'tr',
array(
'value' => 'merhaba',
'format' => 'format-tr',
),
);
$units[] = array(
$greetings,
'pl',
array(
'value' => 'siema',
'format' => 'format-pl',
),
);
ConfigurableLanguage::createFromLangcode('tr')
->save();
ConfigurableLanguage::createFromLangcode('pl')
->save();
for ($i = 1; $i <= 15; $i++) {
$entity = entity_create('entity_test_mulrev', array(
'type' => $bundles[$i & 1],
'name' => $this
->randomMachineName(),
'langcode' => 'en',
));
foreach (array(
'tr',
'pl',
) as $langcode) {
$entity
->addTranslation($langcode)->name = $this
->randomMachineName();
}
foreach (array_reverse(str_split(decbin($i))) as $key => $bit) {
if ($bit) {
list($field_name, $langcode, $values) = $units[$key];
$entity
->getTranslation($langcode)->{$field_name}[] = $values;
}
}
$entity
->save();
}
$this->bundles = $bundles;
$this->figures = $figures;
$this->greetings = $greetings;
$this->factory = \Drupal::service('entity.query');
}
function testEntityQuery() {
$greetings = $this->greetings;
$figures = $this->figures;
$this->queryResults = $this->factory
->get('entity_test_mulrev')
->exists($greetings, 'tr')
->condition("{$figures}.color", 'red')
->sort('id')
->execute();
$this
->assertResult(5, 7, 13, 15);
$query = $this->factory
->get('entity_test_mulrev', 'OR')
->exists($greetings, 'tr')
->condition("{$figures}.color", 'red')
->sort('id');
$count_query = clone $query;
$this
->assertEqual(12, $count_query
->count()
->execute());
$this->queryResults = $query
->execute();
$this
->assertResult(1, 3, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15);
$query = $this->factory
->get('entity_test_mulrev')
->condition("{$figures}.color", 'red')
->sort('id');
$cloned_query = clone $query;
$cloned_query
->condition("{$figures}.shape", 'circle');
$this->queryResults = $query
->execute();
$this
->assertResult(1, 3, 5, 7, 9, 11, 13, 15);
$this->queryResults = $cloned_query
->execute();
$this
->assertResult();
$query = $this->factory
->get('entity_test_mulrev');
$group = $query
->orConditionGroup()
->exists($greetings, 'tr')
->condition("{$figures}.color", 'red');
$this->queryResults = $query
->condition($group)
->condition("{$greetings}.value", 'sie', 'STARTS_WITH')
->sort('revision_id')
->execute();
$this
->assertResult(9, 11, 12, 13, 14, 15);
$this->queryResults = $this->factory
->get('entity_test_mulrev')
->condition("{$figures}.color", 'blue')
->condition("{$figures}.color", 'red')
->sort('id')
->execute();
$this
->assertResult();
$query = $this->factory
->get('entity_test_mulrev');
$group_blue = $query
->andConditionGroup()
->condition("{$figures}.color", 'blue');
$group_red = $query
->andConditionGroup()
->condition("{$figures}.color", 'red');
$this->queryResults = $query
->condition($group_blue)
->condition($group_red)
->sort('revision_id')
->execute();
$this
->assertResult(3, 7, 11, 15);
$query = $this->factory
->get('entity_test_mulrev');
$group_blue = $query
->andConditionGroup()
->condition("{$figures}.color", array(
'blue',
), 'IN');
$group_red = $query
->andConditionGroup()
->condition("{$figures}.color", array(
'red',
), 'IN');
$this->queryResults = $query
->condition($group_blue)
->condition($group_red)
->sort('id')
->execute();
$this
->assertResult(3, 7, 11, 15);
$this->queryResults = $this->factory
->get('entity_test_mulrev')
->condition("{$figures}.color", array(
'blue',
'red',
), 'IN')
->sort('id')
->execute();
$this
->assertResult(1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 14, 15);
$this->queryResults = $this->factory
->get('entity_test_mulrev')
->exists("{$figures}.color")
->notExists("{$greetings}.value")
->sort('id')
->execute();
$this
->assertResult(1, 2, 3);
$ids = $this->factory
->get('entity_test_mulrev')
->condition("{$greetings}.value", 'merhaba')
->sort('id')
->execute();
$entities = entity_load_multiple('entity_test_mulrev', $ids);
$first_entity = reset($entities);
$old_name = $first_entity->name->value;
foreach ($entities as $entity) {
$entity
->setNewRevision();
$entity
->getTranslation('tr')->{$greetings}->value = 'xsiemax';
$entity->name->value .= 'x';
$entity
->save();
}
$this->queryResults = $this->factory
->get('entity_test_mulrev')
->condition('name.value', $old_name)
->execute();
$this
->assertResult();
$this->queryResults = $this->factory
->get('entity_test_mulrev')
->condition('name.value', $old_name)
->allRevisions()
->sort('revision_id')
->execute();
$this
->assertRevisionResult(array(
$first_entity
->id(),
), array(
$first_entity
->id(),
));
$this->queryResults = $this->factory
->get('entity_test_mulrev')
->condition("{$greetings}.value", 'merhaba')
->execute();
$this
->assertResult();
$this->queryResults = $this->factory
->get('entity_test_mulrev')
->condition("{$greetings}.value", 'merhaba')
->allRevisions()
->sort('revision_id')
->execute();
$this
->assertRevisionResult(array(
4,
5,
6,
7,
12,
13,
14,
15,
), array(
4,
5,
6,
7,
12,
13,
14,
15,
));
$results = $this->factory
->get('entity_test_mulrev')
->condition("{$greetings}.value", 'siema', 'CONTAINS')
->sort('id')
->execute();
$assert = array(
16 => '4',
17 => '5',
18 => '6',
19 => '7',
8 => '8',
9 => '9',
10 => '10',
11 => '11',
20 => '12',
21 => '13',
22 => '14',
23 => '15',
);
$this
->assertIdentical($results, $assert);
$results = $this->factory
->get('entity_test_mulrev')
->condition("{$greetings}.value", 'siema', 'STARTS_WITH')
->sort('revision_id')
->execute();
$this
->assertIdentical($results, array_slice($assert, 4, 8, TRUE));
$results = $this->factory
->get('entity_test_mulrev')
->condition("{$greetings}.value", 'a', 'ENDS_WITH')
->sort('revision_id')
->execute();
$this
->assertIdentical($results, array_slice($assert, 4, 8, TRUE));
$results = $this->factory
->get('entity_test_mulrev')
->condition("{$greetings}.value", 'a', 'ENDS_WITH')
->allRevisions()
->sort('id')
->sort('revision_id')
->execute();
$assert = array(
4 => '4',
5 => '5',
6 => '6',
7 => '7',
8 => '8',
9 => '9',
10 => '10',
11 => '11',
12 => '12',
20 => '12',
13 => '13',
21 => '13',
14 => '14',
22 => '14',
15 => '15',
23 => '15',
);
$this
->assertIdentical($results, $assert);
}
function testSort() {
$greetings = $this->greetings;
$figures = $this->figures;
$this->queryResults = $this->factory
->get('entity_test_mulrev')
->sort('id')
->execute();
$this
->assertResult(range(1, 15));
$this->queryResults = $this->factory
->get('entity_test_mulrev')
->sort('id', 'DESC')
->execute();
$this
->assertResult(range(15, 1));
$query = $this->factory
->get('entity_test_mulrev')
->sort("{$figures}.color")
->sort("{$greetings}.format")
->sort('id');
$count_query = clone $query;
$this
->assertEqual(15, $count_query
->count()
->execute());
$this->queryResults = $query
->execute();
$this
->assertResult(8, 12, 4, 2, 3, 10, 11, 14, 15, 6, 7, 1, 9, 13, 5);
$request = Request::createFromGlobals();
$request->query
->replace(array(
'page' => '0,2',
));
\Drupal::getContainer()
->get('request_stack')
->push($request);
$this->queryResults = $this->factory
->get('entity_test_mulrev')
->sort("{$figures}.color")
->sort("{$greetings}.format")
->sort('id')
->pager(4, 1)
->execute();
$this
->assertResult(15, 6, 7, 1);
$query = $this->factory
->get('entity_test_mulrev')
->sort("{$figures}.color", 'DESC')
->sort("{$greetings}.format", 'DESC')
->sort('id', 'DESC');
$count_query = clone $query;
$this
->assertEqual(15, $count_query
->count()
->execute());
$this->queryResults = $query
->execute();
$this
->assertResult(15, 13, 7, 5, 11, 9, 3, 1, 14, 6, 10, 2, 12, 4, 8);
}
public function testTableSort() {
$request = Request::createFromGlobals();
$request->query
->replace(array(
'sort' => 'asc',
'order' => 'Type',
));
\Drupal::getContainer()
->get('request_stack')
->push($request);
$header = array(
'id' => array(
'data' => 'Id',
'specifier' => 'id',
),
'type' => array(
'data' => 'Type',
'specifier' => 'type',
),
);
$this->queryResults = array_values($this->factory
->get('entity_test_mulrev')
->tableSort($header)
->execute());
$this
->assertBundleOrder('asc');
$request->query
->add(array(
'sort' => 'desc',
));
\Drupal::getContainer()
->get('request_stack')
->push($request);
$header = array(
'id' => array(
'data' => 'Id',
'specifier' => 'id',
),
'type' => array(
'data' => 'Type',
'specifier' => 'type',
),
);
$this->queryResults = array_values($this->factory
->get('entity_test_mulrev')
->tableSort($header)
->execute());
$this
->assertBundleOrder('desc');
$request->query
->add(array(
'order' => 'Id',
));
\Drupal::getContainer()
->get('request_stack')
->push($request);
$this->queryResults = $this->factory
->get('entity_test_mulrev')
->tableSort($header)
->execute();
$this
->assertResult(range(15, 1));
}
public function testCount() {
$field_name = $this->figures;
$field_storage = entity_create('field_storage_config', array(
'field_name' => $field_name,
'entity_type' => 'entity_test',
'type' => 'shape',
'cardinality' => 2,
'translatable' => TRUE,
));
$field_storage
->save();
$bundle = $this
->randomMachineName();
entity_create('field_config', array(
'field_storage' => $field_storage,
'bundle' => $bundle,
))
->save();
$entity = entity_create('entity_test', array(
'id' => 1,
'type' => $bundle,
));
$entity
->enforceIsNew();
$entity
->save();
$count = $this->factory
->get('entity_test')
->exists("{$field_name}.color")
->count()
->execute();
$this
->assertFalse($count);
}
public function testNestedConditionGroups() {
$query = $this->factory
->get('entity_test_mulrev');
$first_and = $query
->andConditionGroup()
->condition($this->figures . '.color', 'red')
->condition($this->figures . '.shape', 'triangle');
$second_and = $query
->andConditionGroup()
->condition($this->greetings . '.value', 'merhaba')
->condition($this->greetings . '.format', 'format-tr');
$or = $query
->orConditionGroup()
->condition($first_and)
->condition($second_and);
$this->queryResults = $query
->condition($or)
->condition('type', reset($this->bundles))
->sort('id')
->execute();
$this
->assertResult(6, 14);
}
protected function assertResult() {
$assert = array();
$expected = func_get_args();
if ($expected && is_array($expected[0])) {
$expected = $expected[0];
}
foreach ($expected as $binary) {
$assert[$binary] = strval($binary);
}
$this
->assertIdentical($this->queryResults, $assert);
}
protected function assertRevisionResult($keys, $expected) {
$assert = array();
foreach ($expected as $key => $binary) {
$assert[$keys[$key]] = strval($binary);
}
$this
->assertIdentical($this->queryResults, $assert);
return $assert;
}
protected function assertBundleOrder($order) {
for ($i = 1; $i <= 15; $i += 2) {
$ok = TRUE;
$index1 = array_search($i, $this->queryResults);
$this
->assertNotIdentical($index1, FALSE, "{$i} found at {$index1}.");
for ($j = 2; $j <= 15; $j += 2) {
if ($ok) {
if ($order == 'asc') {
$ok = $index1 > array_search($j, $this->queryResults);
}
else {
$ok = $index1 < array_search($j, $this->queryResults);
}
}
}
$this
->assertTrue($ok, "{$i} is after all entities in bundle2");
}
}
public function testMetaData() {
$query = \Drupal::entityQuery('entity_test_mulrev');
$query
->addTag('efq_metadata_test')
->addMetaData('foo', 'bar')
->execute();
global $efq_test_metadata;
$this
->assertEqual($efq_test_metadata, 'bar', 'Tag and metadata propagated to the SQL query object.');
}
public function testCaseSensitivity() {
$bundle = $this
->randomMachineName();
$field_storage = FieldStorageConfig::create(array(
'field_name' => 'field_ci',
'entity_type' => 'entity_test_mulrev',
'type' => 'string',
'cardinality' => 1,
'translatable' => FALSE,
'settings' => array(
'case_sensitive' => FALSE,
),
));
$field_storage
->save();
FieldConfig::create(array(
'field_storage' => $field_storage,
'bundle' => $bundle,
))
->save();
$field_storage = FieldStorageConfig::create(array(
'field_name' => 'field_cs',
'entity_type' => 'entity_test_mulrev',
'type' => 'string',
'cardinality' => 1,
'translatable' => FALSE,
'settings' => array(
'case_sensitive' => TRUE,
),
));
$field_storage
->save();
FieldConfig::create(array(
'field_storage' => $field_storage,
'bundle' => $bundle,
))
->save();
$fixtures = array();
for ($i = 0; $i < 2; $i++) {
$string = $this
->randomMachineName(7) . 'a';
$fixtures[] = array(
'original' => $string,
'uppercase' => Unicode::strtoupper($string),
'lowercase' => Unicode::strtolower($string),
);
}
EntityTestMulRev::create(array(
'type' => $bundle,
'name' => $this
->randomMachineName(),
'langcode' => 'en',
'field_ci' => $fixtures[0]['uppercase'] . $fixtures[1]['lowercase'],
'field_cs' => $fixtures[0]['uppercase'] . $fixtures[1]['lowercase'],
))
->save();
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_ci', $fixtures[0]['lowercase'] . $fixtures[1]['lowercase'])
->execute();
$this
->assertIdentical(count($result), 1, 'Case insensitive, lowercase');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_ci', $fixtures[0]['uppercase'] . $fixtures[1]['uppercase'])
->execute();
$this
->assertIdentical(count($result), 1, 'Case insensitive, uppercase');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_ci', $fixtures[0]['uppercase'] . $fixtures[1]['lowercase'])
->execute();
$this
->assertIdentical(count($result), 1, 'Case insensitive, mixed.');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_cs', $fixtures[0]['lowercase'] . $fixtures[1]['lowercase'])
->execute();
$this
->assertIdentical(count($result), 0, 'Case sensitive, lowercase.');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_cs', $fixtures[0]['uppercase'] . $fixtures[1]['uppercase'])
->execute();
$this
->assertIdentical(count($result), 0, 'Case sensitive, uppercase.');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_cs', $fixtures[0]['uppercase'] . $fixtures[1]['lowercase'])
->execute();
$this
->assertIdentical(count($result), 1, 'Case sensitive, exact match.');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_ci', array(
$fixtures[0]['lowercase'] . $fixtures[1]['lowercase'],
), 'IN')
->execute();
$this
->assertIdentical(count($result), 1, 'Case insensitive, lowercase');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_ci', array(
$fixtures[0]['uppercase'] . $fixtures[1]['uppercase'],
), 'IN')
->execute();
$this
->assertIdentical(count($result), 1, 'Case insensitive, uppercase');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_ci', array(
$fixtures[0]['uppercase'] . $fixtures[1]['lowercase'],
), 'IN')
->execute();
$this
->assertIdentical(count($result), 1, 'Case insensitive, mixed');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_cs', array(
$fixtures[0]['lowercase'] . $fixtures[1]['lowercase'],
), 'IN')
->execute();
$this
->assertIdentical(count($result), 0, 'Case sensitive, lowercase');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_cs', array(
$fixtures[0]['uppercase'] . $fixtures[1]['uppercase'],
), 'IN')
->execute();
$this
->assertIdentical(count($result), 0, 'Case sensitive, uppercase');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_cs', array(
$fixtures[0]['uppercase'] . $fixtures[1]['lowercase'],
), 'IN')
->execute();
$this
->assertIdentical(count($result), 1, 'Case sensitive, mixed');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_ci', $fixtures[0]['lowercase'], 'STARTS_WITH')
->execute();
$this
->assertIdentical(count($result), 1, 'Case sensitive, lowercase.');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_ci', $fixtures[0]['uppercase'], 'STARTS_WITH')
->execute();
$this
->assertIdentical(count($result), 1, 'Case sensitive, exact match.');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_cs', $fixtures[0]['lowercase'], 'STARTS_WITH')
->execute();
$this
->assertIdentical(count($result), 0, 'Case sensitive, lowercase.');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_cs', $fixtures[0]['uppercase'], 'STARTS_WITH')
->execute();
$this
->assertIdentical(count($result), 1, 'Case sensitive, exact match.');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_ci', $fixtures[1]['lowercase'], 'ENDS_WITH')
->execute();
$this
->assertIdentical(count($result), 1, 'Case sensitive, lowercase.');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_ci', $fixtures[1]['uppercase'], 'ENDS_WITH')
->execute();
$this
->assertIdentical(count($result), 1, 'Case sensitive, exact match.');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_cs', $fixtures[1]['lowercase'], 'ENDS_WITH')
->execute();
$this
->assertIdentical(count($result), 1, 'Case sensitive, lowercase.');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_cs', $fixtures[1]['uppercase'], 'ENDS_WITH')
->execute();
$this
->assertIdentical(count($result), 0, 'Case sensitive, exact match.');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_ci', Unicode::substr($fixtures[0]['uppercase'] . $fixtures[1]['lowercase'], 4, 8), 'CONTAINS')
->execute();
$this
->assertIdentical(count($result), 1, 'Case sensitive, lowercase.');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_ci', Unicode::strtolower(Unicode::substr($fixtures[0]['uppercase'] . $fixtures[1]['lowercase'], 4, 8)), 'CONTAINS')
->execute();
$this
->assertIdentical(count($result), 1, 'Case sensitive, exact match.');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_cs', Unicode::substr($fixtures[0]['uppercase'] . $fixtures[1]['lowercase'], 4, 8), 'CONTAINS')
->execute();
$this
->assertIdentical(count($result), 1, 'Case sensitive, lowercase.');
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('field_cs', Unicode::strtolower(Unicode::substr($fixtures[0]['uppercase'] . $fixtures[1]['lowercase'], 4, 8)), 'CONTAINS')
->execute();
$this
->assertIdentical(count($result), 0, 'Case sensitive, exact match.');
}
public function testBaseFieldMultipleColumns() {
$this
->enableModules([
'taxonomy',
]);
$this
->installEntitySchema('taxonomy_term');
Vocabulary::create([
'vid' => 'tags',
]);
$term1 = Term::create([
'name' => $this
->randomMachineName(),
'vid' => 'tags',
'description' => array(
'value' => $this
->randomString(),
'format' => 'format1',
),
]);
$term1
->save();
$term2 = Term::create([
'name' => $this
->randomMachineName(),
'vid' => 'tags',
'description' => array(
'value' => $this
->randomString(),
'format' => 'format2',
),
]);
$term2
->save();
$ids = \Drupal::entityQuery('taxonomy_term')
->condition('description.format', 'format1')
->execute();
$this
->assertEqual(count($ids), 1);
$this
->assertEqual($term1
->id(), reset($ids));
}
public function testForwardRevisions() {
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('id', [
14,
], 'IN')
->execute();
$this
->assertEqual(count($result), 1);
$entity = EntityTestMulRev::load(14);
$current_values = $entity->{$this->figures}
->getValue();
$entity
->setNewRevision(TRUE);
$entity
->isDefaultRevision(FALSE);
$entity->{$this->figures}
->setValue([
'color' => 'red',
'shape' => 'square',
]);
$entity
->save();
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('id', [
14,
], 'IN')
->execute();
$this
->assertEqual(count($result), 1);
$result = \Drupal::entityQuery('entity_test_mulrev')
->condition('id', [
14,
], 'IN')
->condition("{$this->figures}.color", $current_values[0]['color'])
->execute();
$this
->assertEqual($result, [
14 => '14',
]);
$result = $this->factory
->get('entity_test_mulrev')
->condition('id', [
14,
], 'IN')
->condition("{$this->figures}.color", 'red')
->allRevisions()
->execute();
$this
->assertEqual($result, [
16 => '14',
]);
}
public function testInjectionInCondition() {
try {
$this->queryResults = $this->factory
->get('entity_test_mulrev')
->condition('1 ; -- ', array(
0,
1,
), 'IN')
->sort('id')
->execute();
$this
->fail('SQL Injection attempt in Entity Query condition in operator should result in an exception.');
} catch (\Exception $e) {
$this
->pass('SQL Injection attempt in Entity Query condition in operator should result in an exception.');
}
}
}