123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984 |
- <?php
- abstract class BaseCcShowSchedulePeer {
-
- const DATABASE_NAME = 'airtime';
-
- const TABLE_NAME = 'cc_show_schedule';
-
- const OM_CLASS = 'CcShowSchedule';
-
- const CLASS_DEFAULT = 'airtime.CcShowSchedule';
-
- const TM_CLASS = 'CcShowScheduleTableMap';
-
-
- const NUM_COLUMNS = 4;
-
- const NUM_LAZY_LOAD_COLUMNS = 0;
-
- const ID = 'cc_show_schedule.ID';
-
- const INSTANCE_ID = 'cc_show_schedule.INSTANCE_ID';
-
- const POSITION = 'cc_show_schedule.POSITION';
-
- const GROUP_ID = 'cc_show_schedule.GROUP_ID';
-
- public static $instances = array();
-
- private static $fieldNames = array (
- BasePeer::TYPE_PHPNAME => array ('DbId', 'DbInstanceId', 'DbPosition', 'DbGroupId', ),
- BasePeer::TYPE_STUDLYPHPNAME => array ('dbId', 'dbInstanceId', 'dbPosition', 'dbGroupId', ),
- BasePeer::TYPE_COLNAME => array (self::ID, self::INSTANCE_ID, self::POSITION, self::GROUP_ID, ),
- BasePeer::TYPE_RAW_COLNAME => array ('ID', 'INSTANCE_ID', 'POSITION', 'GROUP_ID', ),
- BasePeer::TYPE_FIELDNAME => array ('id', 'instance_id', 'position', 'group_id', ),
- BasePeer::TYPE_NUM => array (0, 1, 2, 3, )
- );
-
- private static $fieldKeys = array (
- BasePeer::TYPE_PHPNAME => array ('DbId' => 0, 'DbInstanceId' => 1, 'DbPosition' => 2, 'DbGroupId' => 3, ),
- BasePeer::TYPE_STUDLYPHPNAME => array ('dbId' => 0, 'dbInstanceId' => 1, 'dbPosition' => 2, 'dbGroupId' => 3, ),
- BasePeer::TYPE_COLNAME => array (self::ID => 0, self::INSTANCE_ID => 1, self::POSITION => 2, self::GROUP_ID => 3, ),
- BasePeer::TYPE_RAW_COLNAME => array ('ID' => 0, 'INSTANCE_ID' => 1, 'POSITION' => 2, 'GROUP_ID' => 3, ),
- BasePeer::TYPE_FIELDNAME => array ('id' => 0, 'instance_id' => 1, 'position' => 2, 'group_id' => 3, ),
- BasePeer::TYPE_NUM => array (0, 1, 2, 3, )
- );
-
- static public function translateFieldName($name, $fromType, $toType)
- {
- $toNames = self::getFieldNames($toType);
- $key = isset(self::$fieldKeys[$fromType][$name]) ? self::$fieldKeys[$fromType][$name] : null;
- if ($key === null) {
- throw new PropelException("'$name' could not be found in the field names of type '$fromType'. These are: " . print_r(self::$fieldKeys[$fromType], true));
- }
- return $toNames[$key];
- }
-
- static public function getFieldNames($type = BasePeer::TYPE_PHPNAME)
- {
- if (!array_key_exists($type, self::$fieldNames)) {
- throw new PropelException('Method getFieldNames() expects the parameter $type to be one of the class constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME, BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM. ' . $type . ' was given.');
- }
- return self::$fieldNames[$type];
- }
-
- public static function alias($alias, $column)
- {
- return str_replace(CcShowSchedulePeer::TABLE_NAME.'.', $alias.'.', $column);
- }
-
- public static function addSelectColumns(Criteria $criteria, $alias = null)
- {
- if (null === $alias) {
- $criteria->addSelectColumn(CcShowSchedulePeer::ID);
- $criteria->addSelectColumn(CcShowSchedulePeer::INSTANCE_ID);
- $criteria->addSelectColumn(CcShowSchedulePeer::POSITION);
- $criteria->addSelectColumn(CcShowSchedulePeer::GROUP_ID);
- } else {
- $criteria->addSelectColumn($alias . '.ID');
- $criteria->addSelectColumn($alias . '.INSTANCE_ID');
- $criteria->addSelectColumn($alias . '.POSITION');
- $criteria->addSelectColumn($alias . '.GROUP_ID');
- }
- }
-
- public static function doCount(Criteria $criteria, $distinct = false, PropelPDO $con = null)
- {
-
- $criteria = clone $criteria;
-
-
-
- $criteria->setPrimaryTableName(CcShowSchedulePeer::TABLE_NAME);
- if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
- $criteria->setDistinct();
- }
- if (!$criteria->hasSelectClause()) {
- CcShowSchedulePeer::addSelectColumns($criteria);
- }
- $criteria->clearOrderByColumns();
- $criteria->setDbName(self::DATABASE_NAME);
- if ($con === null) {
- $con = Propel::getConnection(CcShowSchedulePeer::DATABASE_NAME, Propel::CONNECTION_READ);
- }
-
- $stmt = BasePeer::doCount($criteria, $con);
- if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
- $count = (int) $row[0];
- } else {
- $count = 0;
- }
- $stmt->closeCursor();
- return $count;
- }
-
- public static function doSelectOne(Criteria $criteria, PropelPDO $con = null)
- {
- $critcopy = clone $criteria;
- $critcopy->setLimit(1);
- $objects = CcShowSchedulePeer::doSelect($critcopy, $con);
- if ($objects) {
- return $objects[0];
- }
- return null;
- }
-
- public static function doSelect(Criteria $criteria, PropelPDO $con = null)
- {
- return CcShowSchedulePeer::populateObjects(CcShowSchedulePeer::doSelectStmt($criteria, $con));
- }
-
- public static function doSelectStmt(Criteria $criteria, PropelPDO $con = null)
- {
- if ($con === null) {
- $con = Propel::getConnection(CcShowSchedulePeer::DATABASE_NAME, Propel::CONNECTION_READ);
- }
- if (!$criteria->hasSelectClause()) {
- $criteria = clone $criteria;
- CcShowSchedulePeer::addSelectColumns($criteria);
- }
-
- $criteria->setDbName(self::DATABASE_NAME);
-
- return BasePeer::doSelect($criteria, $con);
- }
-
- public static function addInstanceToPool(CcShowSchedule $obj, $key = null)
- {
- if (Propel::isInstancePoolingEnabled()) {
- if ($key === null) {
- $key = (string) $obj->getDbId();
- }
- self::$instances[$key] = $obj;
- }
- }
-
- public static function removeInstanceFromPool($value)
- {
- if (Propel::isInstancePoolingEnabled() && $value !== null) {
- if (is_object($value) && $value instanceof CcShowSchedule) {
- $key = (string) $value->getDbId();
- } elseif (is_scalar($value)) {
-
- $key = (string) $value;
- } else {
- $e = new PropelException("Invalid value passed to removeInstanceFromPool(). Expected primary key or CcShowSchedule object; got " . (is_object($value) ? get_class($value) . ' object.' : var_export($value,true)));
- throw $e;
- }
- unset(self::$instances[$key]);
- }
- }
-
- public static function getInstanceFromPool($key)
- {
- if (Propel::isInstancePoolingEnabled()) {
- if (isset(self::$instances[$key])) {
- return self::$instances[$key];
- }
- }
- return null;
- }
-
-
- public static function clearInstancePool()
- {
- self::$instances = array();
- }
-
-
- public static function clearRelatedInstancePool()
- {
- }
-
- public static function getPrimaryKeyHashFromRow($row, $startcol = 0)
- {
-
- if ($row[$startcol] === null) {
- return null;
- }
- return (string) $row[$startcol];
- }
-
- public static function getPrimaryKeyFromRow($row, $startcol = 0)
- {
- return (int) $row[$startcol];
- }
-
-
- public static function populateObjects(PDOStatement $stmt)
- {
- $results = array();
-
-
- $cls = CcShowSchedulePeer::getOMClass(false);
-
- while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
- $key = CcShowSchedulePeer::getPrimaryKeyHashFromRow($row, 0);
- if (null !== ($obj = CcShowSchedulePeer::getInstanceFromPool($key))) {
-
-
-
- $results[] = $obj;
- } else {
- $obj = new $cls();
- $obj->hydrate($row);
- $results[] = $obj;
- CcShowSchedulePeer::addInstanceToPool($obj, $key);
- }
- }
- $stmt->closeCursor();
- return $results;
- }
-
- public static function populateObject($row, $startcol = 0)
- {
- $key = CcShowSchedulePeer::getPrimaryKeyHashFromRow($row, $startcol);
- if (null !== ($obj = CcShowSchedulePeer::getInstanceFromPool($key))) {
-
-
-
- $col = $startcol + CcShowSchedulePeer::NUM_COLUMNS;
- } else {
- $cls = CcShowSchedulePeer::OM_CLASS;
- $obj = new $cls();
- $col = $obj->hydrate($row, $startcol);
- CcShowSchedulePeer::addInstanceToPool($obj, $key);
- }
- return array($obj, $col);
- }
-
- public static function doCountJoinCcShowInstances(Criteria $criteria, $distinct = false, PropelPDO $con = null, $join_behavior = Criteria::LEFT_JOIN)
- {
-
- $criteria = clone $criteria;
-
-
-
- $criteria->setPrimaryTableName(CcShowSchedulePeer::TABLE_NAME);
- if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
- $criteria->setDistinct();
- }
- if (!$criteria->hasSelectClause()) {
- CcShowSchedulePeer::addSelectColumns($criteria);
- }
-
- $criteria->clearOrderByColumns();
-
-
- $criteria->setDbName(self::DATABASE_NAME);
- if ($con === null) {
- $con = Propel::getConnection(CcShowSchedulePeer::DATABASE_NAME, Propel::CONNECTION_READ);
- }
- $criteria->addJoin(CcShowSchedulePeer::INSTANCE_ID, CcShowInstancesPeer::ID, $join_behavior);
- $stmt = BasePeer::doCount($criteria, $con);
- if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
- $count = (int) $row[0];
- } else {
- $count = 0;
- }
- $stmt->closeCursor();
- return $count;
- }
-
- public static function doSelectJoinCcShowInstances(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
- {
- $criteria = clone $criteria;
-
- if ($criteria->getDbName() == Propel::getDefaultDB()) {
- $criteria->setDbName(self::DATABASE_NAME);
- }
- CcShowSchedulePeer::addSelectColumns($criteria);
- $startcol = (CcShowSchedulePeer::NUM_COLUMNS - CcShowSchedulePeer::NUM_LAZY_LOAD_COLUMNS);
- CcShowInstancesPeer::addSelectColumns($criteria);
- $criteria->addJoin(CcShowSchedulePeer::INSTANCE_ID, CcShowInstancesPeer::ID, $join_behavior);
- $stmt = BasePeer::doSelect($criteria, $con);
- $results = array();
- while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
- $key1 = CcShowSchedulePeer::getPrimaryKeyHashFromRow($row, 0);
- if (null !== ($obj1 = CcShowSchedulePeer::getInstanceFromPool($key1))) {
-
-
-
- } else {
- $cls = CcShowSchedulePeer::getOMClass(false);
- $obj1 = new $cls();
- $obj1->hydrate($row);
- CcShowSchedulePeer::addInstanceToPool($obj1, $key1);
- }
- $key2 = CcShowInstancesPeer::getPrimaryKeyHashFromRow($row, $startcol);
- if ($key2 !== null) {
- $obj2 = CcShowInstancesPeer::getInstanceFromPool($key2);
- if (!$obj2) {
- $cls = CcShowInstancesPeer::getOMClass(false);
- $obj2 = new $cls();
- $obj2->hydrate($row, $startcol);
- CcShowInstancesPeer::addInstanceToPool($obj2, $key2);
- }
-
- $obj2->addCcShowSchedule($obj1);
- }
- $results[] = $obj1;
- }
- $stmt->closeCursor();
- return $results;
- }
-
- public static function doCountJoinAll(Criteria $criteria, $distinct = false, PropelPDO $con = null, $join_behavior = Criteria::LEFT_JOIN)
- {
-
- $criteria = clone $criteria;
-
-
-
- $criteria->setPrimaryTableName(CcShowSchedulePeer::TABLE_NAME);
- if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
- $criteria->setDistinct();
- }
- if (!$criteria->hasSelectClause()) {
- CcShowSchedulePeer::addSelectColumns($criteria);
- }
-
- $criteria->clearOrderByColumns();
-
-
- $criteria->setDbName(self::DATABASE_NAME);
- if ($con === null) {
- $con = Propel::getConnection(CcShowSchedulePeer::DATABASE_NAME, Propel::CONNECTION_READ);
- }
- $criteria->addJoin(CcShowSchedulePeer::INSTANCE_ID, CcShowInstancesPeer::ID, $join_behavior);
- $stmt = BasePeer::doCount($criteria, $con);
- if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
- $count = (int) $row[0];
- } else {
- $count = 0;
- }
- $stmt->closeCursor();
- return $count;
- }
-
- public static function doSelectJoinAll(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
- {
- $criteria = clone $criteria;
-
- if ($criteria->getDbName() == Propel::getDefaultDB()) {
- $criteria->setDbName(self::DATABASE_NAME);
- }
- CcShowSchedulePeer::addSelectColumns($criteria);
- $startcol2 = (CcShowSchedulePeer::NUM_COLUMNS - CcShowSchedulePeer::NUM_LAZY_LOAD_COLUMNS);
- CcShowInstancesPeer::addSelectColumns($criteria);
- $startcol3 = $startcol2 + (CcShowInstancesPeer::NUM_COLUMNS - CcShowInstancesPeer::NUM_LAZY_LOAD_COLUMNS);
- $criteria->addJoin(CcShowSchedulePeer::INSTANCE_ID, CcShowInstancesPeer::ID, $join_behavior);
- $stmt = BasePeer::doSelect($criteria, $con);
- $results = array();
- while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
- $key1 = CcShowSchedulePeer::getPrimaryKeyHashFromRow($row, 0);
- if (null !== ($obj1 = CcShowSchedulePeer::getInstanceFromPool($key1))) {
-
-
-
- } else {
- $cls = CcShowSchedulePeer::getOMClass(false);
- $obj1 = new $cls();
- $obj1->hydrate($row);
- CcShowSchedulePeer::addInstanceToPool($obj1, $key1);
- }
-
- $key2 = CcShowInstancesPeer::getPrimaryKeyHashFromRow($row, $startcol2);
- if ($key2 !== null) {
- $obj2 = CcShowInstancesPeer::getInstanceFromPool($key2);
- if (!$obj2) {
- $cls = CcShowInstancesPeer::getOMClass(false);
- $obj2 = new $cls();
- $obj2->hydrate($row, $startcol2);
- CcShowInstancesPeer::addInstanceToPool($obj2, $key2);
- }
-
- $obj2->addCcShowSchedule($obj1);
- }
- $results[] = $obj1;
- }
- $stmt->closeCursor();
- return $results;
- }
-
- public static function getTableMap()
- {
- return Propel::getDatabaseMap(self::DATABASE_NAME)->getTable(self::TABLE_NAME);
- }
-
- public static function buildTableMap()
- {
- $dbMap = Propel::getDatabaseMap(BaseCcShowSchedulePeer::DATABASE_NAME);
- if (!$dbMap->hasTable(BaseCcShowSchedulePeer::TABLE_NAME))
- {
- $dbMap->addTableObject(new CcShowScheduleTableMap());
- }
- }
-
- public static function getOMClass($withPrefix = true)
- {
- return $withPrefix ? CcShowSchedulePeer::CLASS_DEFAULT : CcShowSchedulePeer::OM_CLASS;
- }
-
- public static function doInsert($values, PropelPDO $con = null)
- {
- if ($con === null) {
- $con = Propel::getConnection(CcShowSchedulePeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
- }
- if ($values instanceof Criteria) {
- $criteria = clone $values;
- } else {
- $criteria = $values->buildCriteria();
- }
- if ($criteria->containsKey(CcShowSchedulePeer::ID) && $criteria->keyContainsValue(CcShowSchedulePeer::ID) ) {
- throw new PropelException('Cannot insert a value for auto-increment primary key ('.CcShowSchedulePeer::ID.')');
- }
-
- $criteria->setDbName(self::DATABASE_NAME);
- try {
-
-
- $con->beginTransaction();
- $pk = BasePeer::doInsert($criteria, $con);
- $con->commit();
- } catch(PropelException $e) {
- $con->rollBack();
- throw $e;
- }
- return $pk;
- }
-
- public static function doUpdate($values, PropelPDO $con = null)
- {
- if ($con === null) {
- $con = Propel::getConnection(CcShowSchedulePeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
- }
- $selectCriteria = new Criteria(self::DATABASE_NAME);
- if ($values instanceof Criteria) {
- $criteria = clone $values;
- $comparison = $criteria->getComparison(CcShowSchedulePeer::ID);
- $value = $criteria->remove(CcShowSchedulePeer::ID);
- if ($value) {
- $selectCriteria->add(CcShowSchedulePeer::ID, $value, $comparison);
- } else {
- $selectCriteria->setPrimaryTableName(CcShowSchedulePeer::TABLE_NAME);
- }
- } else {
- $criteria = $values->buildCriteria();
- $selectCriteria = $values->buildPkeyCriteria();
- }
-
- $criteria->setDbName(self::DATABASE_NAME);
- return BasePeer::doUpdate($selectCriteria, $criteria, $con);
- }
-
- public static function doDeleteAll($con = null)
- {
- if ($con === null) {
- $con = Propel::getConnection(CcShowSchedulePeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
- }
- $affectedRows = 0;
- try {
-
-
- $con->beginTransaction();
- $affectedRows += BasePeer::doDeleteAll(CcShowSchedulePeer::TABLE_NAME, $con, CcShowSchedulePeer::DATABASE_NAME);
-
-
-
- CcShowSchedulePeer::clearInstancePool();
- CcShowSchedulePeer::clearRelatedInstancePool();
- $con->commit();
- return $affectedRows;
- } catch (PropelException $e) {
- $con->rollBack();
- throw $e;
- }
- }
-
- public static function doDelete($values, PropelPDO $con = null)
- {
- if ($con === null) {
- $con = Propel::getConnection(CcShowSchedulePeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
- }
- if ($values instanceof Criteria) {
-
-
-
- CcShowSchedulePeer::clearInstancePool();
-
- $criteria = clone $values;
- } elseif ($values instanceof CcShowSchedule) {
-
- CcShowSchedulePeer::removeInstanceFromPool($values);
-
- $criteria = $values->buildPkeyCriteria();
- } else {
- $criteria = new Criteria(self::DATABASE_NAME);
- $criteria->add(CcShowSchedulePeer::ID, (array) $values, Criteria::IN);
-
- foreach ((array) $values as $singleval) {
- CcShowSchedulePeer::removeInstanceFromPool($singleval);
- }
- }
-
- $criteria->setDbName(self::DATABASE_NAME);
- $affectedRows = 0;
- try {
-
-
- $con->beginTransaction();
-
- $affectedRows += BasePeer::doDelete($criteria, $con);
- CcShowSchedulePeer::clearRelatedInstancePool();
- $con->commit();
- return $affectedRows;
- } catch (PropelException $e) {
- $con->rollBack();
- throw $e;
- }
- }
-
- public static function doValidate(CcShowSchedule $obj, $cols = null)
- {
- $columns = array();
- if ($cols) {
- $dbMap = Propel::getDatabaseMap(CcShowSchedulePeer::DATABASE_NAME);
- $tableMap = $dbMap->getTable(CcShowSchedulePeer::TABLE_NAME);
- if (! is_array($cols)) {
- $cols = array($cols);
- }
- foreach ($cols as $colName) {
- if ($tableMap->containsColumn($colName)) {
- $get = 'get' . $tableMap->getColumn($colName)->getPhpName();
- $columns[$colName] = $obj->$get();
- }
- }
- } else {
- }
- return BasePeer::doValidate(CcShowSchedulePeer::DATABASE_NAME, CcShowSchedulePeer::TABLE_NAME, $columns);
- }
-
- public static function retrieveByPK($pk, PropelPDO $con = null)
- {
- if (null !== ($obj = CcShowSchedulePeer::getInstanceFromPool((string) $pk))) {
- return $obj;
- }
- if ($con === null) {
- $con = Propel::getConnection(CcShowSchedulePeer::DATABASE_NAME, Propel::CONNECTION_READ);
- }
- $criteria = new Criteria(CcShowSchedulePeer::DATABASE_NAME);
- $criteria->add(CcShowSchedulePeer::ID, $pk);
- $v = CcShowSchedulePeer::doSelect($criteria, $con);
- return !empty($v) > 0 ? $v[0] : null;
- }
-
- public static function retrieveByPKs($pks, PropelPDO $con = null)
- {
- if ($con === null) {
- $con = Propel::getConnection(CcShowSchedulePeer::DATABASE_NAME, Propel::CONNECTION_READ);
- }
- $objs = null;
- if (empty($pks)) {
- $objs = array();
- } else {
- $criteria = new Criteria(CcShowSchedulePeer::DATABASE_NAME);
- $criteria->add(CcShowSchedulePeer::ID, $pks, Criteria::IN);
- $objs = CcShowSchedulePeer::doSelect($criteria, $con);
- }
- return $objs;
- }
- }
- BaseCcShowSchedulePeer::buildTableMap();
|